[
  {
    "path": ".gitignore",
    "content": "*.pyc\n*.DS_Store\n*.egg*\n\n/.idea\n/dist/\n/docs/_build/\n"
  },
  {
    "path": "LICENSE",
    "content": ""
  },
  {
    "path": "MANIFEST.in",
    "content": "include README.rst\ninclude LICENSE\nrecursive-include jet_django *\n"
  },
  {
    "path": "README.rst",
    "content": "===================\nJet Bridge (Django)\n===================\n\n**Universal admin panel for Django**\n\n.. image:: https://raw.githubusercontent.com/jet-admin/jet-django/master/static/overview.gif\n    :alt: Preview\n    :align: center\n    :target: https://raw.githubusercontent.com/jet-admin/jet-django/master/static/overview.gif\n\nDescription\n===========\n\n* Jet Admin: https://about.jetadmin.io\n* **Live Demo**: https://app.jetadmin.io/demo\n* Support: support@jetadmin.io\n\n**Jet** is a SaaS service that automatically generates back office for your Django Application through REST API of **Jet Bridge** package installed to your project.\n\n– **Visual**. Admin interface can be easily changed without need of development with the help of Visual Editor. \n\n– **Secure**. Jet does not access your data: its transferred directly from browser to your application.\n\n– **Customizable**. Flex functions allow you to solve your specific business tasks when standard functionality is not enough.\n\nThis is a complete remake of popular `Django Jet <https://github.com/geex-arts/django-jet>`_ admin interface.\n\nFeatures\n========\n\n- **CRUD (create, read, update, delete):**\n  \n  Create, view, update and delete data. Display it in an easy format, and then search and filter your data.\n\n- **Dashboard:** \n\n  Create reports and visualize KPIs. Monitor new data like new orders, comments, etc.\n  \n- **Works with any technology:** \n\n  The interface is generated automatically based on an analysis of the data and data structure of your applications.\n\n- **Visual editor:** \n  \n  Customize the admin area to make it easy for any manager to use. Allow managers to modify the interface, configure features, and set up analytics widgets without using any developers — just like WIX, Squarespace….\n\n- **Secure:** \n\n  Your data is safe. We do not have access to your information. We simply plug your information in to an easy-to-use interface for you to interact with it better.\n\n- **Works on any device:** \n\n  The interface is optimized for any device from phones to tablets to desktops.\n\n- **Quick installation:** \n\n  It takes only a few hours to integrate with your project.\n\n- **Available 24/7:** \n\n  Use it around the clock and don’t worry about updates — we take care of that.\n\n- **Manage users:** \n\n  Assign access rights to any data from within the panel.\n\n- **Activity log:** \n\n  Track the history of all changes and know who made them.\n\nRequirements\n============\n\n- **Python** – 3.4, 3.5, 3.6, 3.7\n- **Django** – 1.11, 2.0, 2.1\n\nInstallation\n============\n\nIn order to install Jet Admin on your project please follow this guide:\n\nhttps://app.jetadmin.io/projects/create\n\n.. note:: \n    If you don't have **Jet** account yet you will be asked to create one and sign in with the existing account.\n    After registering your project you will be redirected to your project and can start working with **Jet**\n\nSupport\n=======\n\nFeel free to Email us – support@jetadmin.io\n\nLicense\n=======\n\nThis project is **MIT** licensed - see the LICENCE file for details.\n"
  },
  {
    "path": "build/lib/jet_django/__init__.py",
    "content": "VERSION = '0.0.1'\ndefault_app_config = 'jet_django.apps.JetDjangoConfig'\n"
  },
  {
    "path": "build/lib/jet_django/admin/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/admin/jet.py",
    "content": "from jet_django.admin.model_description import JetAdminModelDescription\nfrom rest_framework import views\nfrom rest_framework.response import Response\nfrom django.apps import apps\n\nfrom jet_django.permissions import HasProjectPermissions\n\n\nclass JetAdmin(object):\n    models = []\n\n    def models_view(self):\n        Admin = self\n\n        class View(views.APIView):\n            authentication_classes = ()\n            permission_classes = (HasProjectPermissions,)\n\n            def get(self, request, *args, **kwargs):\n                return Response(map(lambda x: x.serialize(), Admin.models))\n\n        return View\n\n    def register(self, Model, fields=None, actions=list(), ordering_field=None, hidden=False):\n        self.models.append(JetAdminModelDescription(Model, fields, actions, ordering_field, hidden))\n\n    def register_related_models(self):\n        def model_key(x):\n            return '{}_{}'.format(\n                x['app_label'],\n                x['model']\n            )\n        registered = set(map(lambda x: model_key(x.get_model()), self.models))\n\n        for models_description in self.models:\n            for item in models_description.get_related_models():\n                key = model_key(item['model_info'])\n\n                if key in registered:\n                    continue\n\n                self.register(item['model'], hidden=True)\n                registered.add(key)\n\njet = JetAdmin()\n\nmodels = apps.get_models()\n\nfor model in models:\n    jet.register(model)\n"
  },
  {
    "path": "build/lib/jet_django/admin/model_action.py",
    "content": "from django import forms\nfrom django.utils.text import camel_case_to_spaces\n\n\nclass JetAdminModelAction(forms.Form):\n    _ids = forms.CharField(label='object ids')\n\n    class Meta:\n        pass\n\n    @classmethod\n    def init_meta(cls):\n        name = camel_case_to_spaces(cls.__name__).replace(' ', '_')\n        verbose_name = getattr(cls.Meta, 'verbose_name', name)\n        cls._meta = cls.Meta\n        cls._meta.name = name\n        cls._meta.verbose_name = verbose_name\n\n    def clean__ids(self):\n        return self.cleaned_data['_ids'].split(',')\n\n    def get_fields(self):\n        fields = self.fields.copy()\n        del fields['_ids']\n        return fields\n\n    def filer_queryset(self, queryset):\n        return queryset.filter(pk__in=self.cleaned_data['_ids'])\n\n    def save(self, queryset):\n        raise NotImplementedError\n"
  },
  {
    "path": "build/lib/jet_django/admin/model_description.py",
    "content": "from django.contrib.contenttypes.models import ContentType\nfrom django.db import models\n\nfrom jet_django.filters.model import model_filter_class_factory\nfrom jet_django.serializers.model import model_serializer_factory\nfrom jet_django.serializers.model_detail import model_detail_serializer_factory\nfrom jet_django.views.model import model_viewset_factory\n\n\nclass JetAdminModelDescription(object):\n    def __init__(self, Model, fields=None, actions=list(), ordering_field=None, hidden=False):\n        self.model = Model\n        self.fields = fields\n        self.hidden = hidden\n\n        for action in actions:\n            action.init_meta()\n\n        self.actions = actions\n        self.ordering_field = ordering_field \\\n            if ordering_field in map(lambda x: x.name, self.get_model_fields()) \\\n            else None\n        self.content_type = ContentType.objects.get_for_model(Model)\n        self.field_names = list(map(lambda x: x.name, self.get_display_model_fields()))\n        self.serializer = model_serializer_factory(Model, self.field_names)\n        self.detail_serializer = model_detail_serializer_factory(Model, self.field_names)\n        self.filter_class = model_filter_class_factory(Model, self.get_display_model_fields())\n        self.queryset = Model.objects.all()\n        self.viewset = model_viewset_factory(\n            Model,\n            self.filter_class,\n            self.serializer,\n            self.detail_serializer,\n            self.queryset,\n            self.actions,\n            self.ordering_field\n        )\n\n    @property\n    def viewset_url(self):\n        return 'models/{}/{}'.format(self.content_type.app_label, self.content_type.model)\n\n    def get_model_fields(self):\n        fields = self.model._meta.get_fields()\n        def filter_fields(x):\n            if any(map(lambda rel: isinstance(x, rel), [\n                models.OneToOneRel,\n                models.OneToOneField,\n                models.ManyToOneRel,\n                models.ManyToManyField,\n                models.ManyToManyRel\n            ])):\n                return False\n            return True\n        return filter(filter_fields, fields)\n\n    def get_model_relations(self):\n        fields = self.model._meta.get_fields(include_hidden=True)\n        def filter_fields(x):\n            if any(map(lambda rel: isinstance(x, rel), [\n                models.OneToOneRel,\n                models.OneToOneField,\n                models.ManyToOneRel,\n                models.ManyToManyField,\n                models.ManyToManyRel\n            ])):\n                return True\n            return False\n        return filter(filter_fields, fields)\n\n    def get_display_model_fields(self):\n        fields = self.get_model_fields()\n        def filter_fields(x):\n            if x.name == self.ordering_field:\n                return True\n            elif self.fields:\n                return x.name in self.fields\n            return True\n        return filter(filter_fields, fields)\n\n    def serialize(self):\n        return {\n            'model': self.content_type.model,\n            'app_label': self.content_type.app_label,\n            'db_table': self.model._meta.db_table,\n            'verbose_name': self.model._meta.verbose_name,\n            'verbose_name_plural': self.model._meta.verbose_name_plural,\n            'hidden': self.hidden,\n            'fields': map(lambda field: {\n                'name': field.name,\n                'verbose_name': field.verbose_name,\n                'is_relation': field.is_relation,\n                'field': field.__class__.__name__,\n                'editable': field.editable,\n                'filterable': field.name in self.filter_class.Meta.fields,\n                'params': {\n                    'related_model': self.serialize_model(field.related_model)\n                }\n            }, self.get_display_model_fields()),\n            'flex_fields': [],\n            'relations': map(lambda field: {\n                'name': field.name,\n                'verbose_name': field.related_model._meta.verbose_name_plural,\n                'related_model': self.serialize_model(field.related_model),\n                'field': field.__class__.__name__,\n                'related_model_field': field.remote_field.name,\n                'through': self.serialize_model(field.through) if isinstance(field, models.ManyToManyRel) else None\n            }, self.get_model_relations()),\n            'actions': map(lambda action: {\n                'name': action._meta.name,\n                'verbose_name': action._meta.verbose_name,\n                'fields': map(lambda field: {\n                    'name': field[0],\n                    'verbose_name': field[1].label or field[0],\n                    'related_model': self.serialize_model(field[1].queryset.model) if hasattr(field[1], 'queryset') else None,\n                    'field': field[1].__class__.__name__\n                }, action.get_fields().items()),\n            }, map(lambda action: action(), self.actions)),\n            'ordering_field': self.ordering_field\n        }\n\n    def get_model(self):\n        return {\n            'model': self.content_type.model,\n            'app_label': self.content_type.app_label,\n        }\n\n    def get_related_models(self):\n        return map(lambda field: {\n            'model': field.related_model,\n            'model_info': self.serialize_model(field.related_model)\n        }, self.get_model_relations())\n\n    def serialize_model(self, Model):\n        if not Model:\n            return\n        content_type = ContentType.objects.get_for_model(Model)\n        return {\n            'model': content_type.model,\n            'app_label': content_type.app_label\n        }\n"
  },
  {
    "path": "build/lib/jet_django/apps.py",
    "content": "from django.apps import AppConfig\n\n\nclass JetDjangoConfig(AppConfig):\n    name = 'jet_django'\n\n    def ready(self):\n        from jet_django.utils.backend import register_token\n\n        try:\n            register_token()\n        except:  # if no migrations yet\n            pass\n"
  },
  {
    "path": "build/lib/jet_django/filters/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/filters/model.py",
    "content": "from functools import reduce\n\nimport django_filters\nfrom django.db.models import Q, fields\nfrom django_filters import filters\nfrom django_filters.constants import EMPTY_VALUES\n\n\ndef model_filter_class_factory(build_model, model_fields):\n    model_fields = list(model_fields)\n\n    def filter_field(field):\n        try:\n            django_filters.FilterSet.filter_for_field(field, field.name)\n            return True\n        except AssertionError:\n            return False\n\n    def search_field(field):\n        return isinstance(field, (fields.CharField, fields.TextField))\n\n    search_fields = list(map(lambda x: x.name, filter(search_field, model_fields)))\n\n    filter_field_names = list(map(lambda x: x.name, filter(filter_field, model_fields)))\n    filter_fields = dict(map(\n        lambda x: [x.name, list(x.get_lookups().keys())],\n        filter(lambda x: x.name in filter_field_names, build_model._meta.fields)\n    ))\n\n    class SearchFilter(django_filters.CharFilter):\n\n        def filter(self, qs, value):\n            if value in EMPTY_VALUES:\n                return qs\n\n            query = reduce(lambda q, field: q | Q(**dict([('{}__icontains'.format(field), value)])), search_fields, Q())\n            qs = qs.filter(query)\n\n            return qs\n\n    class FilterSet(django_filters.FilterSet):\n        _order_by = filters.OrderingFilter(fields=filter_field_names)\n        _search = SearchFilter()\n\n        class Meta:\n            model = build_model\n            fields = filter_fields\n\n    return FilterSet\n"
  },
  {
    "path": "build/lib/jet_django/filters/model_aggregate.py",
    "content": "import django_filters\nfrom django.db.models import Count, Sum, Min, Max, Avg\nfrom django_filters.constants import EMPTY_VALUES\n\n\nclass AggregateFilter(django_filters.CharFilter):\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        if value['y_func'] == 'count':\n            y_func = Count(value['y_column'])\n        elif value['y_func'] == 'sum':\n            y_func = Sum(value['y_column'])\n        elif value['y_func'] == 'min':\n            y_func = Min(value['y_column'])\n        elif value['y_func'] == 'max':\n            y_func = Max(value['y_column'])\n        elif value['y_func'] == 'avg':\n            y_func = Avg(value['y_column'])\n        else:\n            return qs.none()\n\n        qs = qs \\\n            .aggregate(y_func=y_func)\n\n        return qs\n"
  },
  {
    "path": "build/lib/jet_django/filters/model_group.py",
    "content": "import django_filters\nfrom django.db.models import Count, Sum, Min, Max, Avg, F\nfrom django_filters.constants import EMPTY_VALUES\n\n\nclass GroupFilter(django_filters.CharFilter):\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        if value['y_func'] == 'count':\n            y_func = Count(value['y_column'])\n        elif value['y_func'] == 'sum':\n            y_func = Sum(value['y_column'])\n        elif value['y_func'] == 'min':\n            y_func = Min(value['y_column'])\n        elif value['y_func'] == 'max':\n            y_func = Max(value['y_column'])\n        elif value['y_func'] == 'avg':\n            y_func = Avg(value['y_column'])\n        else:\n            return qs.none()\n\n        x_lookup = value['x_lookup'] if value['x_lookup'] else F\n\n        qs = qs \\\n            .annotate(group=x_lookup(value['x_column']))\\\n            .values('group')\\\n            .annotate(y_func=y_func)\\\n            .order_by('group')\n\n        return qs\n"
  },
  {
    "path": "build/lib/jet_django/filters/view_settings.py",
    "content": "import django_filters\n\nfrom jet_django.models.view_settings import ViewSettings\n\n\nclass ViewSettingsFilterSet(django_filters.FilterSet):\n    class Meta:\n        model = ViewSettings\n        fields = (\n            'app_label',\n            'model',\n            'view',\n        )\n"
  },
  {
    "path": "build/lib/jet_django/filters/widget.py",
    "content": "import django_filters\n\nfrom jet_django.models.widget import Widget\n\n\nclass WidgetFilterSet(django_filters.FilterSet):\n    class Meta:\n        model = Widget\n        fields = (\n            'dashboard',\n        )\n"
  },
  {
    "path": "build/lib/jet_django/management/commands/register_token.py",
    "content": "from django.core.management import BaseCommand\n\nfrom jet_django.utils.backend import register_token\n\n\nclass Command(BaseCommand):\n    def handle(self, *args, **options):\n        token, created = register_token()\n\n        if not created and token:\n            print('Token already exists: {}'.format(token.token))\n        elif not created and not token:\n            print('Token creation failed')\n        elif created and token:\n            print('Token created: {}'.format(token.token))\n"
  },
  {
    "path": "build/lib/jet_django/migrations/0001_initial.py",
    "content": "# -*- coding: utf-8 -*-\n# Generated by Django 1.11.5 on 2018-08-26 17:24\nfrom __future__ import unicode_literals\n\nfrom django.db import migrations, models\nimport django.db.models.deletion\nimport django.utils.timezone\n\n\nclass Migration(migrations.Migration):\n\n    initial = True\n\n    dependencies = [\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name='Dashboard',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('name', models.CharField(max_length=255, verbose_name='name')),\n                ('ordering', models.PositiveIntegerField(default=0, verbose_name='ordering')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'dashboard',\n                'verbose_name_plural': 'dashboards',\n                'ordering': ('ordering',),\n            },\n        ),\n        migrations.CreateModel(\n            name='MenuSettings',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('items', models.TextField(blank=True, default='', verbose_name='items')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'menu settings',\n                'verbose_name_plural': 'menu settings',\n            },\n        ),\n        migrations.CreateModel(\n            name='ModelDescription',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('app_label', models.CharField(max_length=255, verbose_name='app_label')),\n                ('model', models.CharField(blank=True, default='', max_length=255, verbose_name='model')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'model description',\n                'verbose_name_plural': 'model descriptions',\n            },\n        ),\n        migrations.CreateModel(\n            name='Token',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('project', models.CharField(blank=True, default='', max_length=30, verbose_name='project')),\n                ('token', models.UUIDField(verbose_name='token')),\n                ('date_add', models.DateTimeField(verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'token',\n                'verbose_name_plural': 'tokens',\n            },\n        ),\n        migrations.CreateModel(\n            name='ViewSettings',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('app_label', models.CharField(max_length=255, verbose_name='app_label')),\n                ('model', models.CharField(blank=True, default='', max_length=255, verbose_name='model')),\n                ('view', models.CharField(blank=True, default='change', max_length=255, verbose_name='view')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'view settings',\n                'verbose_name_plural': 'views settings',\n            },\n        ),\n        migrations.CreateModel(\n            name='Widget',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('widget_type', models.CharField(max_length=255, verbose_name='type')),\n                ('name', models.CharField(max_length=255, verbose_name='name')),\n                ('x', models.PositiveSmallIntegerField(verbose_name='x')),\n                ('y', models.PositiveSmallIntegerField(verbose_name='y')),\n                ('width', models.PositiveSmallIntegerField(default=1, verbose_name='width')),\n                ('height', models.PositiveSmallIntegerField(default=1, verbose_name='height')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n                ('dashboard', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='widgets', to='jet_django.Dashboard', verbose_name='dashboard')),\n            ],\n            options={\n                'verbose_name': 'widget',\n                'verbose_name_plural': 'widgets',\n                'ordering': ('y', 'x'),\n            },\n        ),\n    ]\n"
  },
  {
    "path": "build/lib/jet_django/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/models/dashboard.py",
    "content": "from django.db import models\nfrom django.utils import timezone\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass Dashboard(models.Model):\n    name = models.CharField(\n        verbose_name=_('name'),\n        max_length=255\n    )\n    ordering = models.PositiveIntegerField(\n        verbose_name=_('ordering'),\n        default=0\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added'),\n        default=timezone.now\n    )\n\n    class Meta:\n        verbose_name = _('dashboard')\n        verbose_name_plural = _('dashboards')\n        ordering = ('ordering',)\n\n    def __str__(self):\n        return str(self.name)\n"
  },
  {
    "path": "build/lib/jet_django/models/menu_item.py",
    "content": "from django.db import models\nfrom django.utils import timezone\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass MenuSettings(models.Model):\n    items = models.TextField(\n        verbose_name=_('items'),\n        blank=True,\n        default=''\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added'),\n        default=timezone.now\n    )\n\n    class Meta:\n        verbose_name = _('menu settings')\n        verbose_name_plural = _('menu settings')\n\n    def __str__(self):\n        return '{}'.format(self.date_add)\n"
  },
  {
    "path": "build/lib/jet_django/models/model_description.py",
    "content": "from django.db import models\nfrom django.utils import timezone\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass ModelDescription(models.Model):\n    app_label = models.CharField(\n        verbose_name=_('app_label'),\n        max_length=255\n    )\n    model = models.CharField(\n        verbose_name=_('model'),\n        max_length=255,\n        blank=True,\n        default=''\n    )\n    params = models.TextField(\n        verbose_name=_('params'),\n        blank=True,\n        default=''\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added'),\n        default=timezone.now\n    )\n\n    class Meta:\n        verbose_name = _('model description')\n        verbose_name_plural = _('model descriptions')\n\n    def __str__(self):\n        return '{} {}'.format(self.app_label, self.model)\n"
  },
  {
    "path": "build/lib/jet_django/models/token.py",
    "content": "from django.db import models\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass Token(models.Model):\n    project = models.CharField(\n        verbose_name=_('project'),\n        max_length=30,\n        blank=True,\n        default=''\n    )\n    token = models.UUIDField(\n        verbose_name=_('token')\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added')\n    )\n\n    class Meta:\n        verbose_name = _('token')\n        verbose_name_plural = _('tokens')\n\n    def __str__(self):\n        return str(self.token)\n"
  },
  {
    "path": "build/lib/jet_django/models/view_settings.py",
    "content": "from django.db import models\nfrom django.utils import timezone\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass ViewSettings(models.Model):\n    app_label = models.CharField(\n        verbose_name=_('app_label'),\n        max_length=255\n    )\n    model = models.CharField(\n        verbose_name=_('model'),\n        max_length=255,\n        blank=True,\n        default=''\n    )\n    view = models.CharField(\n        verbose_name=_('view'),\n        max_length=255,\n        blank=True,\n        default='change'\n    )\n    params = models.TextField(\n        verbose_name=_('params'),\n        blank=True,\n        default=''\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added'),\n        default=timezone.now\n    )\n\n    class Meta:\n        verbose_name = _('view settings')\n        verbose_name_plural = _('views settings')\n\n    def __str__(self):\n        return '{} {}'.format(self.app_label, self.model)\n"
  },
  {
    "path": "build/lib/jet_django/models/widget.py",
    "content": "from django.db import models\nfrom django.utils import timezone\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass Widget(models.Model):\n    dashboard = models.ForeignKey(\n        to='jet_django.Dashboard',\n        verbose_name=_('dashboard'),\n        related_name='widgets'\n    )\n    widget_type = models.CharField(\n        verbose_name=_('type'),\n        max_length=255\n    )\n    name = models.CharField(\n        verbose_name=_('name'),\n        max_length=255\n    )\n    x = models.PositiveSmallIntegerField(\n        verbose_name=_('x')\n    )\n    y = models.PositiveSmallIntegerField(\n        verbose_name=_('y')\n    )\n    width = models.PositiveSmallIntegerField(\n        verbose_name=_('width'),\n        default=1\n    )\n    height = models.PositiveSmallIntegerField(\n        verbose_name=_('height'),\n        default=1\n    )\n    params = models.TextField(\n        verbose_name=_('params'),\n        blank=True,\n        default=''\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added'),\n        default=timezone.now\n    )\n\n    class Meta:\n        verbose_name = _('widget')\n        verbose_name_plural = _('widgets')\n        ordering = ('y', 'x')\n\n    def __str__(self):\n        return str(self.name)\n"
  },
  {
    "path": "build/lib/jet_django/pagination.py",
    "content": "from collections import OrderedDict\n\nfrom rest_framework.pagination import PageNumberPagination\nfrom rest_framework.response import Response\n\n\nclass CustomPageNumberPagination(PageNumberPagination):\n    page_size_query_param = '_per_page'\n\n    def get_paginated_response(self, data):\n        return Response(OrderedDict([\n            ('count', self.page.paginator.count),\n            ('next', self.get_next_link()),\n            ('previous', self.get_previous_link()),\n            ('results', data),\n            ('num_pages', self.page.paginator.num_pages),\n            ('per_page', self.page.paginator.per_page),\n        ]))\n"
  },
  {
    "path": "build/lib/jet_django/permissions.py",
    "content": "from rest_framework.permissions import BasePermission\n\nfrom jet_django import settings\nfrom jet_django.utils.backend import project_auth\n\n\nclass HasProjectPermissions(BasePermission):\n    token_prefix = 'Token '\n    project_token_prefix = 'ProjectToken '\n\n    def has_permission(self, request, view):\n    #     return True\n        token = request.META.get('HTTP_AUTHORIZATION')\n\n        if not token:\n            return False\n\n        if token[:len(self.token_prefix)] == self.token_prefix:\n            token = token[len(self.token_prefix):]\n\n            return project_auth(token)\n        elif token[:len(self.project_token_prefix)] == self.project_token_prefix:\n            token = token[len(self.project_token_prefix):]\n\n            return project_auth(token)\n        else:\n            return False\n\n\nclass ModifyNotInDemo(BasePermission):\n\n    def has_permission(self, request, view):\n        if not settings.JET_DEMO:\n            return True\n        if view.action in ['create', 'update', 'partial_update', 'destroy']:\n            return False\n        return True\n"
  },
  {
    "path": "build/lib/jet_django/serializers/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/serializers/dashboard.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.dashboard import Dashboard\nfrom jet_django.serializers.widget_list import WidgetListSerializer\n\n\nclass DashboardSerializer(serializers.ModelSerializer):\n    widgets = WidgetListSerializer(many=True, read_only=True)\n\n    class Meta:\n        model = Dashboard\n        fields = (\n            'id',\n            'name',\n            'ordering',\n            'date_add',\n            'widgets'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/dashboard_set_widgets.py",
    "content": "from django.db import transaction\nfrom rest_framework import serializers\n\nfrom jet_django.models.dashboard import Dashboard\nfrom jet_django.models.widget import Widget\nfrom jet_django.serializers.widget_update_position import WidgetUpdatePositionSerializer\n\n\nclass DashboardSetWidgetsSerializer(serializers.ModelSerializer):\n    widgets = WidgetUpdatePositionSerializer(many=True)\n\n    class Meta:\n        model = Dashboard\n        fields = (\n            'widgets',\n        )\n\n    def update(self, instance, validated_data):\n        with transaction.atomic():\n            widgets = Widget.objects.filter(dashboard=instance)\n\n            for widget in validated_data['widgets']:\n                widgets.filter(pk=widget['id']).update(\n                    x=widget['x'],\n                    y=widget['y'],\n                    width=widget['width'],\n                    height=widget['height'],\n                    params=widget['params']\n                )\n\n            widgets.exclude(pk__in=map(lambda x: x['id'], validated_data['widgets'])).delete()\n\n        return instance\n"
  },
  {
    "path": "build/lib/jet_django/serializers/menu_settings.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.menu_item import MenuSettings\n\n\nclass MenuSettingsSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = MenuSettings\n        fields = (\n            'items',\n            'date_add'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/model.py",
    "content": "from rest_framework import serializers\n\n\ndef model_serializer_factory(build_model, build_fields):\n    class Serializer(serializers.ModelSerializer):\n\n        class Meta:\n            model = build_model\n            fields = build_fields + ['__str__']\n\n    return Serializer\n"
  },
  {
    "path": "build/lib/jet_django/serializers/model_description.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.model_description import ModelDescription\n\n\nclass ModelDescriptionSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = ModelDescription\n        fields = (\n            'app_label',\n            'model',\n            'params',\n            'date_add'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/model_detail.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.utils.siblings import get_model_sibling\n\n\ndef model_detail_serializer_factory(build_model, build_fields):\n    class Serializer(serializers.ModelSerializer):\n        __previous_sibling__ = serializers.SerializerMethodField('get_previous_sibling')\n        __next_sibling__ = serializers.SerializerMethodField('get_next_sibling')\n\n        class Meta:\n            model = build_model\n            fields = build_fields + ['__str__', '__previous_sibling__', '__next_sibling__']\n\n        def sibling_response(self, sibling):\n            if not sibling:\n                return\n            return {\n                'id': sibling.pk,\n                '__str__': str(sibling)\n            }\n\n        def get_previous_sibling(self, instance, ordering=None):\n            sibling = get_model_sibling(build_model, instance, False, ordering)\n            return self.sibling_response(sibling)\n\n        def get_next_sibling(self, instance, ordering=None):\n            sibling = get_model_sibling(build_model, instance, True, ordering)\n            return self.sibling_response(sibling)\n\n    return Serializer\n"
  },
  {
    "path": "build/lib/jet_django/serializers/reorder.py",
    "content": "from django.db import transaction\nfrom django.db.models import F\nfrom rest_framework import serializers, relations\n\n\ndef reorder_serializer_factory(build_queryset, ordering_field):\n    class ReorderSerializer(serializers.Serializer):\n        forward = serializers.BooleanField()\n        segment_from = relations.PrimaryKeyRelatedField(queryset=build_queryset)\n        segment_to = relations.PrimaryKeyRelatedField(queryset=build_queryset)\n        item = relations.PrimaryKeyRelatedField(queryset=build_queryset)\n\n        def save(self):\n            with transaction.atomic():\n                if self.validated_data['forward']:\n                    build_queryset.filter(\n                        **{\n                            '{}__gte'.format(ordering_field): getattr(self.validated_data['segment_from'], ordering_field),\n                            '{}__lte'.format(ordering_field): getattr(self.validated_data['segment_to'], ordering_field)\n                        }\n                    ).update(\n                        **{ordering_field: F(ordering_field) - 1}\n                    )\n                    build_queryset.filter(\n                        pk=self.validated_data['item'].pk\n                    ).update(\n                        **{ordering_field: getattr(self.validated_data['segment_to'], ordering_field)}\n                    )\n                else:\n                    build_queryset.filter(\n                        **{\n                            '{}__gte'.format(ordering_field): getattr(self.validated_data['segment_from'], ordering_field),\n                            '{}__lte'.format(ordering_field): getattr(self.validated_data['segment_to'], ordering_field)\n                        }\n                    ).update(\n                        **{ordering_field: F(ordering_field) + 1}\n                    )\n                    build_queryset.filter(\n                        pk=self.validated_data['item'].pk\n                    ).update(\n                        **{ordering_field: getattr(self.validated_data['segment_from'], ordering_field)}\n                    )\n\n    return ReorderSerializer\n"
  },
  {
    "path": "build/lib/jet_django/serializers/sql.py",
    "content": "from rest_framework import serializers\nfrom rest_framework.exceptions import ValidationError\n\n\nclass SqlSerializer(serializers.Serializer):\n    query = serializers.CharField()\n    params = serializers.CharField(required=False)\n\n    def validate_query(self, value):\n        forbidden = ['insert', 'update', 'delete', 'grant', 'show']\n        for i in range(len(forbidden)):\n            forbidden.append('({}'.format(forbidden[i]))\n        if any(map(lambda x: ' {} '.format(value.lower()).find(' {} '.format(x)) != -1, forbidden)):\n            raise ValidationError('forbidden query')\n        return value\n"
  },
  {
    "path": "build/lib/jet_django/serializers/view_settings.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.view_settings import ViewSettings\n\n\nclass ViewSettingsSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = ViewSettings\n        fields = (\n            'app_label',\n            'model',\n            'view',\n            'params',\n            'date_add'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/widget_detail.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.widget import Widget\n\n\nclass WidgetDetailSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = Widget\n        fields = (\n            'id',\n            'widget_type',\n            'name',\n            'x',\n            'y',\n            'width',\n            'height',\n            'params',\n            'date_add',\n            'dashboard'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/widget_list.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.widget import Widget\n\n\nclass WidgetListSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = Widget\n        fields = (\n            'id',\n            'widget_type',\n            'name',\n            'x',\n            'y',\n            'width',\n            'height',\n            'params',\n            'date_add'\n        )\n"
  },
  {
    "path": "build/lib/jet_django/serializers/widget_update_position.py",
    "content": "from rest_framework import serializers\n\nfrom jet_django.models.widget import Widget\n\n\nclass WidgetUpdatePositionSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = Widget\n        fields = (\n            'id',\n            'x',\n            'y',\n            'width',\n            'height',\n            'params'\n        )\n        extra_kwargs = {'id': {'read_only': False}}\n"
  },
  {
    "path": "build/lib/jet_django/settings.py",
    "content": "from django.conf import settings\n\nJET_BACKEND_API_BASE_URL = getattr(settings, 'JET_BACKEND_API_BASE_URL', 'https://api.jetadmin.io/api')\nJET_BACKEND_WEB_BASE_URL = getattr(settings, 'JET_BACKEND_WEB_BASE_URL', 'https://app.jetadmin.io')\nJET_DEMO = getattr(settings, 'JET_DEMO', False)\n"
  },
  {
    "path": "build/lib/jet_django/urls.py",
    "content": "from django.conf.urls import url\nfrom rest_framework.routers import DefaultRouter\n\nfrom jet_django.admin.jet import jet\nfrom jet_django.views.dashboard import DashboardViewSet\nfrom jet_django.views.menu_settings import MenuSettingsViewSet\nfrom jet_django.views.model_description import ModelDescriptionViewSet\nfrom jet_django.views.register import RegisterView\nfrom jet_django.views.sql import SqlView\nfrom jet_django.views.view_settings import ViewSettingsViewSet\nfrom jet_django.views.widget import WidgetViewSet\n\n\ndef init_urls():\n    class Router(DefaultRouter):\n        include_root_view = False\n\n    router = Router()\n\n    jet.register_related_models()\n\n    for model in jet.models:\n        router.register(model.viewset_url, model.viewset)\n\n    router.register('model_descriptions', ModelDescriptionViewSet)\n    router.register('dashboards', DashboardViewSet)\n    router.register('widgets', WidgetViewSet)\n    router.register('view_settings', ViewSettingsViewSet)\n    router.register('menu_settings', MenuSettingsViewSet)\n\n    extra_urls = [\n        url(r'^model_descriptions_base/', jet.models_view().as_view(), name='model-descriptions'),\n        url(r'^register/', RegisterView.as_view(), name='register'),\n        url(r'^sql/', SqlView.as_view(), name='sql')\n    ]\n\n    api_urls = router.urls + extra_urls\n\n    return api_urls\n\n\njet_urls = init_urls()\n"
  },
  {
    "path": "build/lib/jet_django/utils/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/utils/backend.py",
    "content": "import requests\n\nfrom jet_django import settings\nfrom jet_django.models.token import Token\n\n\ndef api_method_url(method):\n    return '{}/{}'.format(settings.JET_BACKEND_API_BASE_URL, method)\n\n\ndef register_token():\n    token = Token.objects.all().first()\n\n    if token:\n        return token, False\n\n    url = api_method_url('project_tokens/')\n    headers = {\n        'User-Agent': 'Jet Django'\n    }\n\n    r = requests.request('POST', url, headers=headers)\n    success = 200 <= r.status_code < 300\n\n    if not success:\n        print('Register Token request error', r.status_code, r.reason)\n        return None, False\n\n    result = r.json()\n    token = Token.objects.create(token=result['token'], date_add=result['date_add'])\n\n    return token, True\n\n\ndef project_auth(token):\n    project_token = Token.objects.all().first()\n\n    if not project_token:\n        return False\n\n    url = api_method_url('project_auth/')\n    data = {\n        'project_token': project_token.token,\n        'token': token\n    }\n    headers = {\n        'User-Agent': 'Jet Django'\n    }\n\n    r = requests.request('POST', url, data=data, headers=headers)\n    success = 200 <= r.status_code < 300\n\n    if not success:\n        print('Project Auth request error', r.status_code, r.reason)\n        return False\n\n    return True\n"
  },
  {
    "path": "build/lib/jet_django/utils/siblings.py",
    "content": "from collections import OrderedDict\n\n\ndef get_model_sibling(Model, instance, next, ordering=None):\n    if len(Model._meta.ordering):\n        ordering = list(Model._meta.ordering) + ['-id']\n    elif ordering is None:\n        ordering = ['-id']\n    elif ordering != ['-id']:\n        ordering = list(ordering) + ['-id']\n\n    def inverse_ordering(x):\n        if x[0:1] == '-':\n            return x[1:]\n        else:\n            return '-{}'.format(x)\n\n    if not next:\n        ordering = list(map(inverse_ordering, ordering))\n\n    def map_ordering(x):\n        asc = x[0:1] != '-'\n        name = x if asc else x[1:]\n        operator = 'gte' if asc else 'lte'\n        return '{}__{}'.format(name, operator), getattr(instance, name)\n\n    params = OrderedDict(map(map_ordering, ordering[0:1]))\n\n    found_instance = False\n    sibling = None\n\n    for item in Model.objects.filter(**params).order_by(*ordering).all():\n        if item.pk == instance.pk:\n            found_instance = True\n        elif found_instance:\n            sibling = item\n            break\n\n    return sibling\n"
  },
  {
    "path": "build/lib/jet_django/views/__init__.py",
    "content": ""
  },
  {
    "path": "build/lib/jet_django/views/dashboard.py",
    "content": "from rest_framework import viewsets\nfrom rest_framework.decorators import detail_route\nfrom rest_framework.response import Response\n\nfrom jet_django.models.dashboard import Dashboard\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.dashboard import DashboardSerializer\nfrom jet_django.serializers.dashboard_set_widgets import DashboardSetWidgetsSerializer\n\n\nclass DashboardViewSet(viewsets.ModelViewSet):\n    model = Dashboard\n    serializer_class = DashboardSerializer\n    queryset = Dashboard.objects.prefetch_related('widgets').all()\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    @detail_route(methods=['put'])\n    def set_widgets(self, request, *args, **kwargs):\n        serializer = DashboardSetWidgetsSerializer(instance=self.get_object(), data=request.data)\n        serializer.is_valid(raise_exception=True)\n        serializer.save()\n\n        instance_serializer = self.get_serializer(instance=self.get_object())\n\n        return Response(instance_serializer.data)\n"
  },
  {
    "path": "build/lib/jet_django/views/menu_settings.py",
    "content": "from django.http import Http404\nfrom django.shortcuts import get_object_or_404\nfrom rest_framework import viewsets\n\nfrom jet_django.models.menu_item import MenuSettings\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.menu_settings import MenuSettingsSerializer\n\n\nclass MenuSettingsViewSet(viewsets.ModelViewSet):\n    model = MenuSettings\n    serializer_class = MenuSettingsSerializer\n    queryset = MenuSettings.objects.all()\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def create(self, request, *args, **kwargs):\n        try:\n            self.get_object()\n            return super().update(request, *args, **kwargs)\n        except Http404:\n            return super().create(request, *args, **kwargs)\n\n    def get_object(self):\n        queryset = self.get_queryset()[:1]\n        obj = get_object_or_404(queryset)\n\n        # May raise a permission denied\n        self.check_object_permissions(self.request, obj)\n\n        return obj\n"
  },
  {
    "path": "build/lib/jet_django/views/model.py",
    "content": "from django.core.exceptions import NON_FIELD_ERRORS\nfrom rest_framework import status, viewsets, serializers\nfrom rest_framework.decorators import list_route\nfrom rest_framework.response import Response\nfrom rest_framework.serializers import ModelSerializer\n\nfrom jet_django.filters.model_aggregate import AggregateFilter\nfrom jet_django.filters.model_group import GroupFilter\nfrom jet_django.pagination import CustomPageNumberPagination\nfrom jet_django.permissions import HasProjectPermissions, ModifyNotInDemo\nfrom jet_django.serializers.reorder import reorder_serializer_factory\n\n\nclass AggregateSerializer(serializers.Serializer):\n    y_func = serializers.IntegerField()\n\n    def __init__(self, *args, **kwargs):\n        if 'y_func_serializer' in kwargs:\n            self.fields['y_func'] = kwargs.pop('y_func_serializer')\n\n        super().__init__(*args, **kwargs)\n\n\nclass GroupSerializer(serializers.Serializer):\n    group = serializers.CharField()\n    y_func = serializers.IntegerField()\n\n    def __init__(self, *args, **kwargs):\n        if 'group_serializer' in kwargs:\n            self.fields['group'] = kwargs.pop('group_serializer')\n\n        if 'y_func_serializer' in kwargs:\n            self.fields['y_func'] = kwargs.pop('y_func_serializer')\n\n        super().__init__(*args, **kwargs)\n\n\ndef model_viewset_factory(build_model, build_filter_class, build_serializer_class, build_detail_serializer_class, build_queryset, build_actions, ordering_field):\n    ReorderSerializer = reorder_serializer_factory(build_queryset, ordering_field)\n\n    class Viewset(viewsets.ModelViewSet):\n        model = build_model\n        queryset = build_queryset\n        pagination_class = CustomPageNumberPagination\n        filter_class = build_filter_class\n        authentication_classes = ()\n        permission_classes = (HasProjectPermissions, ModifyNotInDemo)\n\n        def get_serializer_class(self):\n            if self.action == 'aggregate':\n                return AggregateSerializer\n            elif self.action == 'group':\n                return GroupSerializer\n            elif self.action == 'retrieve':\n                return build_detail_serializer_class\n            else:\n                return build_serializer_class\n\n        @list_route(methods=['get'])\n        def aggregate(self, request):\n            queryset = self.filter_queryset(self.get_queryset())\n\n            y_func = request.GET['_y_func'].lower()\n            y_column = request.GET.get('_y_column', 'id')\n\n            y_field = self.model._meta.get_field(y_column)\n\n            y_serializer_class, y_serializer_kwargs = ModelSerializer().build_standard_field(y_column, y_field)\n            y_serializer = y_serializer_class(**y_serializer_kwargs)\n\n            queryset = AggregateFilter().filter(queryset, {\n                'y_func': y_func,\n                'y_column': y_column\n            })\n\n            serializer = self.get_serializer(\n                queryset,\n                y_func_serializer=y_serializer\n            )\n\n            return Response(serializer.data)\n\n        @list_route(methods=['get'])\n        def group(self, request):\n            queryset = self.filter_queryset(self.get_queryset())\n\n            x_column = request.GET['_x_column']\n            x_lookup_name = request.GET.get('_x_lookup')\n            y_func = request.GET['_y_func'].lower()\n            y_column = request.GET.get('_y_column', 'id')\n\n            x_field = self.model._meta.get_field(x_column)\n            x_lookup = x_field.class_lookups.get(x_lookup_name)\n            y_field = self.model._meta.get_field(y_column)\n\n            if x_lookup:\n                x_field = x_lookup('none').output_field\n\n            x_serializer_class, x_serializer_kwargs = ModelSerializer().build_standard_field(x_column, x_field)\n            x_serializer = x_serializer_class(**x_serializer_kwargs)\n\n            y_serializer_class, y_serializer_kwargs = ModelSerializer().build_standard_field(y_column, y_field)\n            y_serializer = y_serializer_class(**y_serializer_kwargs)\n\n            queryset = GroupFilter().filter(queryset, {\n                'x_column': x_column,\n                'x_lookup': x_lookup,\n                'y_func': y_func,\n                'y_column': y_column\n            })\n            serializer = self.get_serializer(\n                queryset,\n                many=True,\n                group_serializer=x_serializer,\n                y_func_serializer=y_serializer\n            )\n\n            return Response(serializer.data)\n\n        def get_serializer(self, *args, **kwargs):\n            \"\"\"\n            Return the serializer instance that should be used for validating and\n            deserializing input, and for serializing output.\n            \"\"\"\n            serializer_class = self.get_serializer_class()\n            kwargs['context'] = self.get_serializer_context()\n            return serializer_class(*args, **kwargs)\n\n        @list_route(methods=['post'])\n        def reorder(self, request):\n            serializer = ReorderSerializer(data=request.data)\n            serializer.is_valid(raise_exception=True)\n            serializer.save()\n            return Response(serializer.data)\n\n        @list_route(methods=['post'])\n        def reset_order(self, request):\n            i = 1\n            for instance in build_queryset:\n                setattr(instance, ordering_field, i)\n                instance.save()\n                i += 1\n            return Response({})\n\n    for action in build_actions:\n        def route(self, request):\n            form = action(data=request.data)\n\n            if not form.is_valid():\n                return Response(form.errors, status=status.HTTP_400_BAD_REQUEST)\n\n            queryset = form.filer_queryset(self.get_queryset())\n\n            try:\n                result = form.save(queryset)\n            except Exception as e:\n                return Response({NON_FIELD_ERRORS: str(e)}, status=status.HTTP_400_BAD_REQUEST)\n\n            return Response({'action': form._meta.name, 'result': result})\n\n        decorator = list_route(methods=['post'])\n        route = decorator(route)\n\n        setattr(Viewset, action._meta.name, route)\n\n    return Viewset\n"
  },
  {
    "path": "build/lib/jet_django/views/model_description.py",
    "content": "import json\n\nfrom django.http import Http404\nfrom django.shortcuts import get_object_or_404\nfrom rest_framework import viewsets\nfrom rest_framework.response import Response\n\nfrom jet_django.admin.jet import jet\nfrom jet_django.models.model_description import ModelDescription\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.model_description import ModelDescriptionSerializer\n\n\nclass ModelDescriptionViewSet(viewsets.ModelViewSet):\n    model = ModelDescription\n    serializer_class = ModelDescriptionSerializer\n    queryset = ModelDescription.objects\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def create(self, request, *args, **kwargs):\n        try:\n            object = self.get_object()\n            return super().update(request, *args, **kwargs)\n        except Http404:\n            return super().create(request, *args, **kwargs)\n\n    def list(self, request, *args, **kwargs):\n        def map_override(x):\n            try:\n                item = json.loads(x.params)\n            except ValueError:\n                item = {}\n            item['app_label'] = x.app_label\n            item['model'] = x.model\n            return item\n\n        def find_index(ar, x):\n            i = 0\n            for item in ar:\n                if x(item):\n                    return i\n                else:\n                    i += 1\n\n        base = list(map(lambda x: x.serialize(), jet.models))\n        overrides = list(map(map_override, self.get_queryset().all()))\n\n        for md_override in overrides:\n            md_i = find_index(\n                base, lambda x: x.get('app_label') == md_override.get('app_label')\n                                              and x.get('model') == md_override.get('model'))\n\n            if md_i is None:\n                continue\n\n            for item in ['db_table', 'verbose_name', 'verbose_name_plural', 'hidden', 'ordering_field']:\n                if item in base[md_i] and item in md_override:\n                    base[md_i][item] = md_override[item]\n\n            md_fields = list(base[md_i]['fields'])\n\n            for field_override in md_override.get('fields', []):\n                field_i = find_index(md_fields, lambda x: x.get('name') == field_override.get('name'))\n\n                if field_i is None:\n                    continue\n\n                for item in ['verbose_name', 'field', 'editable', 'filterable', 'params']:\n                    if item in md_fields[field_i] and item in field_override:\n                        md_fields[field_i][item] = field_override[item]\n\n            base[md_i]['fields'] = md_fields\n\n            md_flex_fields = list(base[md_i]['flex_fields'])\n\n            for field_override in md_override.get('flex_fields', []):\n                field_i = find_index(md_flex_fields, lambda x: x.get('name') == field_override.get('name'))\n\n                if field_i is None:\n                    field = {'name': field_override.get('name')}\n                    md_flex_fields.append(field)\n                    field_i = len(md_flex_fields) - 1\n\n                for item in ['verbose_name', 'field', 'query', 'code', 'params']:\n                    if item in field_override:\n                        md_flex_fields[field_i][item] = field_override[item]\n\n            base[md_i]['flex_fields'] = md_flex_fields\n\n            md_relations = list(base[md_i]['relations'])\n\n            for relation_override in md_override.get('relations', []):\n                relation_i = find_index(md_relations, lambda x: x.get('name') == relation_override.get('name'))\n\n                if relation_i is None:\n                    continue\n\n                for item in ['verbose_name', 'field']:\n                    if item in md_relations[relation_i] and item in relation_override:\n                        md_relations[relation_i][item] = relation_override[item]\n\n            base[md_i]['relations'] = md_relations\n\n        return Response(base)\n\n    def get_object(self):\n        queryset = self.filter_queryset(self.get_queryset())\n        filter_kwargs = {\n            'app_label': self.request.data.get('app_label'),\n            'model': self.request.data.get('model')\n        }\n        obj = get_object_or_404(queryset, **filter_kwargs)\n\n        # May raise a permission denied\n        self.check_object_permissions(self.request, obj)\n\n        return obj\n"
  },
  {
    "path": "build/lib/jet_django/views/register.py",
    "content": "from django.http import HttpResponseBadRequest\nfrom django.views import generic\n\nfrom jet_django import settings\nfrom jet_django.utils.backend import register_token\n\n\nclass RegisterView(generic.RedirectView):\n    def get(self, request, *args, **kwargs):\n        token, created = register_token()\n\n        if not token:\n            return HttpResponseBadRequest\n\n        self.url = '{}/projects/register/{}'.format(settings.JET_BACKEND_WEB_BASE_URL, token.token)\n        return super().get(request, *args, **kwargs)\n"
  },
  {
    "path": "build/lib/jet_django/views/sql.py",
    "content": "from django.db import connection, ProgrammingError\nfrom django.utils.translation import ugettext_lazy as _\nfrom django.utils import six\nfrom rest_framework import views, status\nfrom rest_framework.exceptions import APIException\nfrom rest_framework.response import Response\n\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.sql import SqlSerializer\n\n\nclass SqlError(APIException):\n    status_code = status.HTTP_400_BAD_REQUEST\n    default_detail = _('Query failed')\n    default_code = 'invalid'\n\n    def __init__(self, detail):\n        self.detail = {'error': str(detail)}\n\n    def __str__(self):\n        return six.text_type(self.detail)\n\n\nclass SqlView(views.APIView):\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def get(self, request, *args, **kwargs):\n        serializer = SqlSerializer(data=request.GET)\n        serializer.is_valid(raise_exception=True)\n\n        with connection.cursor() as cursor:\n            try:\n                cursor.execute(serializer.data['query'], serializer.data.get('params', '').split(','))\n            except ProgrammingError as e:\n                raise SqlError(e)\n            rows = cursor.fetchall()\n\n            return Response(rows)\n"
  },
  {
    "path": "build/lib/jet_django/views/view_settings.py",
    "content": "from django.http import Http404\nfrom django.shortcuts import get_object_or_404\nfrom rest_framework import viewsets\n\nfrom jet_django.filters.view_settings import ViewSettingsFilterSet\nfrom jet_django.models.view_settings import ViewSettings\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.view_settings import ViewSettingsSerializer\n\n\nclass ViewSettingsViewSet(viewsets.ModelViewSet):\n    model = ViewSettings\n    serializer_class = ViewSettingsSerializer\n    queryset = ViewSettings.objects\n    filter_class = ViewSettingsFilterSet\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def create(self, request, *args, **kwargs):\n        try:\n            object = self.get_object()\n            return super().update(request, *args, **kwargs)\n        except Http404:\n            return super().create(request, *args, **kwargs)\n\n    def get_object(self):\n        queryset = self.filter_queryset(self.get_queryset())\n        filter_kwargs = {\n            'app_label': self.request.data.get('app_label'),\n            'model': self.request.data.get('model'),\n            'view': self.request.data.get('view')\n        }\n        obj = get_object_or_404(queryset, **filter_kwargs)\n\n        # May raise a permission denied\n        self.check_object_permissions(self.request, obj)\n\n        return obj\n"
  },
  {
    "path": "build/lib/jet_django/views/widget.py",
    "content": "from rest_framework import viewsets\n\nfrom jet_django.filters.widget import WidgetFilterSet\nfrom jet_django.models.widget import Widget\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.widget_detail import WidgetDetailSerializer\n\n\nclass WidgetViewSet(viewsets.ModelViewSet):\n    model = Widget\n    serializer_class = WidgetDetailSerializer\n    queryset = Widget.objects.prefetch_related('dashboard').all()\n    filter_class = WidgetFilterSet\n    pagination_class = None\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n"
  },
  {
    "path": "jet_django/__init__.py",
    "content": "VERSION = '0.7.3'\ndefault_app_config = 'jet_django.apps.JetDjangoConfig'\n"
  },
  {
    "path": "jet_django/admin/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/admin/jet.py",
    "content": "from jet_django.admin.model_description import JetAdminModelDescription\n\n\nclass JetAdmin(object):\n    models = []\n    message_handlers = {}\n\n    def register(self, Model, fields=None, hidden=False):\n        self.models.append(JetAdminModelDescription(Model, fields, hidden))\n\n    def register_related_models(self):\n        def model_key(x):\n            return x['model']\n        registered = set(map(lambda x: model_key(x.get_model()), self.models))\n\n        for models_description in self.models:\n            for item in models_description.get_related_models():\n                key = model_key(item['model_info'])\n\n                if key in registered:\n                    continue\n\n                self.register(item['model'], hidden=True)\n                registered.add(key)\n\n    def add_message_handler(self, message_name, func):\n        self.message_handlers[message_name] = func\n\n    def get_message_handler(self, message_name):\n        return self.message_handlers.get(message_name)\n\njet = JetAdmin()\n"
  },
  {
    "path": "jet_django/admin/model_action.py",
    "content": "from django import forms\nfrom django.utils.text import camel_case_to_spaces\n\n\nclass JetAdminModelAction(forms.Form):\n    _ids = forms.CharField(label='object ids')\n\n    class Meta:\n        pass\n\n    @classmethod\n    def init_meta(cls):\n        name = camel_case_to_spaces(cls.__name__).replace(' ', '_')\n        verbose_name = getattr(cls.Meta, 'verbose_name', name)\n        cls._meta = cls.Meta\n        cls._meta.name = name\n        cls._meta.verbose_name = verbose_name\n\n    def clean__ids(self):\n        return self.cleaned_data['_ids'].split(',')\n\n    def get_fields(self):\n        fields = self.fields.copy()\n        del fields['_ids']\n        return fields\n\n    def filer_queryset(self, queryset):\n        return queryset.filter(pk__in=self.cleaned_data['_ids'])\n\n    def save(self, queryset):\n        raise NotImplementedError\n"
  },
  {
    "path": "jet_django/admin/model_description.py",
    "content": "from django.contrib.contenttypes.fields import GenericRel, GenericForeignKey, GenericRelation\nfrom django.contrib.contenttypes.models import ContentType\nfrom django.db import models\n\nfrom jet_django.filters.model import model_filter_class_factory\nfrom jet_django.serializers.model import model_serializer_factory\nfrom jet_django.serializers.model_detail import model_detail_serializer_factory\nfrom jet_django.views.model import model_viewset_factory\n\n\nclass JetAdminModelDescription(object):\n    def __init__(self, Model, fields=None, hidden=False):\n        self.model = Model\n        self.fields = fields\n        self.hidden = hidden\n\n        self.content_type = ContentType.objects.get_for_model(Model)\n        self.field_names = list(map(lambda x: x.name, self.get_display_model_fields()))\n        self.serializer = model_serializer_factory(Model, self.field_names)\n        self.detail_serializer = model_detail_serializer_factory(Model, self.field_names)\n        self.filter_class = model_filter_class_factory(Model, self.get_display_model_fields(), self.get_model_relations())\n        self.queryset = Model.objects.all()\n        self.viewset = model_viewset_factory(\n            Model,\n            self.filter_class,\n            self.serializer,\n            self.detail_serializer,\n            self.queryset\n        )\n\n    @property\n    def viewset_url(self):\n        return 'models/(?P<model>{})'.format(self.model._meta.db_table)\n\n    def get_model_fields(self):\n        fields = self.model._meta.get_fields()\n        def filter_fields(x):\n            if any(map(lambda rel: isinstance(x, rel), [\n                models.ManyToOneRel,\n                models.ManyToManyField,\n                models.ManyToManyRel,\n                GenericRel,\n                GenericForeignKey,\n                GenericRelation\n            ])):\n                return False\n            return True\n        return filter(filter_fields, fields)\n\n    def get_model_relations(self):\n        fields = self.model._meta.get_fields(include_hidden=True)\n        def filter_fields(x):\n            if any(map(lambda rel: isinstance(x, rel), [\n                models.OneToOneRel,\n                models.OneToOneField,\n                models.ManyToOneRel,\n                models.ManyToManyField,\n                models.ManyToManyRel\n            ])):\n                return True\n            return False\n        return list(filter(filter_fields, fields))\n\n    def get_model_relation_through(self, field):\n        if isinstance(field, models.ManyToManyRel):\n            return self.serialize_model(field.through)\n        elif isinstance(field, models.ManyToManyField):\n            return self.serialize_model(field.remote_field.through)\n\n    def get_display_model_fields(self):\n        fields = self.get_model_fields()\n        def filter_fields(x):\n            if self.fields:\n                return x.name in self.fields\n            return True\n        return filter(filter_fields, fields)\n\n    def serialize(self):\n        return {\n            'model': self.model._meta.db_table,\n            'db_table': self.model._meta.db_table,\n            'verbose_name': self.model._meta.verbose_name,\n            'verbose_name_plural': self.model._meta.verbose_name_plural,\n            'hidden': self.hidden,\n            'fields': map(lambda field: {\n                'name': field.name,\n                'db_column': field.get_attname_column()[1],\n                'verbose_name': field.verbose_name,\n                'is_relation': field.is_relation,\n                'field': field.__class__.__name__,\n                'required': not field.blank,\n                'null': field.null,\n                'editable': field.editable,\n                'filterable': field.name in self.filter_class.Meta.fields,\n                'params': {\n                    'related_model': self.serialize_model(field.related_model)\n                }\n            }, self.get_display_model_fields()),\n            'flex_fields': [],\n            'relations': map(lambda field: {\n                'name': field.name,\n                'verbose_name': field.related_model._meta.verbose_name_plural,\n                'related_model': self.serialize_model(field.related_model),\n                'field': field.__class__.__name__,\n                'related_model_field': field.remote_field.name,\n                'through': self.get_model_relation_through(field)\n            }, self.get_model_relations())\n        }\n\n    def get_model(self):\n        return {\n            'model': self.model._meta.db_table\n        }\n\n    def get_related_models(self):\n        return map(lambda field: {\n            'model': field.related_model,\n            'model_info': self.serialize_model(field.related_model)\n        }, self.get_model_relations())\n\n    def serialize_model(self, Model):\n        if not Model:\n            return\n        return {\n            'model': Model._meta.db_table,\n        }\n"
  },
  {
    "path": "jet_django/apps.py",
    "content": "import logging\n\nimport sys\nfrom django.apps import AppConfig\nfrom django.apps import apps\nfrom django.db import ProgrammingError\n\nfrom jet_django import settings\n\nlogger = logging.getLogger('jet_django')\n\n\nclass JetDjangoConfig(AppConfig):\n    name = 'jet_django'\n\n    def check_token(self):\n        from jet_django.utils.backend import register_token, is_token_activated\n\n        is_command = len(sys.argv) > 1 and sys.argv[1].startswith('jet_')\n\n        if not is_command and settings.JET_REGISTER_TOKEN_ON_START:\n            try:\n                print('[JET] Checking if token is not activated yet...')\n                token, created = register_token()\n\n                if not token:\n                    return\n\n                if not is_token_activated(token):\n                    print('[!] Your server token is not activated')\n                    print('[!] Token: {}'.format(token.token))\n                else:\n                    print('[JET] Token activated')\n            except ProgrammingError as e:\n                no_migrations = str(e).find('relation \"jet_django_token\" does not exist') != -1\n                if no_migrations:\n                    print('[JET] Apply migrations first: python manage.py migrate jet_django')\n                else:\n                    print(e)\n            except Exception as e:  # if no migrations yet\n                print(e)\n                pass\n\n    def register_models(self):\n        from jet_django.admin.jet import jet\n\n        try:\n            models = apps.get_models()\n\n            for model in models:\n                jet.register(model)\n        except:  # if no migrations yet\n            pass\n\n    def ready(self):\n        self.check_token()\n        self.register_models()\n"
  },
  {
    "path": "jet_django/deps/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/django_filters/__init__.py",
    "content": "# flake8: noqa\nimport pkgutil\n\nfrom .filterset import FilterSet\nfrom .filters import *\n\n# We make the `rest_framework` module available without an additional import.\n#   If DRF is not installed, no-op.\nif pkgutil.find_loader('jet_django.deps.rest_framework') is not None:\n    from . import rest_framework\ndel pkgutil\n\n__version__ = '2.0.0'\n\n\ndef parse_version(version):\n    '''\n    '0.1.2.dev1' -> (0, 1, 2, 'dev1')\n    '0.1.2' -> (0, 1, 2)\n    '''\n    v = version.split('.')\n    ret = []\n    for p in v:\n        if p.isdigit():\n            ret.append(int(p))\n        else:\n            ret.append(p)\n    return tuple(ret)\n\nVERSION = parse_version(__version__)\n"
  },
  {
    "path": "jet_django/deps/django_filters/compat.py",
    "content": "from django.conf import settings\n\n# django-crispy-forms is optional\ntry:\n    import crispy_forms\nexcept ImportError:\n    crispy_forms = None\n\n\ndef is_crispy():\n    return 'crispy_forms' in settings.INSTALLED_APPS and crispy_forms\n\n\n# coreapi is optional (Note that uritemplate is a dependency of coreapi)\n# Fixes #525 - cannot simply import from jet_django.deps.rest_framework.compat, due to\n# import issues w/ django-guardian.\ntry:\n    import coreapi\nexcept ImportError:\n    coreapi = None\n\ntry:\n    import coreschema\nexcept ImportError:\n    coreschema = None\n"
  },
  {
    "path": "jet_django/deps/django_filters/conf.py",
    "content": "from django.conf import settings as dj_settings\nfrom django.core.signals import setting_changed\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom .utils import deprecate\n\nDEFAULTS = {\n    'DISABLE_HELP_TEXT': False,\n\n    # empty/null choices\n    'EMPTY_CHOICE_LABEL': '---------',\n    'NULL_CHOICE_LABEL': None,\n    'NULL_CHOICE_VALUE': 'null',\n\n    'VERBOSE_LOOKUPS': {\n        # transforms don't need to be verbose, since their expressions are chained\n        'date': _('date'),\n        'year': _('year'),\n        'month': _('month'),\n        'day': _('day'),\n        'week_day': _('week day'),\n        'hour': _('hour'),\n        'minute': _('minute'),\n        'second': _('second'),\n\n        # standard lookups\n        'exact': _(''),\n        'iexact': _(''),\n        'contains': _('contains'),\n        'icontains': _('contains'),\n        'in': _('is in'),\n        'gt': _('is greater than'),\n        'gte': _('is greater than or equal to'),\n        'lt': _('is less than'),\n        'lte': _('is less than or equal to'),\n        'startswith': _('starts with'),\n        'istartswith': _('starts with'),\n        'endswith': _('ends with'),\n        'iendswith': _('ends with'),\n        'range': _('is in range'),\n        'isnull': _(''),\n        'regex': _('matches regex'),\n        'iregex': _('matches regex'),\n        'search': _('search'),\n\n        # postgres lookups\n        'contained_by': _('is contained by'),\n        'overlap': _('overlaps'),\n        'has_key': _('has key'),\n        'has_keys': _('has keys'),\n        'has_any_keys': _('has any keys'),\n        'trigram_similar': _('search'),\n    },\n}\n\n\nDEPRECATED_SETTINGS = [\n]\n\n\ndef is_callable(value):\n    # check for callables, except types\n    return callable(value) and not isinstance(value, type)\n\n\nclass Settings(object):\n\n    def __getattr__(self, name):\n        if name not in DEFAULTS:\n            msg = \"'%s' object has no attribute '%s'\"\n            raise AttributeError(msg % (self.__class__.__name__, name))\n\n        value = self.get_setting(name)\n\n        if is_callable(value):\n            value = value()\n\n        # Cache the result\n        setattr(self, name, value)\n        return value\n\n    def get_setting(self, setting):\n        django_setting = 'FILTERS_%s' % setting\n\n        if setting in DEPRECATED_SETTINGS and hasattr(dj_settings, django_setting):\n            deprecate(\"The '%s' setting has been deprecated.\" % django_setting)\n\n        return getattr(dj_settings, django_setting, DEFAULTS[setting])\n\n    def change_setting(self, setting, value, enter, **kwargs):\n        if not setting.startswith('FILTERS_'):\n            return\n        setting = setting[8:]  # strip 'FILTERS_'\n\n        # ensure a valid app setting is being overridden\n        if setting not in DEFAULTS:\n            return\n\n        # if exiting, delete value to repopulate\n        if enter:\n            setattr(self, setting, value)\n        else:\n            delattr(self, setting)\n\n\nsettings = Settings()\nsetting_changed.connect(settings.change_setting)\n"
  },
  {
    "path": "jet_django/deps/django_filters/constants.py",
    "content": "\nALL_FIELDS = '__all__'\n\n\nEMPTY_VALUES = ([], (), {}, '', None)\n"
  },
  {
    "path": "jet_django/deps/django_filters/exceptions.py",
    "content": "\nfrom django.core.exceptions import FieldError\n\n\nclass FieldLookupError(FieldError):\n    def __init__(self, model_field, lookup_expr):\n        super().__init__(\n            \"Unsupported lookup '%s' for field '%s'.\" % (lookup_expr, model_field)\n        )\n"
  },
  {
    "path": "jet_django/deps/django_filters/fields.py",
    "content": "from collections import namedtuple\nfrom datetime import datetime, time\n\nfrom django import forms\nfrom django.utils.dateparse import parse_datetime\nfrom django.utils.encoding import force_str\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom .conf import settings\nfrom .constants import EMPTY_VALUES\nfrom .utils import handle_timezone\nfrom .widgets import (\n    BaseCSVWidget,\n    CSVWidget,\n    DateRangeWidget,\n    LookupChoiceWidget,\n    RangeWidget\n)\n\n\nclass RangeField(forms.MultiValueField):\n    widget = RangeWidget\n\n    def __init__(self, fields=None, *args, **kwargs):\n        if fields is None:\n            fields = (\n                forms.DecimalField(),\n                forms.DecimalField())\n        super().__init__(fields, *args, **kwargs)\n\n    def compress(self, data_list):\n        if data_list:\n            return slice(*data_list)\n        return None\n\n\nclass DateRangeField(RangeField):\n    widget = DateRangeWidget\n\n    def __init__(self, *args, **kwargs):\n        fields = (\n            forms.DateField(),\n            forms.DateField())\n        super().__init__(fields, *args, **kwargs)\n\n    def compress(self, data_list):\n        if data_list:\n            start_date, stop_date = data_list\n            if start_date:\n                start_date = handle_timezone(\n                    datetime.combine(start_date, time.min),\n                    False\n                )\n            if stop_date:\n                stop_date = handle_timezone(\n                    datetime.combine(stop_date, time.max),\n                    False\n                )\n            return slice(start_date, stop_date)\n        return None\n\n\nclass DateTimeRangeField(RangeField):\n    widget = DateRangeWidget\n\n    def __init__(self, *args, **kwargs):\n        fields = (\n            forms.DateTimeField(),\n            forms.DateTimeField())\n        super().__init__(fields, *args, **kwargs)\n\n\nclass TimeRangeField(RangeField):\n    widget = DateRangeWidget\n\n    def __init__(self, *args, **kwargs):\n        fields = (\n            forms.TimeField(),\n            forms.TimeField())\n        super().__init__(fields, *args, **kwargs)\n\n\nclass Lookup(namedtuple('Lookup', ('value', 'lookup_expr'))):\n    def __new__(cls, value, lookup_expr):\n        if value in EMPTY_VALUES or lookup_expr in EMPTY_VALUES:\n            raise ValueError(\n                \"Empty values ([], (), {}, '', None) are not \"\n                \"valid Lookup arguments. Return None instead.\"\n            )\n\n        return super().__new__(cls, value, lookup_expr)\n\n\nclass LookupChoiceField(forms.MultiValueField):\n    default_error_messages = {\n        'lookup_required': _('Select a lookup.'),\n    }\n\n    def __init__(self, field, lookup_choices, *args, **kwargs):\n        empty_label = kwargs.pop('empty_label', settings.EMPTY_CHOICE_LABEL)\n        fields = (field, ChoiceField(choices=lookup_choices, empty_label=empty_label))\n        widget = LookupChoiceWidget(widgets=[f.widget for f in fields])\n        kwargs['widget'] = widget\n        kwargs['help_text'] = field.help_text\n        super().__init__(fields, *args, **kwargs)\n\n    def compress(self, data_list):\n        if len(data_list) == 2:\n            value, lookup_expr = data_list\n            if value not in EMPTY_VALUES:\n                if lookup_expr not in EMPTY_VALUES:\n                    return Lookup(value=value, lookup_expr=lookup_expr)\n                else:\n                    raise forms.ValidationError(\n                        self.error_messages['lookup_required'],\n                        code='lookup_required')\n        return None\n\n\nclass IsoDateTimeField(forms.DateTimeField):\n    \"\"\"\n    Supports 'iso-8601' date format too which is out the scope of\n    the ``datetime.strptime`` standard library\n\n    # ISO 8601: ``http://www.w3.org/TR/NOTE-datetime``\n\n    Based on Gist example by David Medina https://gist.github.com/copitux/5773821\n    \"\"\"\n    ISO_8601 = 'iso-8601'\n    input_formats = [ISO_8601]\n\n    def strptime(self, value, format):\n        value = force_str(value)\n\n        if format == self.ISO_8601:\n            parsed = parse_datetime(value)\n            if parsed is None:  # Continue with other formats if doesn't match\n                raise ValueError\n            return handle_timezone(parsed)\n        return super().strptime(value, format)\n\n\nclass BaseCSVField(forms.Field):\n    \"\"\"\n    Base field for validating CSV types. Value validation is performed by\n    secondary base classes.\n\n    ex::\n        class IntegerCSVField(BaseCSVField, filters.IntegerField):\n            pass\n\n    \"\"\"\n    base_widget_class = BaseCSVWidget\n\n    def __init__(self, *args, **kwargs):\n        widget = kwargs.get('widget') or self.widget\n        kwargs['widget'] = self._get_widget_class(widget)\n\n        super().__init__(*args, **kwargs)\n\n    def _get_widget_class(self, widget):\n        # passthrough, allows for override\n        if isinstance(widget, BaseCSVWidget) or (\n                isinstance(widget, type) and\n                issubclass(widget, BaseCSVWidget)):\n            return widget\n\n        # complain since we are unable to reconstruct widget instances\n        assert isinstance(widget, type), \\\n            \"'%s.widget' must be a widget class, not %s.\" \\\n            % (self.__class__.__name__, repr(widget))\n\n        bases = (self.base_widget_class, widget, )\n        return type(str('CSV%s' % widget.__name__), bases, {})\n\n    def clean(self, value):\n        if value is None:\n            return None\n        return [super(BaseCSVField, self).clean(v) for v in value]\n\n\nclass BaseRangeField(BaseCSVField):\n    # Force use of text input, as range must always have two inputs. A date\n    # input would only allow a user to input one value and would always fail.\n    widget = CSVWidget\n\n    default_error_messages = {\n        'invalid_values': _('Range query expects two values.')\n    }\n\n    def clean(self, value):\n        value = super().clean(value)\n\n        assert value is None or isinstance(value, list)\n\n        if value and len(value) != 2:\n            raise forms.ValidationError(\n                self.error_messages['invalid_values'],\n                code='invalid_values')\n\n        return value\n\n\nclass ChoiceIterator(object):\n    # Emulates the behavior of ModelChoiceIterator, but instead wraps\n    # the field's _choices iterable.\n\n    def __init__(self, field, choices):\n        self.field = field\n        self.choices = choices\n\n    def __iter__(self):\n        if self.field.empty_label is not None:\n            yield (\"\", self.field.empty_label)\n        if self.field.null_label is not None:\n            yield (self.field.null_value, self.field.null_label)\n\n        # Python 2 lacks 'yield from'\n        for choice in self.choices:\n            yield choice\n\n    def __len__(self):\n        add = 1 if self.field.empty_label is not None else 0\n        add += 1 if self.field.null_label is not None else 0\n        return len(self.choices) + add\n\n\nclass ModelChoiceIterator(forms.models.ModelChoiceIterator):\n    # Extends the base ModelChoiceIterator to add in 'null' choice handling.\n    # This is a bit verbose since we have to insert the null choice after the\n    # empty choice, but before the remainder of the choices.\n\n    def __iter__(self):\n        iterable = super().__iter__()\n\n        if self.field.empty_label is not None:\n            yield next(iterable)\n        if self.field.null_label is not None:\n            yield (self.field.null_value, self.field.null_label)\n\n        # Python 2 lacks 'yield from'\n        for value in iterable:\n            yield value\n\n    def __len__(self):\n        add = 1 if self.field.null_label is not None else 0\n        return super().__len__() + add\n\n\nclass ChoiceIteratorMixin(object):\n    def __init__(self, *args, **kwargs):\n        self.null_label = kwargs.pop('null_label', settings.NULL_CHOICE_LABEL)\n        self.null_value = kwargs.pop('null_value', settings.NULL_CHOICE_VALUE)\n\n        super().__init__(*args, **kwargs)\n\n    def _get_choices(self):\n        return super()._get_choices()\n\n    def _set_choices(self, value):\n        super()._set_choices(value)\n        value = self.iterator(self, self._choices)\n\n        self._choices = self.widget.choices = value\n    choices = property(_get_choices, _set_choices)\n\n\n# Unlike their Model* counterparts, forms.ChoiceField and forms.MultipleChoiceField do not set empty_label\nclass ChoiceField(ChoiceIteratorMixin, forms.ChoiceField):\n    iterator = ChoiceIterator\n\n    def __init__(self, *args, **kwargs):\n        self.empty_label = kwargs.pop('empty_label', settings.EMPTY_CHOICE_LABEL)\n        super().__init__(*args, **kwargs)\n\n\nclass MultipleChoiceField(ChoiceIteratorMixin, forms.MultipleChoiceField):\n    iterator = ChoiceIterator\n\n    def __init__(self, *args, **kwargs):\n        self.empty_label = None\n        super().__init__(*args, **kwargs)\n\n\nclass ModelChoiceField(ChoiceIteratorMixin, forms.ModelChoiceField):\n    iterator = ModelChoiceIterator\n\n    def to_python(self, value):\n        # bypass the queryset value check\n        if self.null_label is not None and value == self.null_value:\n            return value\n        return super().to_python(value)\n\n\nclass ModelMultipleChoiceField(ChoiceIteratorMixin, forms.ModelMultipleChoiceField):\n    iterator = ModelChoiceIterator\n\n    def _check_values(self, value):\n        null = self.null_label is not None and value and self.null_value in value\n        if null:  # remove the null value and any potential duplicates\n            value = [v for v in value if v != self.null_value]\n\n        result = list(super()._check_values(value))\n        result += [self.null_value] if null else []\n        return result\n"
  },
  {
    "path": "jet_django/deps/django_filters/filters.py",
    "content": "from collections import OrderedDict\nfrom datetime import timedelta\n\nfrom django import forms\nfrom django.db.models import Q\nfrom django.db.models.constants import LOOKUP_SEP\nfrom django.forms.utils import pretty_name\nfrom django.utils.itercompat import is_iterable\nfrom django.utils.timezone import now\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom .conf import settings\nfrom .constants import EMPTY_VALUES\nfrom .fields import (\n    BaseCSVField,\n    BaseRangeField,\n    ChoiceField,\n    DateRangeField,\n    DateTimeRangeField,\n    IsoDateTimeField,\n    LookupChoiceField,\n    ModelChoiceField,\n    ModelMultipleChoiceField,\n    MultipleChoiceField,\n    RangeField,\n    TimeRangeField\n)\nfrom .utils import get_model_field, label_for_filter\n\n__all__ = [\n    'AllValuesFilter',\n    'AllValuesMultipleFilter',\n    'BaseCSVFilter',\n    'BaseInFilter',\n    'BaseRangeFilter',\n    'BooleanFilter',\n    'CharFilter',\n    'ChoiceFilter',\n    'DateFilter',\n    'DateFromToRangeFilter',\n    'DateRangeFilter',\n    'DateTimeFilter',\n    'DateTimeFromToRangeFilter',\n    'DurationFilter',\n    'Filter',\n    'IsoDateTimeFilter',\n    'LookupChoiceFilter',\n    'ModelChoiceFilter',\n    'ModelMultipleChoiceFilter',\n    'MultipleChoiceFilter',\n    'NumberFilter',\n    'NumericRangeFilter',\n    'OrderingFilter',\n    'RangeFilter',\n    'TimeFilter',\n    'TimeRangeFilter',\n    'TypedChoiceFilter',\n    'TypedMultipleChoiceFilter',\n    'UUIDFilter',\n]\n\n\nclass Filter(object):\n    creation_counter = 0\n    field_class = forms.Field\n\n    def __init__(self, field_name=None, lookup_expr='exact', *, label=None,\n                 method=None, distinct=False, exclude=False, **kwargs):\n        self.field_name = field_name\n        self.lookup_expr = lookup_expr\n        self.label = label\n        self.method = method\n        self.distinct = distinct\n        self.exclude = exclude\n\n        self.extra = kwargs\n        self.extra.setdefault('required', False)\n\n        self.creation_counter = Filter.creation_counter\n        Filter.creation_counter += 1\n\n        # TODO: remove assertion in 2.1\n        assert not isinstance(self.lookup_expr, (type(None), list)), \\\n            \"The `lookup_expr` argument no longer accepts `None` or a list of \" \\\n            \"expressions. Use the `LookupChoiceFilter` instead. See: \" \\\n            \"https://django-filter.readthedocs.io/en/master/guide/migration.html\"\n\n    def get_method(self, qs):\n        \"\"\"Return filter method based on whether we're excluding\n           or simply filtering.\n        \"\"\"\n        return qs.exclude if self.exclude else qs.filter\n\n    def method():\n        \"\"\"\n        Filter method needs to be lazily resolved, as it may be dependent on\n        the 'parent' FilterSet.\n        \"\"\"\n        def fget(self):\n            return self._method\n\n        def fset(self, value):\n            self._method = value\n\n            # clear existing FilterMethod\n            if isinstance(self.filter, FilterMethod):\n                del self.filter\n\n            # override filter w/ FilterMethod.\n            if value is not None:\n                self.filter = FilterMethod(self)\n\n        return locals()\n    method = property(**method())\n\n    def label():\n        def fget(self):\n            if self._label is None and hasattr(self, 'model'):\n                self._label = label_for_filter(\n                    self.model, self.field_name, self.lookup_expr, self.exclude\n                )\n            return self._label\n\n        def fset(self, value):\n            self._label = value\n\n        return locals()\n    label = property(**label())\n\n    @property\n    def field(self):\n        if not hasattr(self, '_field'):\n            field_kwargs = self.extra.copy()\n\n            if settings.DISABLE_HELP_TEXT:\n                field_kwargs.pop('help_text', None)\n\n            self._field = self.field_class(label=self.label, **field_kwargs)\n        return self._field\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n        if self.distinct:\n            qs = qs.distinct()\n        lookup = '%s__%s' % (self.field_name, self.lookup_expr)\n        qs = self.get_method(qs)(**{lookup: value})\n        return qs\n\n\nclass CharFilter(Filter):\n    field_class = forms.CharField\n\n\nclass BooleanFilter(Filter):\n    field_class = forms.NullBooleanField\n\n\nclass ChoiceFilter(Filter):\n    field_class = ChoiceField\n\n    def __init__(self, *args, **kwargs):\n        self.null_value = kwargs.get('null_value', settings.NULL_CHOICE_VALUE)\n        super().__init__(*args, **kwargs)\n\n    def filter(self, qs, value):\n        if value != self.null_value:\n            return super().filter(qs, value)\n\n        qs = self.get_method(qs)(**{'%s__%s' % (self.field_name, self.lookup_expr): None})\n        return qs.distinct() if self.distinct else qs\n\n\nclass TypedChoiceFilter(Filter):\n    field_class = forms.TypedChoiceField\n\n\nclass UUIDFilter(Filter):\n    field_class = forms.UUIDField\n\n\nclass MultipleChoiceFilter(Filter):\n    \"\"\"\n    This filter performs OR(by default) or AND(using conjoined=True) query\n    on the selected options.\n\n    Advanced usage\n    --------------\n    Depending on your application logic, when all or no choices are selected,\n    filtering may be a no-operation. In this case you may wish to avoid the\n    filtering overhead, particularly if using a `distinct` call.\n\n    You can override `get_filter_predicate` to use a custom filter.\n    By default it will use the filter's name for the key, and the value will\n    be the model object - or in case of passing in `to_field_name` the\n    value of that attribute on the model.\n\n    Set `always_filter` to `False` after instantiation to enable the default\n    `is_noop` test. You can override `is_noop` if you need a different test\n    for your application.\n\n    `distinct` defaults to `True` as to-many relationships will generally\n    require this.\n    \"\"\"\n    field_class = MultipleChoiceField\n\n    always_filter = True\n\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('distinct', True)\n        self.conjoined = kwargs.pop('conjoined', False)\n        self.null_value = kwargs.get('null_value', settings.NULL_CHOICE_VALUE)\n        super().__init__(*args, **kwargs)\n\n    def is_noop(self, qs, value):\n        \"\"\"\n        Return `True` to short-circuit unnecessary and potentially slow\n        filtering.\n        \"\"\"\n        if self.always_filter:\n            return False\n\n        # A reasonable default for being a noop...\n        if self.extra.get('required') and len(value) == len(self.field.choices):\n            return True\n\n        return False\n\n    def filter(self, qs, value):\n        if not value:\n            # Even though not a noop, no point filtering if empty.\n            return qs\n\n        if self.is_noop(qs, value):\n            return qs\n\n        if not self.conjoined:\n            q = Q()\n        for v in set(value):\n            if v == self.null_value:\n                v = None\n            predicate = self.get_filter_predicate(v)\n            if self.conjoined:\n                qs = self.get_method(qs)(**predicate)\n            else:\n                q |= Q(**predicate)\n\n        if not self.conjoined:\n            qs = self.get_method(qs)(q)\n\n        return qs.distinct() if self.distinct else qs\n\n    def get_filter_predicate(self, v):\n        try:\n            return {self.field_name: getattr(v, self.field.to_field_name)}\n        except (AttributeError, TypeError):\n            return {self.field_name: v}\n\n\nclass TypedMultipleChoiceFilter(MultipleChoiceFilter):\n    field_class = forms.TypedMultipleChoiceField\n\n\nclass DateFilter(Filter):\n    field_class = forms.DateField\n\n\nclass DateTimeFilter(Filter):\n    field_class = forms.DateTimeField\n\n\nclass IsoDateTimeFilter(DateTimeFilter):\n    \"\"\"\n    Uses IsoDateTimeField to support filtering on ISO 8601 formated datetimes.\n\n    For context see:\n\n    * https://code.djangoproject.com/ticket/23448\n    * https://github.com/tomchristie/django-rest-framework/issues/1338\n    * https://github.com/alex/django-filter/pull/264\n    \"\"\"\n    field_class = IsoDateTimeField\n\n\nclass TimeFilter(Filter):\n    field_class = forms.TimeField\n\n\nclass DurationFilter(Filter):\n    field_class = forms.DurationField\n\n\nclass QuerySetRequestMixin(object):\n    \"\"\"\n    Add callable functionality to filters that support the ``queryset``\n    argument. If the ``queryset`` is callable, then it **must** accept the\n    ``request`` object as a single argument.\n\n    This is useful for filtering querysets by properties on the ``request``\n    object, such as the user.\n\n    Example::\n\n        def departments(request):\n            company = request.user.company\n            return company.department_set.all()\n\n        class EmployeeFilter(filters.FilterSet):\n            department = filters.ModelChoiceFilter(queryset=departments)\n            ...\n\n    The above example restricts the set of departments to those in the logged-in\n    user's associated company.\n\n    \"\"\"\n    def __init__(self, *args, **kwargs):\n        self.queryset = kwargs.get('queryset')\n        super().__init__(*args, **kwargs)\n\n    def get_request(self):\n        try:\n            return self.parent.request\n        except AttributeError:\n            return None\n\n    def get_queryset(self, request):\n        queryset = self.queryset\n\n        if callable(queryset):\n            return queryset(request)\n        return queryset\n\n    @property\n    def field(self):\n        request = self.get_request()\n        queryset = self.get_queryset(request)\n\n        if queryset is not None:\n            self.extra['queryset'] = queryset\n\n        return super().field\n\n\nclass ModelChoiceFilter(QuerySetRequestMixin, ChoiceFilter):\n    field_class = ModelChoiceField\n\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('empty_label', settings.EMPTY_CHOICE_LABEL)\n        super().__init__(*args, **kwargs)\n\n\nclass ModelMultipleChoiceFilter(QuerySetRequestMixin, MultipleChoiceFilter):\n    field_class = ModelMultipleChoiceField\n\n\nclass NumberFilter(Filter):\n    field_class = forms.DecimalField\n\n\nclass NumericRangeFilter(Filter):\n    field_class = RangeField\n\n    def filter(self, qs, value):\n        if value:\n            if value.start is not None and value.stop is not None:\n                value = (value.start, value.stop)\n            elif value.start is not None:\n                self.lookup_expr = 'startswith'\n                value = value.start\n            elif value.stop is not None:\n                self.lookup_expr = 'endswith'\n                value = value.stop\n\n        return super().filter(qs, value)\n\n\nclass RangeFilter(Filter):\n    field_class = RangeField\n\n    def filter(self, qs, value):\n        if value:\n            if value.start is not None and value.stop is not None:\n                self.lookup_expr = 'range'\n                value = (value.start, value.stop)\n            elif value.start is not None:\n                self.lookup_expr = 'gte'\n                value = value.start\n            elif value.stop is not None:\n                self.lookup_expr = 'lte'\n                value = value.stop\n\n        return super().filter(qs, value)\n\n\ndef _truncate(dt):\n    return dt.date()\n\n\nclass DateRangeFilter(ChoiceFilter):\n    choices = [\n        ('today', _('Today')),\n        ('yesterday', _('Yesterday')),\n        ('week', _('Past 7 days')),\n        ('month', _('This month')),\n        ('year', _('This year')),\n    ]\n\n    filters = {\n        'today': lambda qs, name: qs.filter(**{\n            '%s__year' % name: now().year,\n            '%s__month' % name: now().month,\n            '%s__day' % name: now().day\n        }),\n        'yesterday': lambda qs, name: qs.filter(**{\n            '%s__year' % name: (now() - timedelta(days=1)).year,\n            '%s__month' % name: (now() - timedelta(days=1)).month,\n            '%s__day' % name: (now() - timedelta(days=1)).day,\n        }),\n        'week': lambda qs, name: qs.filter(**{\n            '%s__gte' % name: _truncate(now() - timedelta(days=7)),\n            '%s__lt' % name: _truncate(now() + timedelta(days=1)),\n        }),\n        'month': lambda qs, name: qs.filter(**{\n            '%s__year' % name: now().year,\n            '%s__month' % name: now().month\n        }),\n        'year': lambda qs, name: qs.filter(**{\n            '%s__year' % name: now().year,\n        }),\n    }\n\n    def __init__(self, choices=None, filters=None, *args, **kwargs):\n        if choices is not None:\n            self.choices = choices\n        if filters is not None:\n            self.filters = filters\n\n        unique = set([x[0] for x in self.choices]) ^ set(self.filters)\n        assert not unique, \\\n            \"Keys must be present in both 'choices' and 'filters'. Missing keys: \" \\\n            \"'%s'\" % ', '.join(sorted(unique))\n\n        # TODO: remove assertion in 2.1\n        assert not hasattr(self, 'options'), \\\n            \"The 'options' attribute has been replaced by 'choices' and 'filters'. \" \\\n            \"See: https://django-filter.readthedocs.io/en/master/guide/migration.html\"\n\n        # null choice not relevant\n        kwargs.setdefault('null_label', None)\n        super().__init__(choices=self.choices, *args, **kwargs)\n\n    def filter(self, qs, value):\n        if not value:\n            return qs\n\n        assert value in self.filters\n\n        qs = self.filters[value](qs, self.field_name)\n        return qs.distinct() if self.distinct else qs\n\n\nclass DateFromToRangeFilter(RangeFilter):\n    field_class = DateRangeField\n\n\nclass DateTimeFromToRangeFilter(RangeFilter):\n    field_class = DateTimeRangeField\n\n\nclass TimeRangeFilter(RangeFilter):\n    field_class = TimeRangeField\n\n\nclass AllValuesFilter(ChoiceFilter):\n    @property\n    def field(self):\n        qs = self.model._default_manager.distinct()\n        qs = qs.order_by(self.field_name).values_list(self.field_name, flat=True)\n        self.extra['choices'] = [(o, o) for o in qs]\n        return super().field\n\n\nclass AllValuesMultipleFilter(MultipleChoiceFilter):\n    @property\n    def field(self):\n        qs = self.model._default_manager.distinct()\n        qs = qs.order_by(self.field_name).values_list(self.field_name, flat=True)\n        self.extra['choices'] = [(o, o) for o in qs]\n        return super().field\n\n\nclass BaseCSVFilter(Filter):\n    \"\"\"\n    Base class for CSV type filters, such as IN and RANGE.\n    \"\"\"\n    base_field_class = BaseCSVField\n\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('help_text', _('Multiple values may be separated by commas.'))\n        super().__init__(*args, **kwargs)\n\n        class ConcreteCSVField(self.base_field_class, self.field_class):\n            pass\n        ConcreteCSVField.__name__ = self._field_class_name(\n            self.field_class, self.lookup_expr\n        )\n\n        self.field_class = ConcreteCSVField\n\n    @classmethod\n    def _field_class_name(cls, field_class, lookup_expr):\n        \"\"\"\n        Generate a suitable class name for the concrete field class. This is not\n        completely reliable, as not all field class names are of the format\n        <Type>Field.\n\n        ex::\n\n            BaseCSVFilter._field_class_name(DateTimeField, 'year__in')\n\n            returns 'DateTimeYearInField'\n\n        \"\"\"\n        # DateTimeField => DateTime\n        type_name = field_class.__name__\n        if type_name.endswith('Field'):\n            type_name = type_name[:-5]\n\n        # year__in => YearIn\n        parts = lookup_expr.split(LOOKUP_SEP)\n        expression_name = ''.join(p.capitalize() for p in parts)\n\n        # DateTimeYearInField\n        return str('%s%sField' % (type_name, expression_name))\n\n\nclass BaseInFilter(BaseCSVFilter):\n\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('lookup_expr', 'in')\n        super().__init__(*args, **kwargs)\n\n\nclass BaseRangeFilter(BaseCSVFilter):\n    base_field_class = BaseRangeField\n\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('lookup_expr', 'range')\n        super().__init__(*args, **kwargs)\n\n\nclass LookupChoiceFilter(Filter):\n    \"\"\"\n    A combined filter that allows users to select the lookup expression from a dropdown.\n\n    * ``lookup_choices`` is an optional argument that accepts multiple input\n      formats, and is ultimately normlized as the choices used in the lookup\n      dropdown. See ``.get_lookup_choices()`` for more information.\n\n    * ``field_class`` is an optional argument that allows you to set the inner\n      form field class used to validate the value. Default: ``forms.CharField``\n\n    ex::\n\n        price = django_filters.LookupChoiceFilter(\n            field_class=forms.DecimalField,\n            lookup_choices=[\n                ('exact', 'Equals'),\n                ('gt', 'Greater than'),\n                ('lt', 'Less than'),\n            ]\n        )\n\n    \"\"\"\n    field_class = forms.CharField\n    outer_class = LookupChoiceField\n\n    def __init__(self, field_name=None, lookup_choices=None, field_class=None, **kwargs):\n        self.empty_label = kwargs.pop('empty_label', settings.EMPTY_CHOICE_LABEL)\n\n        super(LookupChoiceFilter, self).__init__(field_name=field_name, **kwargs)\n\n        self.lookup_choices = lookup_choices\n        if field_class is not None:\n            self.field_class = field_class\n\n    @classmethod\n    def normalize_lookup(cls, lookup):\n        \"\"\"\n        Normalize the lookup into a tuple of ``(lookup expression, display value)``\n\n        If the ``lookup`` is already a tuple, the tuple is not altered.\n        If the ``lookup`` is a string, a tuple is returned with the lookup\n        expression used as the basis for the display value.\n\n        ex::\n\n            >>> LookupChoiceFilter.normalize_lookup(('exact', 'Equals'))\n            ('exact', 'Equals')\n\n            >>> LookupChoiceFilter.normalize_lookup('has_key')\n            ('has_key', 'Has key')\n\n        \"\"\"\n        if isinstance(lookup, str):\n            return (lookup, pretty_name(lookup))\n        return (lookup[0], lookup[1])\n\n    def get_lookup_choices(self):\n        \"\"\"\n        Get the lookup choices in a format suitable for ``django.forms.ChoiceField``.\n        If the filter is initialized with ``lookup_choices``, this value is normalized\n        and passed to the underlying ``LookupChoiceField``. If no choices are provided,\n        they are generated from the corresponding model field's registered lookups.\n        \"\"\"\n        lookups = self.lookup_choices\n        if lookups is None:\n            field = get_model_field(self.model, self.field_name)\n            lookups = field.get_lookups()\n\n        return [self.normalize_lookup(l) for l in lookups]\n\n    @property\n    def field(self):\n        if not hasattr(self, '_field'):\n            inner_field = super().field\n            lookups = self.get_lookup_choices()\n\n            self._field = self.outer_class(\n                inner_field, lookups,\n                label=self.label,\n                empty_label=self.empty_label,\n                required=self.extra['required'],\n            )\n\n        return self._field\n\n    def filter(self, qs, lookup):\n        if not lookup:\n            return super(LookupChoiceFilter, self).filter(qs, None)\n\n        self.lookup_expr = lookup.lookup_expr\n        return super(LookupChoiceFilter, self).filter(qs, lookup.value)\n\n\nclass OrderingFilter(BaseCSVFilter, ChoiceFilter):\n    \"\"\"\n    Enable queryset ordering. As an extension of ``ChoiceFilter`` it accepts\n    two additional arguments that are used to build the ordering choices.\n\n    * ``fields`` is a mapping of {model field name: parameter name}. The\n      parameter names are exposed in the choices and mask/alias the field\n      names used in the ``order_by()`` call. Similar to field ``choices``,\n      ``fields`` accepts the 'list of two-tuples' syntax that retains order.\n      ``fields`` may also just be an iterable of strings. In this case, the\n      field names simply double as the exposed parameter names.\n\n    * ``field_labels`` is an optional argument that allows you to customize\n      the display label for the corresponding parameter. It accepts a mapping\n      of {field name: human readable label}. Keep in mind that the key is the\n      field name, and not the exposed parameter name.\n\n    Additionally, you can just provide your own ``choices`` if you require\n    explicit control over the exposed options. For example, when you might\n    want to disable descending sort options.\n\n    This filter is also CSV-based, and accepts multiple ordering params. The\n    default select widget does not enable the use of this, but it is useful\n    for APIs.\n\n    \"\"\"\n    descending_fmt = _('%s (descending)')\n\n    def __init__(self, *args, **kwargs):\n        \"\"\"\n        ``fields`` may be either a mapping or an iterable.\n        ``field_labels`` must be a map of field names to display labels\n        \"\"\"\n        fields = kwargs.pop('fields', {})\n        fields = self.normalize_fields(fields)\n        field_labels = kwargs.pop('field_labels', {})\n\n        self.param_map = {v: k for k, v in fields.items()}\n\n        if 'choices' not in kwargs:\n            kwargs['choices'] = self.build_choices(fields, field_labels)\n\n        kwargs.setdefault('label', _('Ordering'))\n        kwargs.setdefault('help_text', '')\n        kwargs.setdefault('null_label', None)\n        super().__init__(*args, **kwargs)\n\n    def get_ordering_value(self, param):\n        descending = param.startswith('-')\n        param = param[1:] if descending else param\n        field_name = self.param_map.get(param, param)\n\n        return \"-%s\" % field_name if descending else field_name\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        ordering = [self.get_ordering_value(param) for param in value]\n        return qs.order_by(*ordering)\n\n    @classmethod\n    def normalize_fields(cls, fields):\n        \"\"\"\n        Normalize the fields into an ordered map of {field name: param name}\n        \"\"\"\n        # fields is a mapping, copy into new OrderedDict\n        if isinstance(fields, dict):\n            return OrderedDict(fields)\n\n        # convert iterable of values => iterable of pairs (field name, param name)\n        assert is_iterable(fields), \\\n            \"'fields' must be an iterable (e.g., a list, tuple, or mapping).\"\n\n        # fields is an iterable of field names\n        assert all(isinstance(field, str) or\n                   is_iterable(field) and len(field) == 2  # may need to be wrapped in parens\n                   for field in fields), \\\n            \"'fields' must contain strings or (field name, param name) pairs.\"\n\n        return OrderedDict([\n            (f, f) if isinstance(f, str) else f for f in fields\n        ])\n\n    def build_choices(self, fields, labels):\n        ascending = [\n            (param, labels.get(field, _(pretty_name(param))))\n            for field, param in fields.items()\n        ]\n        descending = [\n            ('-%s' % param, labels.get('-%s' % param, self.descending_fmt % label))\n            for param, label in ascending\n        ]\n\n        # interleave the ascending and descending choices\n        return [val for pair in zip(ascending, descending) for val in pair]\n\n\nclass FilterMethod(object):\n    \"\"\"\n    This helper is used to override Filter.filter() when a 'method' argument\n    is passed. It proxies the call to the actual method on the filter's parent.\n    \"\"\"\n    def __init__(self, filter_instance):\n        self.f = filter_instance\n\n    def __call__(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        return self.method(qs, self.f.field_name, value)\n\n    @property\n    def method(self):\n        \"\"\"\n        Resolve the method on the parent filterset.\n        \"\"\"\n        instance = self.f\n\n        # noop if 'method' is a function\n        if callable(instance.method):\n            return instance.method\n\n        # otherwise, method is the name of a method on the parent FilterSet.\n        assert hasattr(instance, 'parent'), \\\n            \"Filter '%s' must have a parent FilterSet to find '.%s()'\" %  \\\n            (instance.field_name, instance.method)\n\n        parent = instance.parent\n        method = getattr(parent, instance.method, None)\n\n        assert callable(method), \\\n            \"Expected parent FilterSet '%s.%s' to have a '.%s()' method.\" % \\\n            (parent.__class__.__module__, parent.__class__.__name__, instance.method)\n\n        return method\n"
  },
  {
    "path": "jet_django/deps/django_filters/filterset.py",
    "content": "import copy\nfrom collections import OrderedDict\n\nfrom django import forms\nfrom django.db import models\nfrom django.db.models.constants import LOOKUP_SEP\nfrom django.db.models.fields.related import (\n    ManyToManyRel,\n    ManyToOneRel,\n    OneToOneRel\n)\n\nfrom .conf import settings\nfrom .constants import ALL_FIELDS\nfrom .filters import (\n    BaseInFilter,\n    BaseRangeFilter,\n    BooleanFilter,\n    CharFilter,\n    ChoiceFilter,\n    DateFilter,\n    DateTimeFilter,\n    DurationFilter,\n    Filter,\n    ModelChoiceFilter,\n    ModelMultipleChoiceFilter,\n    NumberFilter,\n    TimeFilter,\n    UUIDFilter\n)\nfrom .utils import (\n    get_all_model_fields,\n    get_model_field,\n    resolve_field,\n    try_dbfield\n)\n\n\ndef remote_queryset(field):\n    \"\"\"\n    Get the queryset for the other side of a relationship. This works\n    for both `RelatedField`s and `ForignObjectRel`s.\n    \"\"\"\n    model = field.related_model\n\n    # Reverse relationships do not have choice limits\n    if not hasattr(field, 'get_limit_choices_to'):\n        return model._default_manager.all()\n\n    limit_choices_to = field.get_limit_choices_to()\n    return model._default_manager.complex_filter(limit_choices_to)\n\n\nclass FilterSetOptions(object):\n    def __init__(self, options=None):\n        self.model = getattr(options, 'model', None)\n        self.fields = getattr(options, 'fields', None)\n        self.exclude = getattr(options, 'exclude', None)\n\n        self.filter_overrides = getattr(options, 'filter_overrides', {})\n\n        self.form = getattr(options, 'form', forms.Form)\n\n\nclass FilterSetMetaclass(type):\n    def __new__(cls, name, bases, attrs):\n        attrs['declared_filters'] = cls.get_declared_filters(bases, attrs)\n\n        new_class = super().__new__(cls, name, bases, attrs)\n        new_class._meta = FilterSetOptions(getattr(new_class, 'Meta', None))\n        new_class.base_filters = new_class.get_filters()\n\n        # TODO: remove assertion in 2.1\n        assert not hasattr(new_class, 'filter_for_reverse_field'), (\n            \"`%(cls)s.filter_for_reverse_field` has been removed. \"\n            \"`%(cls)s.filter_for_field` now generates filters for reverse fields. \"\n            \"See: https://django-filter.readthedocs.io/en/master/guide/migration.html\"\n            % {'cls': new_class.__name__}\n        )\n\n        return new_class\n\n    @classmethod\n    def get_declared_filters(cls, bases, attrs):\n        filters = [\n            (filter_name, attrs.pop(filter_name))\n            for filter_name, obj in list(attrs.items())\n            if isinstance(obj, Filter)\n        ]\n\n        # Default the `filter.field_name` to the attribute name on the filterset\n        for filter_name, f in filters:\n            if getattr(f, 'field_name', None) is None:\n                f.field_name = filter_name\n\n        filters.sort(key=lambda x: x[1].creation_counter)\n\n        # merge declared filters from base classes\n        for base in reversed(bases):\n            if hasattr(base, 'declared_filters'):\n                filters = [\n                    (name, f) for name, f\n                    in base.declared_filters.items()\n                    if name not in attrs\n                ] + filters\n\n        return OrderedDict(filters)\n\n\nFILTER_FOR_DBFIELD_DEFAULTS = {\n    models.AutoField:                   {'filter_class': NumberFilter},\n    models.CharField:                   {'filter_class': CharFilter},\n    models.TextField:                   {'filter_class': CharFilter},\n    models.BooleanField:                {'filter_class': BooleanFilter},\n    models.DateField:                   {'filter_class': DateFilter},\n    models.DateTimeField:               {'filter_class': DateTimeFilter},\n    models.TimeField:                   {'filter_class': TimeFilter},\n    models.DurationField:               {'filter_class': DurationFilter},\n    models.DecimalField:                {'filter_class': NumberFilter},\n    models.SmallIntegerField:           {'filter_class': NumberFilter},\n    models.IntegerField:                {'filter_class': NumberFilter},\n    models.PositiveIntegerField:        {'filter_class': NumberFilter},\n    models.PositiveSmallIntegerField:   {'filter_class': NumberFilter},\n    models.FloatField:                  {'filter_class': NumberFilter},\n    models.NullBooleanField:            {'filter_class': BooleanFilter},\n    models.SlugField:                   {'filter_class': CharFilter},\n    models.EmailField:                  {'filter_class': CharFilter},\n    models.FilePathField:               {'filter_class': CharFilter},\n    models.URLField:                    {'filter_class': CharFilter},\n    models.GenericIPAddressField:       {'filter_class': CharFilter},\n    models.CommaSeparatedIntegerField:  {'filter_class': CharFilter},\n    models.UUIDField:                   {'filter_class': UUIDFilter},\n\n    # Forward relationships\n    models.OneToOneField: {\n        'filter_class': ModelChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n            'to_field_name': f.remote_field.field_name,\n            'null_label': settings.NULL_CHOICE_LABEL if f.null else None,\n        }\n    },\n    models.ForeignKey: {\n        'filter_class': ModelChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n            'to_field_name': f.remote_field.field_name,\n            'null_label': settings.NULL_CHOICE_LABEL if f.null else None,\n        }\n    },\n    models.ManyToManyField: {\n        'filter_class': ModelMultipleChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n        }\n    },\n\n    # Reverse relationships\n    OneToOneRel: {\n        'filter_class': ModelChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n            'null_label': settings.NULL_CHOICE_LABEL if f.null else None,\n        }\n    },\n    ManyToOneRel: {\n        'filter_class': ModelMultipleChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n        }\n    },\n    ManyToManyRel: {\n        'filter_class': ModelMultipleChoiceFilter,\n        'extra': lambda f: {\n            'queryset': remote_queryset(f),\n        }\n    },\n}\n\n\nclass BaseFilterSet(object):\n    FILTER_DEFAULTS = FILTER_FOR_DBFIELD_DEFAULTS\n\n    def __init__(self, data=None, queryset=None, *, request=None, prefix=None):\n        if queryset is None:\n            queryset = self._meta.model._default_manager.all()\n        model = queryset.model\n\n        self.is_bound = data is not None\n        self.data = data or {}\n        self.queryset = queryset\n        self.request = request\n        self.form_prefix = prefix\n\n        self.filters = copy.deepcopy(self.base_filters)\n\n        # propagate the model and filterset to the filters\n        for filter_ in self.filters.values():\n            filter_.model = model\n            filter_.parent = self\n\n    def is_valid(self):\n        \"\"\"\n        Return True if the underlying form has no errors, or False otherwise.\n        \"\"\"\n        return self.is_bound and self.form.is_valid()\n\n    @property\n    def errors(self):\n        \"\"\"\n        Return an ErrorDict for the data provided for the underlying form.\n        \"\"\"\n        return self.form.errors\n\n    def filter_queryset(self, queryset):\n        \"\"\"\n        Filter the queryset with the underlying form's `cleaned_data`. You must\n        call `is_valid()` or `errors` before calling this method.\n\n        This method should be overridden if additional filtering needs to be\n        applied to the queryset before it is cached.\n        \"\"\"\n        for name, value in self.form.cleaned_data.items():\n            queryset = self.filters[name].filter(queryset, value)\n            assert isinstance(queryset, models.QuerySet), \\\n                \"Expected '%s.%s' to return a QuerySet, but got a %s instead.\" \\\n                % (type(self).__name__, name, type(queryset).__name__)\n        return queryset\n\n    @property\n    def qs(self):\n        if not hasattr(self, '_qs'):\n            qs = self.queryset.all()\n            if self.is_bound:\n                # ensure form validation before filtering\n                self.errors\n                qs = self.filter_queryset(qs)\n            self._qs = qs\n        return self._qs\n\n    def get_form_class(self):\n        \"\"\"\n        Returns a django Form suitable of validating the filterset data.\n\n        This method should be overridden if the form class needs to be\n        customized relative to the filterset instance.\n        \"\"\"\n        fields = OrderedDict([\n            (name, filter_.field)\n            for name, filter_ in self.filters.items()])\n\n        return type(str('%sForm' % self.__class__.__name__),\n                    (self._meta.form,), fields)\n\n    @property\n    def form(self):\n        if not hasattr(self, '_form'):\n            Form = self.get_form_class()\n            if self.is_bound:\n                self._form = Form(self.data, prefix=self.form_prefix)\n            else:\n                self._form = Form(prefix=self.form_prefix)\n        return self._form\n\n    @classmethod\n    def get_fields(cls):\n        \"\"\"\n        Resolve the 'fields' argument that should be used for generating filters on the\n        filterset. This is 'Meta.fields' sans the fields in 'Meta.exclude'.\n        \"\"\"\n        model = cls._meta.model\n        fields = cls._meta.fields\n        exclude = cls._meta.exclude\n\n        assert not (fields is None and exclude is None), \\\n            \"Setting 'Meta.model' without either 'Meta.fields' or 'Meta.exclude' \" \\\n            \"has been deprecated since 0.15.0 and is now disallowed. Add an explicit \" \\\n            \"'Meta.fields' or 'Meta.exclude' to the %s class.\" % cls.__name__\n\n        # Setting exclude with no fields implies all other fields.\n        if exclude is not None and fields is None:\n            fields = ALL_FIELDS\n\n        # Resolve ALL_FIELDS into all fields for the filterset's model.\n        if fields == ALL_FIELDS:\n            fields = get_all_model_fields(model)\n\n        # Remove excluded fields\n        exclude = exclude or []\n        if not isinstance(fields, dict):\n            fields = [(f, ['exact']) for f in fields if f not in exclude]\n        else:\n            fields = [(f, lookups) for f, lookups in fields.items() if f not in exclude]\n\n        return OrderedDict(fields)\n\n    @classmethod\n    def get_filter_name(cls, field_name, lookup_expr):\n        \"\"\"\n        Combine a field name and lookup expression into a usable filter name.\n        Exact lookups are the implicit default, so \"exact\" is stripped from the\n        end of the filter name.\n        \"\"\"\n        filter_name = LOOKUP_SEP.join([field_name, lookup_expr])\n\n        # This also works with transformed exact lookups, such as 'date__exact'\n        _exact = LOOKUP_SEP + 'exact'\n        if filter_name.endswith(_exact):\n            filter_name = filter_name[:-len(_exact)]\n\n        return filter_name\n\n    @classmethod\n    def get_filters(cls):\n        \"\"\"\n        Get all filters for the filterset. This is the combination of declared and\n        generated filters.\n        \"\"\"\n\n        # No model specified - skip filter generation\n        if not cls._meta.model:\n            return cls.declared_filters.copy()\n\n        # Determine the filters that should be included on the filterset.\n        filters = OrderedDict()\n        fields = cls.get_fields()\n        undefined = []\n\n        for field_name, lookups in fields.items():\n            field = get_model_field(cls._meta.model, field_name)\n\n            # warn if the field doesn't exist.\n            if field is None:\n                undefined.append(field_name)\n\n            for lookup_expr in lookups:\n                filter_name = cls.get_filter_name(field_name, lookup_expr)\n\n                # If the filter is explicitly declared on the class, skip generation\n                if filter_name in cls.declared_filters:\n                    filters[filter_name] = cls.declared_filters[filter_name]\n                    continue\n\n                if field is not None:\n                    filters[filter_name] = cls.filter_for_field(field, field_name, lookup_expr)\n\n        # filter out declared filters\n        undefined = [f for f in undefined if f not in cls.declared_filters]\n        if undefined:\n            raise TypeError(\n                \"'Meta.fields' contains fields that are not defined on this FilterSet: \"\n                \"%s\" % ', '.join(undefined)\n            )\n\n        # Add in declared filters. This is necessary since we don't enforce adding\n        # declared filters to the 'Meta.fields' option\n        filters.update(cls.declared_filters)\n        return filters\n\n    @classmethod\n    def filter_for_field(cls, field, field_name, lookup_expr='exact'):\n        field, lookup_type = resolve_field(field, lookup_expr)\n\n        default = {\n            'field_name': field_name,\n            'lookup_expr': lookup_expr,\n        }\n\n        filter_class, params = cls.filter_for_lookup(field, lookup_type)\n        default.update(params)\n\n        assert filter_class is not None, (\n            \"%s resolved field '%s' with '%s' lookup to an unrecognized field \"\n            \"type %s. Try adding an override to 'Meta.filter_overrides'. See: \"\n            \"https://django-filter.readthedocs.io/en/master/ref/filterset.html\"\n            \"#customise-filter-generation-with-filter-overrides\"\n        ) % (cls.__name__, field_name, lookup_expr, field.__class__.__name__)\n\n        return filter_class(**default)\n\n    @classmethod\n    def filter_for_lookup(cls, field, lookup_type):\n        DEFAULTS = dict(cls.FILTER_DEFAULTS)\n        if hasattr(cls, '_meta'):\n            DEFAULTS.update(cls._meta.filter_overrides)\n\n        data = try_dbfield(DEFAULTS.get, field.__class__) or {}\n        filter_class = data.get('filter_class')\n        params = data.get('extra', lambda field: {})(field)\n\n        # if there is no filter class, exit early\n        if not filter_class:\n            return None, {}\n\n        # perform lookup specific checks\n        if lookup_type == 'exact' and getattr(field, 'choices', None):\n            return ChoiceFilter, {'choices': field.choices}\n\n        if lookup_type == 'isnull':\n            data = try_dbfield(DEFAULTS.get, models.BooleanField)\n\n            filter_class = data.get('filter_class')\n            params = data.get('extra', lambda field: {})(field)\n            return filter_class, params\n\n        if lookup_type == 'in':\n            class ConcreteInFilter(BaseInFilter, filter_class):\n                pass\n            ConcreteInFilter.__name__ = cls._csv_filter_class_name(\n                filter_class, lookup_type\n            )\n\n            return ConcreteInFilter, params\n\n        if lookup_type == 'range':\n            class ConcreteRangeFilter(BaseRangeFilter, filter_class):\n                pass\n            ConcreteRangeFilter.__name__ = cls._csv_filter_class_name(\n                filter_class, lookup_type\n            )\n\n            return ConcreteRangeFilter, params\n\n        return filter_class, params\n\n    @classmethod\n    def _csv_filter_class_name(cls, filter_class, lookup_type):\n        \"\"\"\n        Generate a suitable class name for a concrete filter class. This is not\n        completely reliable, as not all filter class names are of the format\n        <Type>Filter.\n\n        ex::\n\n            FilterSet._csv_filter_class_name(DateTimeFilter, 'in')\n\n            returns 'DateTimeInFilter'\n\n        \"\"\"\n        # DateTimeFilter => DateTime\n        type_name = filter_class.__name__\n        if type_name.endswith('Filter'):\n            type_name = type_name[:-6]\n\n        # in => In\n        lookup_name = lookup_type.capitalize()\n\n        # DateTimeInFilter\n        return str('%s%sFilter' % (type_name, lookup_name))\n\n\nclass FilterSet(BaseFilterSet, metaclass=FilterSetMetaclass):\n    pass\n\n\ndef filterset_factory(model, fields=ALL_FIELDS):\n    meta = type(str('Meta'), (object,), {'model': model, 'fields': fields})\n    filterset = type(str('%sFilterSet' % model._meta.object_name),\n                     (FilterSet,), {'Meta': meta})\n    return filterset\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/be/LC_MESSAGES/django.po",
    "content": "#\n#: conf.py:27 conf.py:28 conf.py:41\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-24 18:51+0500\\n\"\n\"PO-Revision-Date: 2016-09-29 11:47+0300\\n\"\n\"Last-Translator: Eugena Mikhaylikova <eugena.mihailikova@gmail.com>\\n\"\n\"Language-Team: TextTempearture\\n\"\n\"Language: be\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n\"\n\"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Poedit 1.8.9\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"дата\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"год\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"месяц\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"дзень\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"дзень тыдня\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"гадзіну\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"хвіліна\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"секунда\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"змяшчае\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"у\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"больш чым\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"больш або роўна\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"менш чым\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"менш або роўна\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"пачынаецца\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"заканчваецца\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"у дыяпазоне\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"адпавядае рэгулярнаму выразу\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"пошук\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"змяшчаецца ў\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"перакрываецца\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"мае ключ\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"мае ключы\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"мае любыя ключы\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Запыт дыяпазону чакае два значэння.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Любая дата\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Сёння\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Мінулыя 7 дзён\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"За гэты месяц\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"У гэтым годзе\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Учора\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Некалькі значэнняў могуць быць падзеленыя коскамі.\"\n\n#: filters.py:591\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (па змяншэнні)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Парадак\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Адправіць\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Фільтры па палях\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"выключаючы\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Усе\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Не было прапанавана\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Ды\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Няма\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/cs/LC_MESSAGES/django.po",
    "content": "#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-24 11:03+0500\\n\"\n\"PO-Revision-Date: 2016-09-29 11:47+0300\\n\"\n\"Last-Translator: Eugena Mikhaylikova <eugena.mihailikova@gmail.com>\\n\"\n\"Language-Team: TextTempearture\\n\"\n\"Language: cs\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\"X-Generator: Poedit 1.8.9\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"datum\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"rok\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"měsíc\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"den\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"den v týdnu\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"hodinu\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"minutu\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"vteřina\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"obsahuje\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"v\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"více než\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"větší nebo roven\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"méně než\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"menší nebo rovné\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"začíná\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"končí\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"v rozsahu\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"odpovídá normálnímu výrazu\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"vyhledávání\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"je obsažen v\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"překrývají\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"má klíč\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"má klíče\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"má nějaké klíče\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Rozsah dotazu očekává dvě hodnoty.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Jakékoliv datum\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Dnes\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Posledních 7 dní\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"Tento měsíc\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"Tento rok\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Včera\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Více hodnot lze oddělit čárkami.\"\n\n#: filters.py:591\nmsgid \"%s (descending)\"\nmsgstr \"%s (sestupně)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Řád z\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Odeslat\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Filtry na polích\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"s výjimkou\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Všechno\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Není nastaveno\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Ano\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Ne\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/da/LC_MESSAGES/django.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: Poedit 2.0.1\\n\"\n\"Project-Id-Version: django-filter\\n\"\n\"Language: da\\n\"\n\"Last-Translator: Danni Randeris <danni@danniranderis.dk>\\n\"\n\"Language-Team: Danni Randeris <danni@danniranderis.dk>\\n\"\n\"POT-Creation-Date: 2017-10-28\\n\"\n\"PO-Revision-Date: 2017-10-28\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"dato\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"år\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"måned\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"dag\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"ugedag\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"time\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"minut\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"sekund\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"indeholder\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"er i\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"er større end\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"er større end eller lig med\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"er mindre end\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"er mindre end eller lig med\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"starter med\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"slutter med\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"er i intervallet\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"matcher regex\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"søg\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"er indeholdt af\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"overlapper\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"har string\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"har stringe\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"har hvilken som helst string\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Interval forespørgslen forventer to værdier.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Hvilken som helst dag\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"I dag\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Sidste 7 dage\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"Denne måned\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"Dette år\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"I går\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Flere værdier kan adskilles via komma.\"\n\n#: filters.py:591\nmsgid \"%s (descending)\"\nmsgstr \"%s (aftagende)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Sortering\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\n#, fuzzy\nmsgid \"Submit\"\nmsgstr \"Indsend\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\n#, fuzzy\nmsgid \"Field filters\"\nmsgstr \"Felt filtre\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"udelad\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Alle\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Ukendt\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Ja\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Nej\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/de/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#: conf.py:27 conf.py:28 conf.py:41\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-24 11:03+0500\\n\"\n\"PO-Revision-Date: 2013-08-10 12:29+0100\\n\"\n\"Last-Translator: Florian Apolloner <florian@apolloner.eu>\\n\"\n\"Language-Team: \\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.5.4\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"Daten\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"Jahr\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"Monat\"\n\n#: conf.py:20\n#, fuzzy\n#| msgid \"Today\"\nmsgid \"day\"\nmsgstr \"Heute\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"Wochentag\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"Stunde\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"Minute\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"zweite\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"enthält\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"ist in\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"ist größer als\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"ist größer oder gleich\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"ist kleiner als\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"ist kleiner oder gleich\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"beginnt mit\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"endet mit\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"ist in Reichweite\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"passt auf Regex\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"Suche\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"ist enthalten in\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"überlappen\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"hat Schlüssel\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"hat Schlüssel\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"hat irgendwelche Schlüssel\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Die Bereichsabfrage erwartet zwei Werte.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Alle Daten\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Heute\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Letzte 7 Tage\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"Diesen Monat\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"Dieses Jahr\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Gestern\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Mehrere Werte können durch Kommas getrennt sein.\"\n\n#: filters.py:591\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (absteigend)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Ordnung\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Einreichen\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Feldfilter\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"ausschließen\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Alle\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Unbekannte\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Ja\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Nein\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/el/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# Serafeim Papastefanos <spapas@gmail.com>, 2017.\n#\n#: .\\conf.py:27 .\\conf.py:28 .\\conf.py:41\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-11-16 10:06+0200\\n\"\n\"PO-Revision-Date: 2017-11-16 10:04+0200\\n\"\n\"Last-Translator: Serafeim Papastefanos <spapas@gmail.com>\\n\"\n\"Language-Team: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: de\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.6.5\\n\"\n\n#: .\\conf.py:17\nmsgid \"date\"\nmsgstr \"ημερομηνία\"\n\n#: .\\conf.py:18\nmsgid \"year\"\nmsgstr \"έτος\"\n\n#: .\\conf.py:19\nmsgid \"month\"\nmsgstr \"μήνας\"\n\n#: .\\conf.py:20\nmsgid \"day\"\nmsgstr \"ημέρα\"\n\n#: .\\conf.py:21\nmsgid \"week day\"\nmsgstr \"ημέρα της εβδομάδας\"\n\n#: .\\conf.py:22\nmsgid \"hour\"\nmsgstr \"ώρα\"\n\n#: .\\conf.py:23\nmsgid \"minute\"\nmsgstr \"λεπτό\"\n\n#: .\\conf.py:24\nmsgid \"second\"\nmsgstr \"δευτερόλεπτο\"\n\n#: .\\conf.py:29 .\\conf.py:30\nmsgid \"contains\"\nmsgstr \"περιέχει\"\n\n#: .\\conf.py:31\nmsgid \"is in\"\nmsgstr \"είναι εντός των\"\n\n#: .\\conf.py:32\nmsgid \"is greater than\"\nmsgstr \"είναι μεγαλύτερο από\"\n\n#: .\\conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"είναι μεγαλύτερο ή ίσο του\"\n\n#: .\\conf.py:34\nmsgid \"is less than\"\nmsgstr \"είναι μικρότερο από\"\n\n#: .\\conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"είναι μικρότερο ή ίσο του\"\n\n#: .\\conf.py:36 .\\conf.py:37\nmsgid \"starts with\"\nmsgstr \"ξεκινά με\"\n\n#: .\\conf.py:38 .\\conf.py:39\nmsgid \"ends with\"\nmsgstr \"τελειώνει με\"\n\n#: .\\conf.py:40\nmsgid \"is in range\"\nmsgstr \"είναι εντος του εύρους\"\n\n#: .\\conf.py:42 .\\conf.py:43\nmsgid \"matches regex\"\nmsgstr \"περιέχει regex\"\n\n#: .\\conf.py:44 .\\conf.py:52\nmsgid \"search\"\nmsgstr \"αναζήτηση\"\n\n#: .\\conf.py:47\nmsgid \"is contained by\"\nmsgstr \"περιέχεται σε\"\n\n#: .\\conf.py:48\nmsgid \"overlaps\"\nmsgstr \"επικαλύπτεται\"\n\n#: .\\conf.py:49\nmsgid \"has key\"\nmsgstr \"έχει το κλειδί\"\n\n#: .\\conf.py:50\nmsgid \"has keys\"\nmsgstr \"έχει τα κλειδιά\"\n\n#: .\\conf.py:51\nmsgid \"has any keys\"\nmsgstr \"έχει οποιαδήποτε κλειδιά\"\n\n#: .\\fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Το ερώτημα εύρους απαιτεί δύο τιμές,\"\n\n#: .\\filters.py:429\nmsgid \"Any date\"\nmsgstr \"Οποιαδήποτε ημερομηνία\"\n\n#: .\\filters.py:430\nmsgid \"Today\"\nmsgstr \"Σήμερα\"\n\n#: .\\filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Τις προηγούμενες 7 ημέρες\"\n\n#: .\\filters.py:439\nmsgid \"This month\"\nmsgstr \"Αυτό το μήνα\"\n\n#: .\\filters.py:443\nmsgid \"This year\"\nmsgstr \"Αυτό το έτος\"\n\n#: .\\filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Χτες\"\n\n#: .\\filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Οι πολλαπλές τιμές πρέπει να διαχωρίζονται με κόμμα.\"\n\n#: .\\filters.py:591\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (φθίνουσα\"\n\n#: .\\filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Ταξινόμηση\"\n\n#: .\\rest_framework\\filterset.py:30\n#: .\\templates\\django_filters\\rest_framework\\form.html:5\nmsgid \"Submit\"\nmsgstr \"Υποβολή\"\n\n#: .\\templates\\django_filters\\rest_framework\\crispy_form.html:4\n#: .\\templates\\django_filters\\rest_framework\\form.html:2\nmsgid \"Field filters\"\nmsgstr \"Φίλτρα πεδίων\"\n\n#: .\\utils.py:224\nmsgid \"exclude\"\nmsgstr \"απέκλεισε\"\n\n#: .\\widgets.py:57\nmsgid \"All\"\nmsgstr \"Όλα\"\n\n#: .\\widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Άγνωστο\"\n\n#: .\\widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Ναι\"\n\n#: .\\widgets.py:161\nmsgid \"No\"\nmsgstr \"Όχι\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/es_AR/LC_MESSAGES/django.po",
    "content": "# Django Filter translation.\n# Copyright (C) 2013\n# This file is distributed under the same license as the django_filter package.\n# Gonzalo Bustos, 2015.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: \\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-05 19:24+0200\\n\"\n\"PO-Revision-Date: 2015-10-11 20:53-0300\\n\"\n\"Last-Translator: Gonzalo Bustos\\n\"\n\"Language-Team: Spanish (Argentina)\\n\"\n\"Language: es_AR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\"X-Generator: Poedit 1.6.10\\n\"\n\n#: filters.py:51\nmsgid \"This is an exclusion filter\"\nmsgstr \"Este es un filtro de exclusión\"\n\n#: filters.py:158\nmsgid \"Any date\"\nmsgstr \"Cualquier fecha\"\n\n#: filters.py:159\nmsgid \"Today\"\nmsgstr \"Hoy\"\n\n#: filters.py:164\nmsgid \"Past 7 days\"\nmsgstr \"Últimos 7 días\"\n\n#: filters.py:168\nmsgid \"This month\"\nmsgstr \"Este mes\"\n\n#: filters.py:172\nmsgid \"This year\"\nmsgstr \"Este año\"\n\n#: widgets.py:63\nmsgid \"All\"\nmsgstr \"Todos\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/es_ES/LC_MESSAGES/django.po",
    "content": "# Django Filter translation.\n# Copyright (C) 2013\n# This file is distributed under the same license as the django_filter package.\n# Carlos Goce, 2017.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: \\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-01-26 20:32+0100\\n\"\n\"PO-Revision-Date: 2017-01-26 20:52+0100\\n\"\n\"Last-Translator: Carlos Goce\\n\"\n\"Language-Team: Spanish (España)\\n\"\n\"Language: es_ES\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: Poedit 1.8.11\\n\"\n\n#: conf.py:26\nmsgid \"date\"\nmsgstr \"fecha\"\n\n#: conf.py:27\nmsgid \"year\"\nmsgstr \"año\"\n\n#: conf.py:28\nmsgid \"month\"\nmsgstr \"mes\"\n\n#: conf.py:29\nmsgid \"day\"\nmsgstr \"día\"\n\n#: conf.py:30\nmsgid \"week day\"\nmsgstr \"día de la semana\"\n\n#: conf.py:31\nmsgid \"hour\"\nmsgstr \"hora\"\n\n#: conf.py:32\nmsgid \"minute\"\nmsgstr \"minuto\"\n\n#: conf.py:33\nmsgid \"second\"\nmsgstr \"segundo\"\n\n#: conf.py:38 conf.py:39\nmsgid \"contains\"\nmsgstr \"contiene\"\n\n#: conf.py:40\nmsgid \"is in\"\nmsgstr \"presente en\"\n\n#: conf.py:41\nmsgid \"is greater than\"\nmsgstr \"mayor que\"\n\n#: conf.py:42\nmsgid \"is greater than or equal to\"\nmsgstr \"mayor o igual que\"\n\n#: conf.py:43\nmsgid \"is less than\"\nmsgstr \"menor que\"\n\n#: conf.py:44\nmsgid \"is less than or equal to\"\nmsgstr \"menor o igual que\"\n\n#: conf.py:45 conf.py:46\nmsgid \"starts with\"\nmsgstr \"comienza por\"\n\n#: conf.py:47 conf.py:48\nmsgid \"ends with\"\nmsgstr \"termina por\"\n\n#: conf.py:49\nmsgid \"is in range\"\nmsgstr \"en el rango\"\n\n#: conf.py:51 conf.py:52\nmsgid \"matches regex\"\nmsgstr \"coincide con la expresión regular\"\n\n#: conf.py:53 conf.py:61\nmsgid \"search\"\nmsgstr \"buscar\"\n\n#: conf.py:56\nmsgid \"is contained by\"\nmsgstr \"contenido en\"\n\n#: conf.py:57\nmsgid \"overlaps\"\nmsgstr \"solapado\"\n\n#: conf.py:58\nmsgid \"has key\"\nmsgstr \"contiene la clave\"\n\n#: conf.py:59\nmsgid \"has keys\"\nmsgstr \"contiene las claves\"\n\n#: conf.py:60\nmsgid \"has any keys\"\nmsgstr \"contiene alguna de las claves\"\n\n#: fields.py:167\nmsgid \"Range query expects two values.\"\nmsgstr \"Consultar un rango requiere dos valores\"\n\n#: filters.py:443\nmsgid \"Any date\"\nmsgstr \"Cualquier fecha\"\n\n#: filters.py:444\nmsgid \"Today\"\nmsgstr \"Hoy\"\n\n#: filters.py:449\nmsgid \"Past 7 days\"\nmsgstr \"Últimos 7 días\"\n\n#: filters.py:453\nmsgid \"This month\"\nmsgstr \"Este mes\"\n\n#: filters.py:457\nmsgid \"This year\"\nmsgstr \"Este año\"\n\n#: filters.py:460\nmsgid \"Yesterday\"\nmsgstr \"Ayer\"\n\n#: filters.py:526\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Múltiples valores separados por comas.\"\n\n#: filters.py:605\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (descendente)\"\n\n#: filters.py:621\nmsgid \"Ordering\"\nmsgstr \"Ordenado\"\n\n#: utils.py:220\nmsgid \"exclude\"\nmsgstr \"excluye\"\n\n#: widgets.py:71\nmsgid \"All\"\nmsgstr \"Todo\"\n\n#: widgets.py:119\nmsgid \"Unknown\"\nmsgstr \"Desconocido\"\n\n#: widgets.py:120\nmsgid \"Yes\"\nmsgstr \"Sí\"\n\n#: widgets.py:121\nmsgid \"No\"\nmsgstr \"No\"\n\n#: rest_framework/filterset.py:31\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Enviar\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Filtros de campo\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/fr/LC_MESSAGES/django.po",
    "content": "# Django Filter translation.\n# Copyright (C) 2013\n# This file is distributed under the same license as the django_filter package.\n# Axel Haustant <noirbizarre@gmail.com>, 2013.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: PACKAGE VERSION\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-05 19:24+0200\\n\"\n\"PO-Revision-Date: 2013-07-05 19:24+0200\\n\"\n\"Last-Translator: Axel Haustant <noirbizarre@gmail.com>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: French\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: filters.py:51\nmsgid \"This is an exclusion filter\"\nmsgstr \"Ceci est un filtre d'exclusion\"\n\n#: filters.py:158\nmsgid \"Any date\"\nmsgstr \"Toutes les dates\"\n\n#: filters.py:159\nmsgid \"Today\"\nmsgstr \"Aujourd'hui\"\n\n#: filters.py:164\nmsgid \"Past 7 days\"\nmsgstr \"7 derniers jours\"\n\n#: filters.py:168\nmsgid \"This month\"\nmsgstr \"Ce mois-ci\"\n\n#: filters.py:172\nmsgid \"This year\"\nmsgstr \"Cette année\"\n\n#: widgets.py:63\nmsgid \"All\"\nmsgstr \"Tous\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/pl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#: conf.py:35 conf.py:36 conf.py:49\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django_filters 0.0.1\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-09-01 17:21+0000\\n\"\n\"PO-Revision-Date: 2015-07-25 01:27+0100\\n\"\n\"Last-Translator: Adam Dobrawy <naczelnik@jawnosc.tk>\\n\"\n\"Language-Team: Adam Dobrawy <naczelnik@jawnosc.tk>\\n\"\n\"Language: pl_PL\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 \"\n\"|| n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Poedit 1.5.4\\n\"\n\n#: conf.py:25\n#, fuzzy\n#| msgid \"Any date\"\nmsgid \"date\"\nmsgstr \"Dowolna data\"\n\n#: conf.py:26\n#, fuzzy\n#| msgid \"This year\"\nmsgid \"year\"\nmsgstr \"Ten rok\"\n\n#: conf.py:27\n#, fuzzy\n#| msgid \"This month\"\nmsgid \"month\"\nmsgstr \"Ten miesiąc\"\n\n#: conf.py:28\n#, fuzzy\n#| msgid \"Today\"\nmsgid \"day\"\nmsgstr \"Dziś\"\n\n#: conf.py:29\nmsgid \"week day\"\nmsgstr \"dzień tygodnia\"\n\n#: conf.py:30\nmsgid \"hour\"\nmsgstr \"godzina\"\n\n#: conf.py:31\nmsgid \"minute\"\nmsgstr \"minuta\"\n\n#: conf.py:32\nmsgid \"second\"\nmsgstr \"\"\n\n#: conf.py:37 conf.py:38\nmsgid \"contains\"\nmsgstr \"zawiera\"\n\n#: conf.py:39\nmsgid \"is in\"\nmsgstr \"zawiera się w\"\n\n#: conf.py:40\nmsgid \"is greater than\"\nmsgstr \"powyżej\"\n\n#: conf.py:41\nmsgid \"is greater than or equal to\"\nmsgstr \"powyżej lub równe\"\n\n#: conf.py:42\nmsgid \"is less than\"\nmsgstr \"poniżej\"\n\n#: conf.py:43\nmsgid \"is less than or equal to\"\nmsgstr \"poniżej lub równe\"\n\n#: conf.py:44 conf.py:45\nmsgid \"starts with\"\nmsgstr \"zaczyna się od\"\n\n#: conf.py:46 conf.py:47\nmsgid \"ends with\"\nmsgstr \"kończy się na\"\n\n#: conf.py:48\nmsgid \"is in range\"\nmsgstr \"zawiera się w zakresie\"\n\n#: conf.py:50 conf.py:51\nmsgid \"matches regex\"\nmsgstr \"pasuje do wyrażenia regularnego\"\n\n#: conf.py:52 conf.py:60\nmsgid \"search\"\nmsgstr \"szukaj\"\n\n#: conf.py:55\nmsgid \"is contained by\"\nmsgstr \"zawiera się w\"\n\n#: conf.py:56\nmsgid \"overlaps\"\nmsgstr \"\"\n\n#: conf.py:57\nmsgid \"has key\"\nmsgstr \"\"\n\n#: conf.py:58\nmsgid \"has keys\"\nmsgstr \"\"\n\n#: conf.py:59\nmsgid \"has any keys\"\nmsgstr \"\"\n\n#: fields.py:172\nmsgid \"Range query expects two values.\"\nmsgstr \"\"\n\n#: filters.py:452\nmsgid \"Any date\"\nmsgstr \"Dowolna data\"\n\n#: filters.py:453\nmsgid \"Today\"\nmsgstr \"Dziś\"\n\n#: filters.py:458\nmsgid \"Past 7 days\"\nmsgstr \"Ostatnie 7 dni\"\n\n#: filters.py:462\nmsgid \"This month\"\nmsgstr \"Ten miesiąc\"\n\n#: filters.py:466\nmsgid \"This year\"\nmsgstr \"Ten rok\"\n\n#: filters.py:469\nmsgid \"Yesterday\"\nmsgstr \"Wczoraj\"\n\n#: filters.py:535\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Wiele wartości można rozdzielić przecinkami\"\n\n#: filters.py:614\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (malejąco)\"\n\n#: filters.py:630\nmsgid \"Ordering\"\nmsgstr \"Sortowanie\"\n\n#: rest_framework/filterset.py:34\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\n#, fuzzy\n#| msgid \"Filter\"\nmsgid \"Field filters\"\nmsgstr \"Filter\"\n\n#: utils.py:225\nmsgid \"exclude\"\nmsgstr \"\"\n\n#: widgets.py:66\nmsgid \"All\"\nmsgstr \"Wszystko\"\n\n#: widgets.py:173\nmsgid \"Unknown\"\nmsgstr \"\"\n\n#: widgets.py:174\nmsgid \"Yes\"\nmsgstr \"Tak\"\n\n#: widgets.py:175\nmsgid \"No\"\nmsgstr \"Nie\"\n\n#~ msgid \"This is an exclusion filter\"\n#~ msgstr \"Jest to filtr wykluczający\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/pt_BR/LC_MESSAGES/django.po",
    "content": "# Django Filter translation.\n# Copyright (C) 2017\n# This file is distributed under the same license as the django_filter package.\n# Anderson Scouto da Silva, 2017.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: \\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-12-11 22:04+0100\\n\"\n\"PO-Revision-Date: 2017-12-11 22:07-0200\\n\"\n\"Last-Translator: Anderson Scouto da Silva\\n\"\n\"Language-Team: \\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: Poedit 1.8.13\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: conf.py:26\nmsgid \"date\"\nmsgstr \"data\"\n\n#: conf.py:27\nmsgid \"year\"\nmsgstr \"ano\"\n\n#: conf.py:28\nmsgid \"month\"\nmsgstr \"mês\"\n\n#: conf.py:29\nmsgid \"day\"\nmsgstr \"dia\"\n\n#: conf.py:30\nmsgid \"week day\"\nmsgstr \"dia da semana\"\n\n#: conf.py:31\nmsgid \"hour\"\nmsgstr \"hora\"\n\n#: conf.py:32\nmsgid \"minute\"\nmsgstr \"minuto\"\n\n#: conf.py:33\nmsgid \"second\"\nmsgstr \"segundo\"\n\n#: conf.py:38 conf.py:39\nmsgid \"contains\"\nmsgstr \"contém\"\n\n#: conf.py:40\nmsgid \"is in\"\nmsgstr \"presente em\"\n\n#: conf.py:41\nmsgid \"is greater than\"\nmsgstr \"é maior que\"\n\n#: conf.py:42\nmsgid \"is greater than or equal to\"\nmsgstr \"é maior ou igual que\"\n\n#: conf.py:43\nmsgid \"is less than\"\nmsgstr \"é menor que\"\n\n#: conf.py:44\nmsgid \"is less than or equal to\"\nmsgstr \"é menor ou igual que\"\n\n#: conf.py:45 conf.py:46\nmsgid \"starts with\"\nmsgstr \"começa com\"\n\n#: conf.py:47 conf.py:48\nmsgid \"ends with\"\nmsgstr \"termina com\"\n\n#: conf.py:49\nmsgid \"is in range\"\nmsgstr \"está no range\"\n\n#: conf.py:51 conf.py:52\nmsgid \"matches regex\"\nmsgstr \"coincide com a expressão regular\"\n\n#: conf.py:53 conf.py:61\nmsgid \"search\"\nmsgstr \"buscar\"\n\n#: conf.py:56\nmsgid \"is contained by\"\nmsgstr \"está contido por\"\n\n#: conf.py:57\nmsgid \"overlaps\"\nmsgstr \"sobrepõe\"\n\n#: conf.py:58\nmsgid \"has key\"\nmsgstr \"contém a chave\"\n\n#: conf.py:59\nmsgid \"has keys\"\nmsgstr \"contém as chaves\"\n\n#: conf.py:60\nmsgid \"has any keys\"\nmsgstr \"contém uma das chaves\"\n\n#: fields.py:167\nmsgid \"Range query expects two values.\"\nmsgstr \"Consulta por range requer dois valores.\"\n\n#: filters.py:443\nmsgid \"Any date\"\nmsgstr \"Qualquer data\"\n\n#: filters.py:444\nmsgid \"Today\"\nmsgstr \"Hoje\"\n\n#: filters.py:449\nmsgid \"Past 7 days\"\nmsgstr \"Últimos 7 dias\"\n\n#: filters.py:453\nmsgid \"This month\"\nmsgstr \"Este mês\"\n\n#: filters.py:457\nmsgid \"This year\"\nmsgstr \"Este ano\"\n\n#: filters.py:460\nmsgid \"Yesterday\"\nmsgstr \"Ontem\"\n\n#: filters.py:526\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Valores múltiplos podem ser separados por vírgulas.\"\n\n#: filters.py:605\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (decrescente)\"\n\n#: filters.py:621\nmsgid \"Ordering\"\nmsgstr \"Ordenado\"\n\n#: utils.py:220\nmsgid \"exclude\"\nmsgstr \"excluir\"\n\n#: widgets.py:71\nmsgid \"All\"\nmsgstr \"Tudo\"\n\n#: widgets.py:119\nmsgid \"Unknown\"\nmsgstr \"Desconhecido\"\n\n#: widgets.py:120\nmsgid \"Yes\"\nmsgstr \"Sim\"\n\n#: widgets.py:121\nmsgid \"No\"\nmsgstr \"Não\"\n\n#: rest_framework/filterset.py:31\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Enviar\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Filtros de campo\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/ru/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#: conf.py:27 conf.py:28 conf.py:41\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-24 11:03+0500\\n\"\n\"PO-Revision-Date: 2016-09-29 11:47+0300\\n\"\n\"Last-Translator: Mikhail Mitrofanov <mm@elec.ru>\\n\"\n\"Language-Team: \\n\"\n\"Language: ru\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n\"\n\"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Poedit 1.8.9\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"дата\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"год\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"месяц\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"день\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"день недели\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"час\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"минута\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"секунда\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"содержит\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"в\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"больше чем\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"больше или равно\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"меньше чем\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"меньше или равно\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"начинается\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"заканчивается\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"в диапазоне\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"соответствует регулярному выражению\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"поиск\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"содержится в\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"перекрывается\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"имеет ключ\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"имеет ключи\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"имеет любые ключи\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Запрос диапазона ожидает два значения.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Любая дата\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Сегодня\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Прошедшие 7 дней\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"За этот месяц\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"В этом году\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Вчера\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Несколько значений могут быть разделены запятыми.\"\n\n#: filters.py:591\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (по убыванию)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Порядок\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Отправить\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Фильтры по полям\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"исключая\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Все\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Не задано\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Да\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Нет\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/sk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: PACKAGE VERSION\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-03-25 19:11+0200\\n\"\n\"PO-Revision-Date: 2018-03-25 19:18+0058\\n\"\n\"Last-Translator: b'Erik Telepovsky <erik@pragmaticmates.com>'\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\"X-Translated-Using: django-rosetta 0.8.1\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"dátum\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"rok\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"mesiac\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"deň\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"deň týždňa\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"hodina\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"minúta\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"sekunda\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"obsahuje\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"je v\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"je vačší než\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"je vačší alebo rovný ako\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"je menší než\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"je menší alebo rovný ako\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"začína s\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"končí s\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"je v rozsahu\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"spĺňa regex\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"hľadať\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"je obsiahnutý\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"presahuje\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"má kľúč\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"má kľúče\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"má akékoľvek kľúče\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Rozsah očakáva dve hodnoty.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Akýkoľvek dátum\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Dnes\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Posledných 7 dní\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"Tento mesiac\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"Tento rok\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Včera\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Viacero hodnôt môže byť oddelených čiarkami.\"\n\n#: filters.py:591\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s (klesajúco)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Zoradenie\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Potvrdiť\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Filtre poľa\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"neobsahuje\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Všetky\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Neznáme\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Áno\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Nie\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/uk/LC_MESSAGES/django.po",
    "content": "#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: django-filter\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-24 11:03+0500\\n\"\n\"PO-Revision-Date: 2016-09-29 11:47+0300\\n\"\n\"Last-Translator: Eugena Mikhaylikova <eugena.mihailikova@gmail.com>\\n\"\n\"Language-Team: TextTempearture\\n\"\n\"Language: uk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Poedit 1.8.9\\n\"\n\n#: conf.py:17\nmsgid \"date\"\nmsgstr \"дата\"\n\n#: conf.py:18\nmsgid \"year\"\nmsgstr \"рік\"\n\n#: conf.py:19\nmsgid \"month\"\nmsgstr \"місяць\"\n\n#: conf.py:20\nmsgid \"day\"\nmsgstr \"день\"\n\n#: conf.py:21\nmsgid \"week day\"\nmsgstr \"день тижня\"\n\n#: conf.py:22\nmsgid \"hour\"\nmsgstr \"година\"\n\n#: conf.py:23\nmsgid \"minute\"\nmsgstr \"хвилина\"\n\n#: conf.py:24\nmsgid \"second\"\nmsgstr \"секунда\"\n\n#: conf.py:29 conf.py:30\nmsgid \"contains\"\nmsgstr \"містить\"\n\n#: conf.py:31\nmsgid \"is in\"\nmsgstr \"в\"\n\n#: conf.py:32\nmsgid \"is greater than\"\nmsgstr \"більше ніж\"\n\n#: conf.py:33\nmsgid \"is greater than or equal to\"\nmsgstr \"більше або дорівнює\"\n\n#: conf.py:34\nmsgid \"is less than\"\nmsgstr \"менше ніж\"\n\n#: conf.py:35\nmsgid \"is less than or equal to\"\nmsgstr \"менше або дорівнює\"\n\n#: conf.py:36 conf.py:37\nmsgid \"starts with\"\nmsgstr \"починається\"\n\n#: conf.py:38 conf.py:39\nmsgid \"ends with\"\nmsgstr \"закінчується\"\n\n#: conf.py:40\nmsgid \"is in range\"\nmsgstr \"в діапазоні\"\n\n#: conf.py:42 conf.py:43\nmsgid \"matches regex\"\nmsgstr \"відповідає регулярному виразу\"\n\n#: conf.py:44 conf.py:52\nmsgid \"search\"\nmsgstr \"пошук\"\n\n#: conf.py:47\nmsgid \"is contained by\"\nmsgstr \"міститься в\"\n\n#: conf.py:48\nmsgid \"overlaps\"\nmsgstr \"перекривається\"\n\n#: conf.py:49\nmsgid \"has key\"\nmsgstr \"має ключ\"\n\n#: conf.py:50\nmsgid \"has keys\"\nmsgstr \"має ключі\"\n\n#: conf.py:51\nmsgid \"has any keys\"\nmsgstr \"має будь-які ключі\"\n\n#: fields.py:178\nmsgid \"Range query expects two values.\"\nmsgstr \"Запит діапазону очікує два значення.\"\n\n#: filters.py:429\nmsgid \"Any date\"\nmsgstr \"Будь-яка дата\"\n\n#: filters.py:430\nmsgid \"Today\"\nmsgstr \"Сьогодні\"\n\n#: filters.py:435\nmsgid \"Past 7 days\"\nmsgstr \"Минулі 7 днів\"\n\n#: filters.py:439\nmsgid \"This month\"\nmsgstr \"За цей місяць\"\n\n#: filters.py:443\nmsgid \"This year\"\nmsgstr \"В цьому році\"\n\n#: filters.py:446\nmsgid \"Yesterday\"\nmsgstr \"Вчора\"\n\n#: filters.py:512\nmsgid \"Multiple values may be separated by commas.\"\nmsgstr \"Кілька значень можуть бути розділені комами.\"\n\n#: filters.py:591\nmsgid \"%s (descending)\"\nmsgstr \"%s (по спадаючій)\"\n\n#: filters.py:607\nmsgid \"Ordering\"\nmsgstr \"Порядок\"\n\n#: rest_framework/filterset.py:30\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:5\nmsgid \"Submit\"\nmsgstr \"Відправити\"\n\n#: templates/jet_django.deps.django_filters/rest_framework/crispy_form.html:4\n#: templates/jet_django.deps.django_filters/rest_framework/form.html:2\nmsgid \"Field filters\"\nmsgstr \"Фільтри по полях\"\n\n#: utils.py:224\nmsgid \"exclude\"\nmsgstr \"виключаючи\"\n\n#: widgets.py:57\nmsgid \"All\"\nmsgstr \"Усе\"\n\n#: widgets.py:159\nmsgid \"Unknown\"\nmsgstr \"Не задано\"\n\n#: widgets.py:160\nmsgid \"Yes\"\nmsgstr \"Так\"\n\n#: widgets.py:161\nmsgid \"No\"\nmsgstr \"Немає\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/locale/zh_CN/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# Kane Blueriver <kxxoling@gmail.com>, 2016.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: PACKAGE VERSION\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-01-30 17:39+0800\\n\"\n\"PO-Revision-Date: 2016-01-30 17:50+0800\\n\"\n\"Last-Translator: Kane Blueriver <kxxoling@gmail.com>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: filters.py:62\nmsgid \"This is an exclusion filter\"\nmsgstr \"未启用该过滤器\"\n\n#: filters.py:62\nmsgid \"Filter\"\nmsgstr \"过滤器\"\n\n#: filters.py:264\nmsgid \"Any date\"\nmsgstr \"任何时刻\"\n\n#: filters.py:265\nmsgid \"Today\"\nmsgstr \"今日\"\n\n#: filters.py:270\nmsgid \"Past 7 days\"\nmsgstr \"过去 7 日\"\n\n#: filters.py:274\nmsgid \"This month\"\nmsgstr \"本月\"\n\n#: filters.py:278\nmsgid \"This year\"\nmsgstr \"今年\"\n\n#: filters.py:281\nmsgid \"Yesterday\"\nmsgstr \"昨日\"\n\n#: filterset.py:398 filterset.py:409\n#, python-format\nmsgid \"%s (descending)\"\nmsgstr \"%s（降序）\"\n\n#: filterset.py:411\nmsgid \"Ordering\"\nmsgstr \"排序\"\n\n#: widgets.py:60\nmsgid \"All\"\nmsgstr \"全部\"\n"
  },
  {
    "path": "jet_django/deps/django_filters/models.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/django_filters/rest_framework/__init__.py",
    "content": "# flake8: noqa\nfrom .backends import DjangoFilterBackend\nfrom .filterset import FilterSet\nfrom .filters import *\n"
  },
  {
    "path": "jet_django/deps/django_filters/rest_framework/backends.py",
    "content": "import warnings\n\nfrom django.template import loader\nfrom django.utils.deprecation import RenameMethodsBase\n\nfrom . import filters, filterset\nfrom .. import compat, utils\n\n\n# TODO: remove metaclass in 2.1\nclass RenameAttributes(utils.RenameAttributesBase, RenameMethodsBase):\n    renamed_attributes = (\n        ('default_filter_set', 'filterset_base', utils.MigrationNotice),\n    )\n    renamed_methods = (\n        ('get_filter_class', 'get_filterset_class', utils.MigrationNotice),\n    )\n\n\nclass DjangoFilterBackend(metaclass=RenameAttributes):\n    filterset_base = filterset.FilterSet\n    raise_exception = True\n\n    @property\n    def template(self):\n        if compat.is_crispy():\n            return 'jet_django.deps.django_filters/rest_framework/crispy_form.html'\n        return 'jet_django.deps.django_filters/rest_framework/form.html'\n\n    def get_filterset(self, request, queryset, view):\n        filterset_class = self.get_filterset_class(view, queryset)\n        if filterset_class is None:\n            return None\n\n        kwargs = self.get_filterset_kwargs(request, queryset, view)\n        return filterset_class(**kwargs)\n\n    def get_filterset_class(self, view, queryset=None):\n        \"\"\"\n        Return the `FilterSet` class used to filter the queryset.\n        \"\"\"\n        filterset_class = getattr(view, 'filterset_class', None)\n        filterset_fields = getattr(view, 'filterset_fields', None)\n\n        # TODO: remove assertion in 2.1\n        if filterset_class is None and hasattr(view, 'filter_class'):\n            utils.deprecate(\n                \"`%s.filter_class` attribute should be renamed `filterset_class`.\"\n                % view.__class__.__name__)\n            filterset_class = getattr(view, 'filter_class', None)\n\n        # TODO: remove assertion in 2.1\n        if filterset_fields is None and hasattr(view, 'filter_fields'):\n            utils.deprecate(\n                \"`%s.filter_fields` attribute should be renamed `filterset_fields`.\"\n                % view.__class__.__name__)\n            filterset_fields = getattr(view, 'filter_fields', None)\n\n        if filterset_class:\n            filterset_model = filterset_class._meta.model\n\n            # FilterSets do not need to specify a Meta class\n            if filterset_model and queryset is not None:\n                assert issubclass(queryset.model, filterset_model), \\\n                    'FilterSet model %s does not match queryset model %s' % \\\n                    (filterset_model, queryset.model)\n\n            return filterset_class\n\n        if filterset_fields and queryset is not None:\n            MetaBase = getattr(self.filterset_base, 'Meta', object)\n\n            class AutoFilterSet(self.filterset_base):\n                class Meta(MetaBase):\n                    model = queryset.model\n                    fields = filterset_fields\n\n            return AutoFilterSet\n\n        return None\n\n    def get_filterset_kwargs(self, request, queryset, view):\n        return {\n            'data': request.query_params,\n            'queryset': queryset,\n            'request': request,\n        }\n\n    def filter_queryset(self, request, queryset, view):\n        filterset = self.get_filterset(request, queryset, view)\n        if filterset is None:\n            return queryset\n\n        if not filterset.is_valid() and self.raise_exception:\n            raise utils.translate_validation(filterset.errors)\n        return filterset.qs\n\n    def to_html(self, request, queryset, view):\n        filterset = self.get_filterset(request, queryset, view)\n        if filterset is None:\n            return None\n\n        template = loader.get_template(self.template)\n        context = {'filter': filterset}\n        return template.render(context, request)\n\n    def get_coreschema_field(self, field):\n        if isinstance(field, filters.NumberFilter):\n            field_cls = compat.coreschema.Number\n        else:\n            field_cls = compat.coreschema.String\n        return field_cls(\n            description=str(field.extra.get('help_text', ''))\n        )\n\n    def get_schema_fields(self, view):\n        # This is not compatible with widgets where the query param differs from the\n        # filter's attribute name. Notably, this includes `MultiWidget`, where query\n        # params will be of the format `<name>_0`, `<name>_1`, etc...\n        assert compat.coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert compat.coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n\n        try:\n            queryset = view.get_queryset()\n        except Exception:\n            queryset = None\n            warnings.warn(\n                \"{} is not compatible with schema generation\".format(view.__class__)\n            )\n\n        filterset_class = self.get_filterset_class(view, queryset)\n\n        return [] if not filterset_class else [\n            compat.coreapi.Field(\n                name=field_name,\n                required=field.extra['required'],\n                location='query',\n                schema=self.get_coreschema_field(field)\n            ) for field_name, field in filterset_class.base_filters.items()\n        ]\n"
  },
  {
    "path": "jet_django/deps/django_filters/rest_framework/filters.py",
    "content": "from jet_django.deps.django_filters import filters\n\nfrom ..filters import *  # noqa\nfrom ..widgets import BooleanWidget\n\n__all__ = filters.__all__\n\n\nclass BooleanFilter(filters.BooleanFilter):\n    def __init__(self, *args, **kwargs):\n        kwargs.setdefault('widget', BooleanWidget)\n\n        super().__init__(*args, **kwargs)\n"
  },
  {
    "path": "jet_django/deps/django_filters/rest_framework/filterset.py",
    "content": "from copy import deepcopy\n\nfrom django.db import models\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.django_filters import filterset\n\nfrom .. import compat\nfrom .filters import BooleanFilter, IsoDateTimeFilter\n\nFILTER_FOR_DBFIELD_DEFAULTS = deepcopy(filterset.FILTER_FOR_DBFIELD_DEFAULTS)\nFILTER_FOR_DBFIELD_DEFAULTS.update({\n    models.DateTimeField: {'filter_class': IsoDateTimeFilter},\n    models.BooleanField: {'filter_class': BooleanFilter},\n    models.NullBooleanField: {'filter_class': BooleanFilter},\n})\n\n\nclass FilterSet(filterset.FilterSet):\n    FILTER_DEFAULTS = FILTER_FOR_DBFIELD_DEFAULTS\n\n    @property\n    def form(self):\n        form = super().form\n\n        if compat.is_crispy():\n            from crispy_forms.helper import FormHelper\n            from crispy_forms.layout import Layout, Submit\n\n            layout_components = list(form.fields.keys()) + [\n                Submit('', _('Submit'), css_class='btn-default'),\n            ]\n            helper = FormHelper()\n            helper.form_method = 'GET'\n            helper.template_pack = 'bootstrap3'\n            helper.layout = Layout(*layout_components)\n\n            form.helper = helper\n\n        return form\n"
  },
  {
    "path": "jet_django/deps/django_filters/utils.py",
    "content": "import warnings\nfrom collections import OrderedDict\n\nimport django\nfrom django.conf import settings\nfrom django.core.exceptions import FieldError\nfrom django.db import models\nfrom django.db.models.constants import LOOKUP_SEP\nfrom django.db.models.expressions import Expression\nfrom django.db.models.fields import FieldDoesNotExist\nfrom django.db.models.fields.related import ForeignObjectRel, RelatedField\nfrom django.utils import timezone\nfrom django.utils.encoding import force_text\nfrom django.utils.text import capfirst\nfrom django.utils.translation import ugettext as _\n\nfrom .exceptions import FieldLookupError\n\n\ndef deprecate(msg, level_modifier=0):\n    warnings.warn(msg, MigrationNotice, stacklevel=3 + level_modifier)\n\n\nclass MigrationNotice(DeprecationWarning):\n    url = 'https://django-filter.readthedocs.io/en/master/guide/migration.html'\n\n    def __init__(self, message):\n        super().__init__('%s See: %s' % (message, self.url))\n\n\nclass RenameAttributesBase(type):\n    \"\"\"\n    Handles the deprecation paths when renaming an attribute.\n\n    It does the following:\n    - Defines accessors that redirect to the renamed attributes.\n    - Complain whenever an old attribute is accessed.\n\n    This is conceptually based on `django.utils.deprecation.RenameMethodsBase`.\n    \"\"\"\n    renamed_attributes = ()\n\n    def __new__(metacls, name, bases, attrs):\n        # remove old attributes before creating class\n        old_names = [r[0] for r in metacls.renamed_attributes]\n        old_names = [name for name in old_names if name in attrs]\n        old_attrs = {name: attrs.pop(name) for name in old_names}\n\n        # get a handle to any accessors defined on the class\n        cls_getattr = attrs.pop('__getattr__', None)\n        cls_setattr = attrs.pop('__setattr__', None)\n\n        new_class = super().__new__(metacls, name, bases, attrs)\n\n        def __getattr__(self, name):\n            name = type(self).get_name(name)\n            if cls_getattr is not None:\n                return cls_getattr(self, name)\n            elif hasattr(super(new_class, self), '__getattr__'):\n                return super(new_class, self).__getattr__(name)\n            return self.__getattribute__(name)\n\n        def __setattr__(self, name, value):\n            name = type(self).get_name(name)\n            if cls_setattr is not None:\n                return cls_setattr(self, name, value)\n            return super(new_class, self).__setattr__(name, value)\n\n        new_class.__getattr__ = __getattr__\n        new_class.__setattr__ = __setattr__\n\n        # set renamed attributes\n        for name, value in old_attrs.items():\n            setattr(new_class, name, value)\n\n        return new_class\n\n    def get_name(metacls, name):\n        \"\"\"\n        Get the real attribute name. If the attribute has been renamed,\n        the new name will be returned and a deprecation warning issued.\n        \"\"\"\n        for renamed_attribute in metacls.renamed_attributes:\n            old_name, new_name, deprecation_warning = renamed_attribute\n\n            if old_name == name:\n                warnings.warn(\"`%s.%s` attribute should be renamed `%s`.\"\n                              % (metacls.__name__, old_name, new_name),\n                              deprecation_warning, 3)\n                return new_name\n\n        return name\n\n    def __getattr__(metacls, name):\n        return super().__getattribute__(metacls.get_name(name))\n\n    def __setattr__(metacls, name, value):\n        return super().__setattr__(metacls.get_name(name), value)\n\n\ndef try_dbfield(fn, field_class):\n    \"\"\"\n    Try ``fn`` with the DB ``field_class`` by walking its\n    MRO until a result is found.\n\n    ex::\n        _try_dbfield(field_dict.get, models.CharField)\n\n    \"\"\"\n    # walk the mro, as field_class could be a derived model field.\n    for cls in field_class.mro():\n        # skip if cls is models.Field\n        if cls is models.Field:\n            continue\n\n        data = fn(cls)\n        if data:\n            return data\n\n\ndef get_all_model_fields(model):\n    opts = model._meta\n\n    return [\n        f.name for f in sorted(opts.fields + opts.many_to_many)\n        if not isinstance(f, models.AutoField) and\n        not (getattr(f.remote_field, 'parent_link', False))\n    ]\n\n\ndef get_model_field(model, field_name):\n    \"\"\"\n    Get a ``model`` field, traversing relationships\n    in the ``field_name``.\n\n    ex::\n\n        f = get_model_field(Book, 'author__first_name')\n\n    \"\"\"\n    fields = get_field_parts(model, field_name)\n    return fields[-1] if fields else None\n\n\ndef get_field_parts(model, field_name):\n    \"\"\"\n    Get the field parts that represent the traversable relationships from the\n    base ``model`` to the final field, described by ``field_name``.\n\n    ex::\n\n        >>> parts = get_field_parts(Book, 'author__first_name')\n        >>> [p.verbose_name for p in parts]\n        ['author', 'first name']\n\n    \"\"\"\n    parts = field_name.split(LOOKUP_SEP)\n    opts = model._meta\n    fields = []\n\n    # walk relationships\n    for name in parts:\n        try:\n            field = opts.get_field(name)\n        except FieldDoesNotExist:\n            return None\n\n        fields.append(field)\n        if isinstance(field, RelatedField):\n            opts = field.remote_field.model._meta\n        elif isinstance(field, ForeignObjectRel):\n            opts = field.related_model._meta\n\n    return fields\n\n\ndef resolve_field(model_field, lookup_expr):\n    \"\"\"\n    Resolves a ``lookup_expr`` into its final output field, given\n    the initial ``model_field``. The lookup expression should only contain\n    transforms and lookups, not intermediary model field parts.\n\n    Note:\n    This method is based on django.db.models.sql.query.Query.build_lookup\n\n    For more info on the lookup API:\n    https://docs.djangoproject.com/en/1.9/ref/models/lookups/\n\n    \"\"\"\n    query = model_field.model._default_manager.all().query\n    lhs = Expression(model_field)\n    lookups = lookup_expr.split(LOOKUP_SEP)\n\n    assert len(lookups) > 0\n\n    try:\n        while lookups:\n            name = lookups[0]\n            args = (lhs, name)\n            if django.VERSION < (2, 0):\n                # rest_of_lookups was removed in Django 2.0\n                args += (lookups,)\n            # If there is just one part left, try first get_lookup() so\n            # that if the lhs supports both transform and lookup for the\n            # name, then lookup will be picked.\n            if len(lookups) == 1:\n                final_lookup = lhs.get_lookup(name)\n                if not final_lookup:\n                    # We didn't find a lookup. We are going to interpret\n                    # the name as transform, and do an Exact lookup against\n                    # it.\n                    lhs = query.try_transform(*args)\n                    final_lookup = lhs.get_lookup('exact')\n                return lhs.output_field, final_lookup.lookup_name\n            lhs = query.try_transform(*args)\n            lookups = lookups[1:]\n    except FieldError as e:\n        raise FieldLookupError(model_field, lookup_expr) from e\n\n\ndef handle_timezone(value, is_dst=None):\n    if settings.USE_TZ and timezone.is_naive(value):\n        return timezone.make_aware(value, timezone.get_current_timezone(), is_dst)\n    elif not settings.USE_TZ and timezone.is_aware(value):\n        return timezone.make_naive(value, timezone.utc)\n    return value\n\n\ndef verbose_field_name(model, field_name):\n    \"\"\"\n    Get the verbose name for a given ``field_name``. The ``field_name``\n    will be traversed across relationships. Returns '[invalid name]' for\n    any field name that cannot be traversed.\n\n    ex::\n\n        >>> verbose_field_name(Article, 'author__name')\n        'author name'\n\n    \"\"\"\n    if field_name is None:\n        return '[invalid name]'\n\n    parts = get_field_parts(model, field_name)\n    if not parts:\n        return '[invalid name]'\n\n    names = []\n    for part in parts:\n        if isinstance(part, ForeignObjectRel):\n            if part.related_name:\n                names.append(part.related_name.replace('_', ' '))\n            else:\n                return '[invalid name]'\n        else:\n            names.append(force_text(part.verbose_name))\n\n    return ' '.join(names)\n\n\ndef verbose_lookup_expr(lookup_expr):\n    \"\"\"\n    Get a verbose, more humanized expression for a given ``lookup_expr``.\n    Each part in the expression is looked up in the ``FILTERS_VERBOSE_LOOKUPS``\n    dictionary. Missing keys will simply default to itself.\n\n    ex::\n\n        >>> verbose_lookup_expr('year__lt')\n        'year is less than'\n\n        # with `FILTERS_VERBOSE_LOOKUPS = {}`\n        >>> verbose_lookup_expr('year__lt')\n        'year lt'\n\n    \"\"\"\n    from .conf import settings as app_settings\n\n    VERBOSE_LOOKUPS = app_settings.VERBOSE_LOOKUPS or {}\n    lookups = [\n        force_text(VERBOSE_LOOKUPS.get(lookup, _(lookup)))\n        for lookup in lookup_expr.split(LOOKUP_SEP)\n    ]\n\n    return ' '.join(lookups)\n\n\ndef label_for_filter(model, field_name, lookup_expr, exclude=False):\n    \"\"\"\n    Create a generic label suitable for a filter.\n\n    ex::\n\n        >>> label_for_filter(Article, 'author__name', 'in')\n        'auther name is in'\n\n    \"\"\"\n    name = verbose_field_name(model, field_name)\n    verbose_expression = [_('exclude'), name] if exclude else [name]\n\n    # iterable lookups indicate a LookupTypeField, which should not be verbose\n    if isinstance(lookup_expr, str):\n        verbose_expression += [verbose_lookup_expr(lookup_expr)]\n\n    verbose_expression = [force_text(part) for part in verbose_expression if part]\n    verbose_expression = capfirst(' '.join(verbose_expression))\n\n    return verbose_expression\n\n\ndef translate_validation(error_dict):\n    \"\"\"\n    Translate a Django ErrorDict into its DRF ValidationError.\n    \"\"\"\n    # it's necessary to lazily import the exception, as it can otherwise create\n    # an import loop when importing django_filters inside the project settings.\n    from jet_django.deps.rest_framework.exceptions import ValidationError, ErrorDetail\n\n    exc = OrderedDict(\n        (key, [ErrorDetail(e.message, code=e.code) for e in error_list])\n        for key, error_list in error_dict.as_data().items()\n    )\n\n    return ValidationError(exc)\n"
  },
  {
    "path": "jet_django/deps/django_filters/views.py",
    "content": "from django.core.exceptions import ImproperlyConfigured\nfrom django.views.generic import View\nfrom django.views.generic.list import (\n    MultipleObjectMixin,\n    MultipleObjectTemplateResponseMixin\n)\n\nfrom .constants import ALL_FIELDS\nfrom .filterset import filterset_factory\nfrom .utils import MigrationNotice, RenameAttributesBase\n\n\n# TODO: remove metaclass in 2.1\nclass FilterMixinRenames(RenameAttributesBase):\n    renamed_attributes = (\n        ('filter_fields', 'filterset_fields', MigrationNotice),\n    )\n\n\nclass FilterMixin(metaclass=FilterMixinRenames):\n    \"\"\"\n    A mixin that provides a way to show and handle a FilterSet in a request.\n    \"\"\"\n    filterset_class = None\n    filterset_fields = ALL_FIELDS\n    strict = True\n\n    def get_filterset_class(self):\n        \"\"\"\n        Returns the filterset class to use in this view\n        \"\"\"\n        if self.filterset_class:\n            return self.filterset_class\n        elif self.model:\n            return filterset_factory(model=self.model, fields=self.filterset_fields)\n        else:\n            msg = \"'%s' must define 'filterset_class' or 'model'\"\n            raise ImproperlyConfigured(msg % self.__class__.__name__)\n\n    def get_filterset(self, filterset_class):\n        \"\"\"\n        Returns an instance of the filterset to be used in this view.\n        \"\"\"\n        kwargs = self.get_filterset_kwargs(filterset_class)\n        return filterset_class(**kwargs)\n\n    def get_filterset_kwargs(self, filterset_class):\n        \"\"\"\n        Returns the keyword arguments for instanciating the filterset.\n        \"\"\"\n        kwargs = {\n            'data': self.request.GET or None,\n            'request': self.request,\n        }\n        try:\n            kwargs.update({\n                'queryset': self.get_queryset(),\n            })\n        except ImproperlyConfigured:\n            # ignore the error here if the filterset has a model defined\n            # to acquire a queryset from\n            if filterset_class._meta.model is None:\n                msg = (\"'%s' does not define a 'model' and the view '%s' does \"\n                       \"not return a valid queryset from 'get_queryset'.  You \"\n                       \"must fix one of them.\")\n                args = (filterset_class.__name__, self.__class__.__name__)\n                raise ImproperlyConfigured(msg % args)\n        return kwargs\n\n    def get_strict(self):\n        return self.strict\n\n\nclass BaseFilterView(FilterMixin, MultipleObjectMixin, View):\n\n    def get(self, request, *args, **kwargs):\n        filterset_class = self.get_filterset_class()\n        self.filterset = self.get_filterset(filterset_class)\n\n        if self.filterset.is_valid() or not self.get_strict():\n            self.object_list = self.filterset.qs\n        else:\n            self.object_list = self.filterset.queryset.none()\n\n        context = self.get_context_data(filter=self.filterset,\n                                        object_list=self.object_list)\n        return self.render_to_response(context)\n\n\nclass FilterView(MultipleObjectTemplateResponseMixin, BaseFilterView):\n    \"\"\"\n    Render some list of objects with filter, set by `self.model` or\n    `self.queryset`.\n    `self.queryset` can actually be any iterable of items, not just a queryset.\n    \"\"\"\n    template_name_suffix = '_filter'\n\n\ndef object_filter(request, model=None, queryset=None, template_name=None,\n                  extra_context=None, context_processors=None,\n                  filter_class=None):\n    class ECFilterView(FilterView):\n        \"\"\"Handle the extra_context from the functional object_filter view\"\"\"\n        def get_context_data(self, **kwargs):\n            context = super().get_context_data(**kwargs)\n            extra_context = self.kwargs.get('extra_context') or {}\n            for k, v in extra_context.items():\n                if callable(v):\n                    v = v()\n                context[k] = v\n            return context\n\n    kwargs = dict(model=model, queryset=queryset, template_name=template_name,\n                  filterset_class=filter_class)\n    view = ECFilterView.as_view(**kwargs)\n    return view(request, extra_context=extra_context)\n"
  },
  {
    "path": "jet_django/deps/django_filters/widgets.py",
    "content": "from collections import Iterable\nfrom itertools import chain\nfrom re import search, sub\n\nfrom django import forms\nfrom django.db.models.fields import BLANK_CHOICE_DASH\nfrom django.forms.utils import flatatt\nfrom django.utils.datastructures import MultiValueDict\nfrom django.utils.encoding import force_text\nfrom django.utils.http import urlencode\nfrom django.utils.safestring import mark_safe\nfrom django.utils.translation import ugettext as _\n\n\nclass LinkWidget(forms.Widget):\n    def __init__(self, attrs=None, choices=()):\n        super().__init__(attrs)\n\n        self.choices = choices\n\n    def value_from_datadict(self, data, files, name):\n        value = super().value_from_datadict(data, files, name)\n        self.data = data\n        return value\n\n    def render(self, name, value, attrs=None, choices=(), renderer=None):\n        if not hasattr(self, 'data'):\n            self.data = {}\n        if value is None:\n            value = ''\n        final_attrs = self.build_attrs(self.attrs, extra_attrs=attrs)\n        output = ['<ul%s>' % flatatt(final_attrs)]\n        options = self.render_options(choices, [value], name)\n        if options:\n            output.append(options)\n        output.append('</ul>')\n        return mark_safe('\\n'.join(output))\n\n    def render_options(self, choices, selected_choices, name):\n        selected_choices = set(force_text(v) for v in selected_choices)\n        output = []\n        for option_value, option_label in chain(self.choices, choices):\n            if isinstance(option_label, (list, tuple)):\n                for option in option_label:\n                    output.append(\n                        self.render_option(name, selected_choices, *option))\n            else:\n                output.append(\n                    self.render_option(name, selected_choices,\n                                       option_value, option_label))\n        return '\\n'.join(output)\n\n    def render_option(self, name, selected_choices,\n                      option_value, option_label):\n        option_value = force_text(option_value)\n        if option_label == BLANK_CHOICE_DASH[0][1]:\n            option_label = _(\"All\")\n        data = self.data.copy()\n        data[name] = option_value\n        selected = data == self.data or option_value in selected_choices\n        try:\n            url = data.urlencode()\n        except AttributeError:\n            url = urlencode(data)\n        return self.option_string() % {\n            'attrs': selected and ' class=\"selected\"' or '',\n            'query_string': url,\n            'label': force_text(option_label)\n        }\n\n    def option_string(self):\n        return '<li><a%(attrs)s href=\"?%(query_string)s\">%(label)s</a></li>'\n\n\nclass SuffixedMultiWidget(forms.MultiWidget):\n    \"\"\"\n    A MultiWidget that allows users to provide custom suffixes instead of indexes.\n\n    - Suffixes must be unique.\n    - There must be the same number of suffixes as fields.\n    \"\"\"\n    suffixes = []\n\n    def __init__(self, *args, **kwargs):\n        super().__init__(*args, **kwargs)\n\n        assert len(self.widgets) == len(self.suffixes)\n        assert len(self.suffixes) == len(set(self.suffixes))\n\n    def suffixed(self, name, suffix):\n        return '_'.join([name, suffix]) if suffix else name\n\n    def get_context(self, name, value, attrs):\n        context = super().get_context(name, value, attrs)\n        for subcontext, suffix in zip(context['widget']['subwidgets'], self.suffixes):\n            subcontext['name'] = self.suffixed(name, suffix)\n\n        return context\n\n    def value_from_datadict(self, data, files, name):\n        return [\n            widget.value_from_datadict(data, files, self.suffixed(name, suffix))\n            for widget, suffix in zip(self.widgets, self.suffixes)\n        ]\n\n    def value_omitted_from_data(self, data, files, name):\n        return all(\n            widget.value_omitted_from_data(data, files, self.suffixed(name, suffix))\n            for widget, suffix in zip(self.widgets, self.suffixes)\n        )\n\n    def replace_name(self, output, index):\n        result = search(r'name=\"(?P<name>.*)_%d\"' % index, output)\n        name = result.group('name')\n        name = self.suffixed(name, self.suffixes[index])\n        name = 'name=\"%s\"' % name\n\n        return sub(r'name=\".*_%d\"' % index, name, output)\n\n    def decompress(self, value):\n        if value is None:\n            return [None, None]\n        return value\n\n\nclass RangeWidget(SuffixedMultiWidget):\n    template_name = 'jet_django.deps.django_filters/widgets/multiwidget.html'\n    suffixes = ['min', 'max']\n\n    def __init__(self, attrs=None):\n        widgets = (forms.TextInput, forms.TextInput)\n        super().__init__(widgets, attrs)\n\n    def decompress(self, value):\n        if value:\n            return [value.start, value.stop]\n        return [None, None]\n\n\nclass DateRangeWidget(RangeWidget):\n    suffixes = ['after', 'before']\n\n\nclass LookupChoiceWidget(SuffixedMultiWidget):\n    suffixes = [None, 'lookup']\n\n    def decompress(self, value):\n        if value is None:\n            return [None, None]\n        return value\n\n\nclass BooleanWidget(forms.Select):\n    \"\"\"Convert true/false values into the internal Python True/False.\n    This can be used for AJAX queries that pass true/false from JavaScript's\n    internal types through.\n    \"\"\"\n    def __init__(self, attrs=None):\n        choices = (('', _('Unknown')),\n                   ('true', _('Yes')),\n                   ('false', _('No')))\n        super().__init__(attrs, choices)\n\n    def render(self, name, value, attrs=None, renderer=None):\n        try:\n            value = {\n                True: 'true',\n                False: 'false',\n                '1': 'true',\n                '0': 'false'\n            }[value]\n        except KeyError:\n            value = ''\n        return super().render(name, value, attrs, renderer=renderer)\n\n    def value_from_datadict(self, data, files, name):\n        value = data.get(name, None)\n        if isinstance(value, str):\n            value = value.lower()\n\n        return {\n            '1': True,\n            '0': False,\n            'true': True,\n            'false': False,\n            True: True,\n            False: False,\n        }.get(value, None)\n\n\nclass BaseCSVWidget(forms.Widget):\n    def _isiterable(self, value):\n        return isinstance(value, Iterable) and not isinstance(value, str)\n\n    def value_from_datadict(self, data, files, name):\n        value = super().value_from_datadict(data, files, name)\n\n        if value is not None:\n            if value == '':  # empty value should parse as an empty list\n                return []\n            return value.split(',')\n        return None\n\n    def render(self, name, value, attrs=None, renderer=None):\n        if not self._isiterable(value):\n            value = [value]\n\n        if len(value) <= 1:\n            # delegate to main widget (Select, etc...) if not multiple values\n            value = value[0] if value else ''\n            return super().render(name, value, attrs, renderer=renderer)\n\n        # if we have multiple values, we need to force render as a text input\n        # (otherwise, the additional values are lost)\n        surrogate = forms.TextInput()\n        value = [force_text(surrogate.format_value(v)) for v in value]\n        value = ','.join(list(value))\n\n        return surrogate.render(name, value, attrs, renderer=renderer)\n\n\nclass CSVWidget(BaseCSVWidget, forms.TextInput):\n    pass\n\n\nclass QueryArrayWidget(BaseCSVWidget, forms.TextInput):\n    \"\"\"\n    Enables request query array notation that might be consumed by MultipleChoiceFilter\n\n    1. Values can be provided as csv string:  ?foo=bar,baz\n    2. Values can be provided as query array: ?foo[]=bar&foo[]=baz\n    3. Values can be provided as query array: ?foo=bar&foo=baz\n\n    Note: Duplicate and empty values are skipped from results\n    \"\"\"\n\n    def value_from_datadict(self, data, files, name):\n        if not isinstance(data, MultiValueDict):\n            for key, value in data.items():\n                # treat value as csv string: ?foo=1,2\n                if isinstance(value, str):\n                    data[key] = [x.strip() for x in value.rstrip(',').split(',') if x]\n            data = MultiValueDict(data)\n\n        values_list = data.getlist(name, data.getlist('%s[]' % name)) or []\n\n        # apparently its an array, so no need to process it's values as csv\n        # ?foo=1&foo=2 -> data.getlist(foo) -> foo = [1, 2]\n        # ?foo[]=1&foo[]=2 -> data.getlist(foo[]) -> foo = [1, 2]\n        if len(values_list) > 0:\n            ret = [x for x in values_list if x]\n        else:\n            ret = []\n\n        return list(set(ret))\n"
  },
  {
    "path": "jet_django/deps/rest_framework/__init__.py",
    "content": "r\"\"\"\n______ _____ _____ _____    __\n| ___ \\  ___/  ___|_   _|  / _|                                           | |\n| |_/ / |__ \\ `--.  | |   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| |__\n|    /|  __| `--. \\ | |   |  _| '__/ _` | '_ ` _ \\ / _ \\ \\ /\\ / / _ \\| '__| |/ /\n| |\\ \\| |___/\\__/ / | |   | | | | | (_| | | | | | |  __/\\ V  V / (_) | |  |   <\n\\_| \\_\\____/\\____/  \\_/   |_| |_|  \\__,_|_| |_| |_|\\___| \\_/\\_/ \\___/|_|  |_|\\_|\n\"\"\"\n\n__title__ = 'Django REST framework'\n__version__ = '3.8.2'\n__author__ = 'Tom Christie'\n__license__ = 'BSD 2-Clause'\n__copyright__ = 'Copyright 2011-2018 Tom Christie'\n\n# Version synonym\nVERSION = __version__\n\n# Header encoding (see RFC5987)\nHTTP_HEADER_ENCODING = 'iso-8859-1'\n\n# Default datetime input and output formats\nISO_8601 = 'iso-8601'\n\ndefault_app_config = 'jet_django.deps.rest_framework.apps.RestFrameworkConfig'\n"
  },
  {
    "path": "jet_django/deps/rest_framework/apps.py",
    "content": "from django.apps import AppConfig\n\n\nclass RestFrameworkConfig(AppConfig):\n    name = 'jet_django.deps.rest_framework'\n    verbose_name = \"Django REST framework\"\n\n    def ready(self):\n        # Add System checks\n        from .checks import pagination_system_check  # NOQA\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authentication.py",
    "content": "\"\"\"\nProvides various authentication policies.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport base64\nimport binascii\n\nfrom django.contrib.auth import get_user_model\nfrom django.middleware.csrf import CsrfViewMiddleware\nfrom django.utils.six import text_type\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import HTTP_HEADER_ENCODING, exceptions\nfrom jet_django.deps.rest_framework.compat import authenticate\n\n\ndef get_authorization_header(request):\n    \"\"\"\n    Return request's 'Authorization:' header, as a bytestring.\n\n    Hide some test client ickyness where the header can be unicode.\n    \"\"\"\n    auth = request.META.get('HTTP_AUTHORIZATION', b'')\n    if isinstance(auth, text_type):\n        # Work around django test client oddness\n        auth = auth.encode(HTTP_HEADER_ENCODING)\n    return auth\n\n\nclass CSRFCheck(CsrfViewMiddleware):\n    def _reject(self, request, reason):\n        # Return the failure reason instead of an HttpResponse\n        return reason\n\n\nclass BaseAuthentication(object):\n    \"\"\"\n    All authentication classes should extend BaseAuthentication.\n    \"\"\"\n\n    def authenticate(self, request):\n        \"\"\"\n        Authenticate the request and return a two-tuple of (user, token).\n        \"\"\"\n        raise NotImplementedError(\".authenticate() must be overridden.\")\n\n    def authenticate_header(self, request):\n        \"\"\"\n        Return a string to be used as the value of the `WWW-Authenticate`\n        header in a `401 Unauthenticated` response, or `None` if the\n        authentication scheme should return `403 Permission Denied` responses.\n        \"\"\"\n        pass\n\n\nclass BasicAuthentication(BaseAuthentication):\n    \"\"\"\n    HTTP Basic authentication against username/password.\n    \"\"\"\n    www_authenticate_realm = 'api'\n\n    def authenticate(self, request):\n        \"\"\"\n        Returns a `User` if a correct username and password have been supplied\n        using HTTP Basic authentication.  Otherwise returns `None`.\n        \"\"\"\n        auth = get_authorization_header(request).split()\n\n        if not auth or auth[0].lower() != b'basic':\n            return None\n\n        if len(auth) == 1:\n            msg = _('Invalid basic header. No credentials provided.')\n            raise exceptions.AuthenticationFailed(msg)\n        elif len(auth) > 2:\n            msg = _('Invalid basic header. Credentials string should not contain spaces.')\n            raise exceptions.AuthenticationFailed(msg)\n\n        try:\n            auth_parts = base64.b64decode(auth[1]).decode(HTTP_HEADER_ENCODING).partition(':')\n        except (TypeError, UnicodeDecodeError, binascii.Error):\n            msg = _('Invalid basic header. Credentials not correctly base64 encoded.')\n            raise exceptions.AuthenticationFailed(msg)\n\n        userid, password = auth_parts[0], auth_parts[2]\n        return self.authenticate_credentials(userid, password, request)\n\n    def authenticate_credentials(self, userid, password, request=None):\n        \"\"\"\n        Authenticate the userid and password against username and password\n        with optional request for context.\n        \"\"\"\n        credentials = {\n            get_user_model().USERNAME_FIELD: userid,\n            'password': password\n        }\n        user = authenticate(request=request, **credentials)\n\n        if user is None:\n            raise exceptions.AuthenticationFailed(_('Invalid username/password.'))\n\n        if not user.is_active:\n            raise exceptions.AuthenticationFailed(_('User inactive or deleted.'))\n\n        return (user, None)\n\n    def authenticate_header(self, request):\n        return 'Basic realm=\"%s\"' % self.www_authenticate_realm\n\n\nclass SessionAuthentication(BaseAuthentication):\n    \"\"\"\n    Use Django's session framework for authentication.\n    \"\"\"\n\n    def authenticate(self, request):\n        \"\"\"\n        Returns a `User` if the request session currently has a logged in user.\n        Otherwise returns `None`.\n        \"\"\"\n\n        # Get the session-based user from the underlying HttpRequest object\n        user = getattr(request._request, 'user', None)\n\n        # Unauthenticated, CSRF validation not required\n        if not user or not user.is_active:\n            return None\n\n        self.enforce_csrf(request)\n\n        # CSRF passed with authenticated user\n        return (user, None)\n\n    def enforce_csrf(self, request):\n        \"\"\"\n        Enforce CSRF validation for session based authentication.\n        \"\"\"\n        reason = CSRFCheck().process_view(request, None, (), {})\n        if reason:\n            # CSRF failed, bail with explicit error message\n            raise exceptions.PermissionDenied('CSRF Failed: %s' % reason)\n\n\nclass TokenAuthentication(BaseAuthentication):\n    \"\"\"\n    Simple token based authentication.\n\n    Clients should authenticate by passing the token key in the \"Authorization\"\n    HTTP header, prepended with the string \"Token \".  For example:\n\n        Authorization: Token 401f7ac837da42b97f613d789819ff93537bee6a\n    \"\"\"\n\n    keyword = 'Token'\n    model = None\n\n    def get_model(self):\n        if self.model is not None:\n            return self.model\n        from jet_django.deps.rest_framework.authtoken.models import Token\n        return Token\n\n    \"\"\"\n    A custom token model may be used, but must have the following properties.\n\n    * key -- The string identifying the token\n    * user -- The user to which the token belongs\n    \"\"\"\n\n    def authenticate(self, request):\n        auth = get_authorization_header(request).split()\n\n        if not auth or auth[0].lower() != self.keyword.lower().encode():\n            return None\n\n        if len(auth) == 1:\n            msg = _('Invalid token header. No credentials provided.')\n            raise exceptions.AuthenticationFailed(msg)\n        elif len(auth) > 2:\n            msg = _('Invalid token header. Token string should not contain spaces.')\n            raise exceptions.AuthenticationFailed(msg)\n\n        try:\n            token = auth[1].decode()\n        except UnicodeError:\n            msg = _('Invalid token header. Token string should not contain invalid characters.')\n            raise exceptions.AuthenticationFailed(msg)\n\n        return self.authenticate_credentials(token)\n\n    def authenticate_credentials(self, key):\n        model = self.get_model()\n        try:\n            token = model.objects.select_related('user').get(key=key)\n        except model.DoesNotExist:\n            raise exceptions.AuthenticationFailed(_('Invalid token.'))\n\n        if not token.user.is_active:\n            raise exceptions.AuthenticationFailed(_('User inactive or deleted.'))\n\n        return (token.user, token)\n\n    def authenticate_header(self, request):\n        return self.keyword\n\n\nclass RemoteUserAuthentication(BaseAuthentication):\n    \"\"\"\n    REMOTE_USER authentication.\n\n    To use this, set up your web server to perform authentication, which will\n    set the REMOTE_USER environment variable. You will need to have\n    'django.contrib.auth.backends.RemoteUserBackend in your\n    AUTHENTICATION_BACKENDS setting\n    \"\"\"\n\n    # Name of request header to grab username from.  This will be the key as\n    # used in the request.META dictionary, i.e. the normalization of headers to\n    # all uppercase and the addition of \"HTTP_\" prefix apply.\n    header = \"REMOTE_USER\"\n\n    def authenticate(self, request):\n        user = authenticate(remote_user=request.META.get(self.header))\n        if user and user.is_active:\n            return (user, None)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/__init__.py",
    "content": "default_app_config = 'jet_django.deps.rest_framework.authtoken.apps.AuthTokenConfig'\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/admin.py",
    "content": "from django.contrib import admin\n\nfrom jet_django.deps.rest_framework.authtoken.models import Token\n\n\nclass TokenAdmin(admin.ModelAdmin):\n    list_display = ('key', 'user', 'created')\n    fields = ('user',)\n    ordering = ('-created',)\n\n\nadmin.site.register(Token, TokenAdmin)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/apps.py",
    "content": "from django.apps import AppConfig\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass AuthTokenConfig(AppConfig):\n    name = 'jet_django.deps.rest_framework.authtoken'\n    verbose_name = _(\"Auth Token\")\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/management/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/management/commands/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/management/commands/drf_create_token.py",
    "content": "from django.contrib.auth import get_user_model\nfrom django.core.management.base import BaseCommand, CommandError\n\nfrom jet_django.deps.rest_framework.authtoken.models import Token\n\nUserModel = get_user_model()\n\n\nclass Command(BaseCommand):\n    help = 'Create DRF Token for a given user'\n\n    def create_user_token(self, username, reset_token):\n        user = UserModel._default_manager.get_by_natural_key(username)\n\n        if reset_token:\n            Token.objects.filter(user=user).delete()\n\n        token = Token.objects.get_or_create(user=user)\n        return token[0]\n\n    def add_arguments(self, parser):\n        parser.add_argument('username', type=str)\n\n        parser.add_argument(\n            '-r',\n            '--reset',\n            action='store_true',\n            dest='reset_token',\n            default=False,\n            help='Reset existing User token and create a new one',\n        )\n\n    def handle(self, *args, **options):\n        username = options['username']\n        reset_token = options['reset_token']\n\n        try:\n            token = self.create_user_token(username, reset_token)\n        except UserModel.DoesNotExist:\n            raise CommandError(\n                'Cannot create the Token: user {0} does not exist'.format(\n                    username)\n            )\n        self.stdout.write(\n            'Generated token {0} for user {1}'.format(token.key, username))\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/migrations/0001_initial.py",
    "content": "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\n\nfrom django.conf import settings\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        migrations.swappable_dependency(settings.AUTH_USER_MODEL),\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name='Token',\n            fields=[\n                ('key', models.CharField(primary_key=True, serialize=False, max_length=40)),\n                ('created', models.DateTimeField(auto_now_add=True)),\n                ('user', models.OneToOneField(to=settings.AUTH_USER_MODEL, related_name='auth_token', on_delete=models.CASCADE)),\n            ],\n            options={\n            },\n            bases=(models.Model,),\n        ),\n    ]\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/migrations/0002_auto_20160226_1747.py",
    "content": "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\n\nfrom django.conf import settings\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('authtoken', '0001_initial'),\n    ]\n\n    operations = [\n        migrations.AlterModelOptions(\n            name='token',\n            options={'verbose_name_plural': 'Tokens', 'verbose_name': 'Token'},\n        ),\n        migrations.AlterField(\n            model_name='token',\n            name='created',\n            field=models.DateTimeField(verbose_name='Created', auto_now_add=True),\n        ),\n        migrations.AlterField(\n            model_name='token',\n            name='key',\n            field=models.CharField(verbose_name='Key', max_length=40, primary_key=True, serialize=False),\n        ),\n        migrations.AlterField(\n            model_name='token',\n            name='user',\n            field=models.OneToOneField(to=settings.AUTH_USER_MODEL, verbose_name='User', related_name='auth_token', on_delete=models.CASCADE),\n        ),\n    ]\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/models.py",
    "content": "import binascii\nimport os\n\nfrom django.conf import settings\nfrom django.db import models\nfrom django.utils.encoding import python_2_unicode_compatible\nfrom django.utils.translation import ugettext_lazy as _\n\n\n@python_2_unicode_compatible\nclass Token(models.Model):\n    \"\"\"\n    The default authorization token model.\n    \"\"\"\n    key = models.CharField(_(\"Key\"), max_length=40, primary_key=True)\n    user = models.OneToOneField(\n        settings.AUTH_USER_MODEL, related_name='auth_token',\n        on_delete=models.CASCADE, verbose_name=_(\"User\")\n    )\n    created = models.DateTimeField(_(\"Created\"), auto_now_add=True)\n\n    class Meta:\n        # Work around for a bug in Django:\n        # https://code.djangoproject.com/ticket/19422\n        #\n        # Also see corresponding ticket:\n        # https://github.com/encode/django-rest-framework/issues/705\n        abstract = 'jet_django.deps.rest_framework.authtoken' not in settings.INSTALLED_APPS\n        verbose_name = _(\"Token\")\n        verbose_name_plural = _(\"Tokens\")\n\n    def save(self, *args, **kwargs):\n        if not self.key:\n            self.key = self.generate_key()\n        return super(Token, self).save(*args, **kwargs)\n\n    def generate_key(self):\n        return binascii.hexlify(os.urandom(20)).decode()\n\n    def __str__(self):\n        return self.key\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/serializers.py",
    "content": "from django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import serializers\nfrom jet_django.deps.rest_framework.compat import authenticate\n\n\nclass AuthTokenSerializer(serializers.Serializer):\n    username = serializers.CharField(label=_(\"Username\"))\n    password = serializers.CharField(\n        label=_(\"Password\"),\n        style={'input_type': 'password'},\n        trim_whitespace=False\n    )\n\n    def validate(self, attrs):\n        username = attrs.get('username')\n        password = attrs.get('password')\n\n        if username and password:\n            user = authenticate(request=self.context.get('request'),\n                                username=username, password=password)\n\n            # The authenticate call simply returns None for is_active=False\n            # users. (Assuming the default ModelBackend authentication\n            # backend.)\n            if not user:\n                msg = _('Unable to log in with provided credentials.')\n                raise serializers.ValidationError(msg, code='authorization')\n        else:\n            msg = _('Must include \"username\" and \"password\".')\n            raise serializers.ValidationError(msg, code='authorization')\n\n        attrs['user'] = user\n        return attrs\n"
  },
  {
    "path": "jet_django/deps/rest_framework/authtoken/views.py",
    "content": "from jet_django.deps.rest_framework import parsers, renderers\nfrom jet_django.deps.rest_framework.authtoken.models import Token\nfrom jet_django.deps.rest_framework.authtoken.serializers import AuthTokenSerializer\nfrom jet_django.deps.rest_framework.compat import coreapi, coreschema\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.schemas import ManualSchema\nfrom jet_django.deps.rest_framework.views import APIView\n\n\nclass ObtainAuthToken(APIView):\n    throttle_classes = ()\n    permission_classes = ()\n    parser_classes = (parsers.FormParser, parsers.MultiPartParser, parsers.JSONParser,)\n    renderer_classes = (renderers.JSONRenderer,)\n    serializer_class = AuthTokenSerializer\n    if coreapi is not None and coreschema is not None:\n        schema = ManualSchema(\n            fields=[\n                coreapi.Field(\n                    name=\"username\",\n                    required=True,\n                    location='form',\n                    schema=coreschema.String(\n                        title=\"Username\",\n                        description=\"Valid username for authentication\",\n                    ),\n                ),\n                coreapi.Field(\n                    name=\"password\",\n                    required=True,\n                    location='form',\n                    schema=coreschema.String(\n                        title=\"Password\",\n                        description=\"Valid password for authentication\",\n                    ),\n                ),\n            ],\n            encoding=\"application/json\",\n        )\n\n    def post(self, request, *args, **kwargs):\n        serializer = self.serializer_class(data=request.data,\n                                           context={'request': request})\n        serializer.is_valid(raise_exception=True)\n        user = serializer.validated_data['user']\n        token, created = Token.objects.get_or_create(user=user)\n        return Response({'token': token.key})\n\n\nobtain_auth_token = ObtainAuthToken.as_view()\n"
  },
  {
    "path": "jet_django/deps/rest_framework/checks.py",
    "content": "from django.core.checks import Tags, Warning, register\n\n\n@register(Tags.compatibility)\ndef pagination_system_check(app_configs, **kwargs):\n    errors = []\n    # Use of default page size setting requires a default Paginator class\n    from jet_django.deps.rest_framework.settings import api_settings\n    if api_settings.PAGE_SIZE and not api_settings.DEFAULT_PAGINATION_CLASS:\n        errors.append(\n            Warning(\n                \"You have specified a default PAGE_SIZE pagination rest_framework setting,\"\n                \"without specifying also a DEFAULT_PAGINATION_CLASS.\",\n                hint=\"The default for DEFAULT_PAGINATION_CLASS is None. \"\n                     \"In previous versions this was PageNumberPagination. \"\n                     \"If you wish to define PAGE_SIZE globally whilst defining \"\n                     \"pagination_class on a per-view basis you may silence this check.\",\n                id=\"rest_framework.W001\"\n            )\n        )\n    return errors\n"
  },
  {
    "path": "jet_django/deps/rest_framework/compat.py",
    "content": "\"\"\"\nThe `compat` module provides support for backwards compatibility with older\nversions of Django/Python, and compatibility wrappers around optional packages.\n\"\"\"\n\nfrom __future__ import unicode_literals\n\nimport django\nfrom django.conf import settings\nfrom django.core import validators\nfrom django.utils import six\nfrom django.views.generic import View\n\ntry:\n    from django.urls import (  # noqa\n        URLPattern,\n        URLResolver,\n    )\nexcept ImportError:\n    # Will be removed in Django 2.0\n    from django.urls import (  # noqa\n        RegexURLPattern as URLPattern,\n        RegexURLResolver as URLResolver,\n    )\n\n\ndef get_original_route(urlpattern):\n    \"\"\"\n    Get the original route/regex that was typed in by the user into the path(), re_path() or url() directive. This\n    is in contrast with get_regex_pattern below, which for RoutePattern returns the raw regex generated from the path().\n    \"\"\"\n    if hasattr(urlpattern, 'pattern'):\n        # Django 2.0\n        return str(urlpattern.pattern)\n    else:\n        # Django < 2.0\n        return urlpattern.regex.pattern\n\n\ndef get_regex_pattern(urlpattern):\n    \"\"\"\n    Get the raw regex out of the urlpattern's RegexPattern or RoutePattern. This is always a regular expression,\n    unlike get_original_route above.\n    \"\"\"\n    if hasattr(urlpattern, 'pattern'):\n        # Django 2.0\n        return urlpattern.pattern.regex.pattern\n    else:\n        # Django < 2.0\n        return urlpattern.regex.pattern\n\n\ndef is_route_pattern(urlpattern):\n    if hasattr(urlpattern, 'pattern'):\n        # Django 2.0\n        from django.urls.resolvers import RoutePattern\n        return isinstance(urlpattern.pattern, RoutePattern)\n    else:\n        # Django < 2.0\n        return False\n\n\ndef make_url_resolver(regex, urlpatterns):\n    try:\n        # Django 2.0\n        from django.urls.resolvers import RegexPattern\n        return URLResolver(RegexPattern(regex), urlpatterns)\n\n    except ImportError:\n        # Django < 2.0\n        return URLResolver(regex, urlpatterns)\n\n\ndef unicode_repr(instance):\n    # Get the repr of an instance, but ensure it is a unicode string\n    # on both python 3 (already the case) and 2 (not the case).\n    if six.PY2:\n        return repr(instance).decode('utf-8')\n    return repr(instance)\n\n\ndef unicode_to_repr(value):\n    # Coerce a unicode string to the correct repr return type, depending on\n    # the Python version. We wrap all our `__repr__` implementations with\n    # this and then use unicode throughout internally.\n    if six.PY2:\n        return value.encode('utf-8')\n    return value\n\n\ndef unicode_http_header(value):\n    # Coerce HTTP header value to unicode.\n    if isinstance(value, six.binary_type):\n        return value.decode('iso-8859-1')\n    return value\n\n\ndef distinct(queryset, base):\n    if settings.DATABASES[queryset.db][\"ENGINE\"] == \"django.db.backends.oracle\":\n        # distinct analogue for Oracle users\n        return base.filter(pk__in=set(queryset.values_list('pk', flat=True)))\n    return queryset.distinct()\n\n\n# django.contrib.postgres requires psycopg2\ntry:\n    from django.contrib.postgres import fields as postgres_fields\nexcept ImportError:\n    postgres_fields = None\n\n\n# coreapi is optional (Note that uritemplate is a dependency of coreapi)\ntry:\n    import coreapi\n    import uritemplate\nexcept ImportError:\n    coreapi = None\n    uritemplate = None\n\n\n# coreschema is optional\ntry:\n    import coreschema\nexcept ImportError:\n    coreschema = None\n\n\n# django-crispy-forms is optional\ntry:\n    import crispy_forms\nexcept ImportError:\n    crispy_forms = None\n\n\n# requests is optional\ntry:\n    import requests\nexcept ImportError:\n    requests = None\n\n\n# Django-guardian is optional. Import only if guardian is in INSTALLED_APPS\n# Fixes (#1712). We keep the try/except for the test suite.\nguardian = None\ntry:\n    if 'guardian' in settings.INSTALLED_APPS:\n        import guardian  # noqa\nexcept ImportError:\n    pass\n\n\n# PATCH method is not implemented by Django\nif 'patch' not in View.http_method_names:\n    View.http_method_names = View.http_method_names + ['patch']\n\n\n# Markdown is optional\ntry:\n    import markdown\n\n    if markdown.version <= '2.2':\n        HEADERID_EXT_PATH = 'headerid'\n        LEVEL_PARAM = 'level'\n    elif markdown.version < '2.6':\n        HEADERID_EXT_PATH = 'markdown.extensions.headerid'\n        LEVEL_PARAM = 'level'\n    else:\n        HEADERID_EXT_PATH = 'markdown.extensions.toc'\n        LEVEL_PARAM = 'baselevel'\n\n    def apply_markdown(text):\n        \"\"\"\n        Simple wrapper around :func:`markdown.markdown` to set the base level\n        of '#' style headers to <h2>.\n        \"\"\"\n        extensions = [HEADERID_EXT_PATH]\n        extension_configs = {\n            HEADERID_EXT_PATH: {\n                LEVEL_PARAM: '2'\n            }\n        }\n        md = markdown.Markdown(\n            extensions=extensions, extension_configs=extension_configs\n        )\n        md_filter_add_syntax_highlight(md)\n        return md.convert(text)\nexcept ImportError:\n    apply_markdown = None\n    markdown = None\n\n\ntry:\n    import pygments\n    from pygments.lexers import get_lexer_by_name, TextLexer\n    from pygments.formatters import HtmlFormatter\n\n    def pygments_highlight(text, lang, style):\n        lexer = get_lexer_by_name(lang, stripall=False)\n        formatter = HtmlFormatter(nowrap=True, style=style)\n        return pygments.highlight(text, lexer, formatter)\n\n    def pygments_css(style):\n        formatter = HtmlFormatter(style=style)\n        return formatter.get_style_defs('.highlight')\n\nexcept ImportError:\n    pygments = None\n\n    def pygments_highlight(text, lang, style):\n        return text\n\n    def pygments_css(style):\n        return None\n\nif markdown is not None and pygments is not None:\n    # starting from this blogpost and modified to support current markdown extensions API\n    # https://zerokspot.com/weblog/2008/06/18/syntax-highlighting-in-markdown-with-pygments/\n\n    from markdown.preprocessors import Preprocessor\n    import re\n\n    class CodeBlockPreprocessor(Preprocessor):\n        pattern = re.compile(\n            r'^\\s*``` *([^\\n]+)\\n(.+?)^\\s*```', re.M | re.S)\n\n        formatter = HtmlFormatter()\n\n        def run(self, lines):\n            def repl(m):\n                try:\n                    lexer = get_lexer_by_name(m.group(1))\n                except (ValueError, NameError):\n                    lexer = TextLexer()\n                code = m.group(2).replace('\\t', '    ')\n                code = pygments.highlight(code, lexer, self.formatter)\n                code = code.replace('\\n\\n', '\\n&nbsp;\\n').replace('\\n', '<br />').replace('\\\\@', '@')\n                return '\\n\\n%s\\n\\n' % code\n            ret = self.pattern.sub(repl, \"\\n\".join(lines))\n            return ret.split(\"\\n\")\n\n    def md_filter_add_syntax_highlight(md):\n        md.preprocessors.add('highlight', CodeBlockPreprocessor(), \"_begin\")\n        return True\nelse:\n    def md_filter_add_syntax_highlight(md):\n        return False\n\n# pytz is required from Django 1.11. Remove when dropping Django 1.10 support.\ntry:\n    import pytz  # noqa\n    from pytz.exceptions import InvalidTimeError\nexcept ImportError:\n    InvalidTimeError = Exception\n\n# Django 1.x url routing syntax. Remove when dropping Django 1.11 support.\ntry:\n    from django.urls import include, path, re_path, register_converter  # noqa\nexcept ImportError:\n    from django.conf.urls import include, url # noqa\n    path = None\n    register_converter = None\n    re_path = url\n\n\n# `separators` argument to `json.dumps()` differs between 2.x and 3.x\n# See: https://bugs.python.org/issue22767\nif six.PY3:\n    SHORT_SEPARATORS = (',', ':')\n    LONG_SEPARATORS = (', ', ': ')\n    INDENT_SEPARATORS = (',', ': ')\nelse:\n    SHORT_SEPARATORS = (b',', b':')\n    LONG_SEPARATORS = (b', ', b': ')\n    INDENT_SEPARATORS = (b',', b': ')\n\n\nclass CustomValidatorMessage(object):\n    \"\"\"\n    We need to avoid evaluation of `lazy` translated `message` in `django.core.validators.BaseValidator.__init__`.\n    https://github.com/django/django/blob/75ed5900321d170debef4ac452b8b3cf8a1c2384/django/core/validators.py#L297\n\n    Ref: https://github.com/encode/django-rest-framework/pull/5452\n    \"\"\"\n\n    def __init__(self, *args, **kwargs):\n        self.message = kwargs.pop('message', self.message)\n        super(CustomValidatorMessage, self).__init__(*args, **kwargs)\n\n\nclass MinValueValidator(CustomValidatorMessage, validators.MinValueValidator):\n    pass\n\n\nclass MaxValueValidator(CustomValidatorMessage, validators.MaxValueValidator):\n    pass\n\n\nclass MinLengthValidator(CustomValidatorMessage, validators.MinLengthValidator):\n    pass\n\n\nclass MaxLengthValidator(CustomValidatorMessage, validators.MaxLengthValidator):\n    pass\n\n\ndef authenticate(request=None, **credentials):\n    from django.contrib.auth import authenticate\n    if django.VERSION < (1, 11):\n        return authenticate(**credentials)\n    else:\n        return authenticate(request=request, **credentials)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/decorators.py",
    "content": "\"\"\"\nThe most important decorator in this module is `@api_view`, which is used\nfor writing function-based views with REST framework.\n\nThere are also various decorators for setting the API policies on function\nbased views, as well as the `@detail_route` and `@list_route` decorators, which are\nused to annotate methods on viewsets that should be included by routers.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport types\nimport warnings\n\nfrom django.utils import six\n\nfrom jet_django.deps.rest_framework.views import APIView\n\n\ndef api_view(http_method_names=None, exclude_from_schema=False):\n    \"\"\"\n    Decorator that converts a function-based view into an APIView subclass.\n    Takes a list of allowed methods for the view as an argument.\n    \"\"\"\n    http_method_names = ['GET'] if (http_method_names is None) else http_method_names\n\n    def decorator(func):\n\n        WrappedAPIView = type(\n            six.PY3 and 'WrappedAPIView' or b'WrappedAPIView',\n            (APIView,),\n            {'__doc__': func.__doc__}\n        )\n\n        # Note, the above allows us to set the docstring.\n        # It is the equivalent of:\n        #\n        #     class WrappedAPIView(APIView):\n        #         pass\n        #     WrappedAPIView.__doc__ = func.doc    <--- Not possible to do this\n\n        # api_view applied without (method_names)\n        assert not(isinstance(http_method_names, types.FunctionType)), \\\n            '@api_view missing list of allowed HTTP methods'\n\n        # api_view applied with eg. string instead of list of strings\n        assert isinstance(http_method_names, (list, tuple)), \\\n            '@api_view expected a list of strings, received %s' % type(http_method_names).__name__\n\n        allowed_methods = set(http_method_names) | {'options'}\n        WrappedAPIView.http_method_names = [method.lower() for method in allowed_methods]\n\n        def handler(self, *args, **kwargs):\n            return func(*args, **kwargs)\n\n        for method in http_method_names:\n            setattr(WrappedAPIView, method.lower(), handler)\n\n        WrappedAPIView.__name__ = func.__name__\n        WrappedAPIView.__module__ = func.__module__\n\n        WrappedAPIView.renderer_classes = getattr(func, 'renderer_classes',\n                                                  APIView.renderer_classes)\n\n        WrappedAPIView.parser_classes = getattr(func, 'parser_classes',\n                                                APIView.parser_classes)\n\n        WrappedAPIView.authentication_classes = getattr(func, 'authentication_classes',\n                                                        APIView.authentication_classes)\n\n        WrappedAPIView.throttle_classes = getattr(func, 'throttle_classes',\n                                                  APIView.throttle_classes)\n\n        WrappedAPIView.permission_classes = getattr(func, 'permission_classes',\n                                                    APIView.permission_classes)\n\n        WrappedAPIView.schema = getattr(func, 'schema',\n                                        APIView.schema)\n\n        if exclude_from_schema:\n            warnings.warn(\n                \"The `exclude_from_schema` argument to `api_view` is deprecated. \"\n                \"Use the `schema` decorator instead, passing `None`.\",\n                DeprecationWarning\n            )\n            WrappedAPIView.exclude_from_schema = exclude_from_schema\n\n        return WrappedAPIView.as_view()\n    return decorator\n\n\ndef renderer_classes(renderer_classes):\n    def decorator(func):\n        func.renderer_classes = renderer_classes\n        return func\n    return decorator\n\n\ndef parser_classes(parser_classes):\n    def decorator(func):\n        func.parser_classes = parser_classes\n        return func\n    return decorator\n\n\ndef authentication_classes(authentication_classes):\n    def decorator(func):\n        func.authentication_classes = authentication_classes\n        return func\n    return decorator\n\n\ndef throttle_classes(throttle_classes):\n    def decorator(func):\n        func.throttle_classes = throttle_classes\n        return func\n    return decorator\n\n\ndef permission_classes(permission_classes):\n    def decorator(func):\n        func.permission_classes = permission_classes\n        return func\n    return decorator\n\n\ndef schema(view_inspector):\n    def decorator(func):\n        func.schema = view_inspector\n        return func\n    return decorator\n\n\ndef action(methods=None, detail=None, url_path=None, url_name=None, **kwargs):\n    \"\"\"\n    Mark a ViewSet method as a routable action.\n\n    Set the `detail` boolean to determine if this action should apply to\n    instance/detail requests or collection/list requests.\n    \"\"\"\n    methods = ['get'] if (methods is None) else methods\n    methods = [method.lower() for method in methods]\n\n    assert detail is not None, (\n        \"@action() missing required argument: 'detail'\"\n    )\n\n    def decorator(func):\n        func.bind_to_methods = methods\n        func.detail = detail\n        func.url_path = url_path if url_path else func.__name__\n        func.url_name = url_name if url_name else func.__name__.replace('_', '-')\n        func.kwargs = kwargs\n        return func\n    return decorator\n\n\ndef detail_route(methods=None, **kwargs):\n    \"\"\"\n    Used to mark a method on a ViewSet that should be routed for detail requests.\n    \"\"\"\n    warnings.warn(\n        \"`detail_route` is pending deprecation and will be removed in 3.10 in favor of \"\n        \"`action`, which accepts a `detail` bool. Use `@action(detail=True)` instead.\",\n        PendingDeprecationWarning, stacklevel=2\n    )\n\n    def decorator(func):\n        func = action(methods, detail=True, **kwargs)(func)\n        if 'url_name' not in kwargs:\n            func.url_name = func.url_path.replace('_', '-')\n        return func\n    return decorator\n\n\ndef list_route(methods=None, **kwargs):\n    \"\"\"\n    Used to mark a method on a ViewSet that should be routed for list requests.\n    \"\"\"\n    warnings.warn(\n        \"`list_route` is pending deprecation and will be removed in 3.10 in favor of \"\n        \"`action`, which accepts a `detail` bool. Use `@action(detail=False)` instead.\",\n        PendingDeprecationWarning, stacklevel=2\n    )\n\n    def decorator(func):\n        func = action(methods, detail=False, **kwargs)(func)\n        if 'url_name' not in kwargs:\n            func.url_name = func.url_path.replace('_', '-')\n        return func\n    return decorator\n"
  },
  {
    "path": "jet_django/deps/rest_framework/documentation.py",
    "content": "from django.conf.urls import include, url\n\nfrom jet_django.deps.rest_framework.renderers import (\n    CoreJSONRenderer, DocumentationRenderer, SchemaJSRenderer\n)\nfrom jet_django.deps.rest_framework.schemas import SchemaGenerator, get_schema_view\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\ndef get_docs_view(\n        title=None, description=None, schema_url=None, public=True,\n        patterns=None, generator_class=SchemaGenerator,\n        authentication_classes=api_settings.DEFAULT_AUTHENTICATION_CLASSES,\n        permission_classes=api_settings.DEFAULT_PERMISSION_CLASSES,\n        renderer_classes=None):\n\n    if renderer_classes is None:\n        renderer_classes = [DocumentationRenderer, CoreJSONRenderer]\n\n    return get_schema_view(\n        title=title,\n        url=schema_url,\n        description=description,\n        renderer_classes=renderer_classes,\n        public=public,\n        patterns=patterns,\n        generator_class=generator_class,\n        authentication_classes=authentication_classes,\n        permission_classes=permission_classes,\n    )\n\n\ndef get_schemajs_view(\n        title=None, description=None, schema_url=None, public=True,\n        patterns=None, generator_class=SchemaGenerator,\n        authentication_classes=api_settings.DEFAULT_AUTHENTICATION_CLASSES,\n        permission_classes=api_settings.DEFAULT_PERMISSION_CLASSES):\n    renderer_classes = [SchemaJSRenderer]\n\n    return get_schema_view(\n        title=title,\n        url=schema_url,\n        description=description,\n        renderer_classes=renderer_classes,\n        public=public,\n        patterns=patterns,\n        generator_class=generator_class,\n        authentication_classes=authentication_classes,\n        permission_classes=permission_classes,\n    )\n\n\ndef include_docs_urls(\n        title=None, description=None, schema_url=None, public=True,\n        patterns=None, generator_class=SchemaGenerator,\n        authentication_classes=api_settings.DEFAULT_AUTHENTICATION_CLASSES,\n        permission_classes=api_settings.DEFAULT_PERMISSION_CLASSES,\n        renderer_classes=None):\n    docs_view = get_docs_view(\n        title=title,\n        description=description,\n        schema_url=schema_url,\n        public=public,\n        patterns=patterns,\n        generator_class=generator_class,\n        authentication_classes=authentication_classes,\n        renderer_classes=renderer_classes,\n        permission_classes=permission_classes,\n    )\n    schema_js_view = get_schemajs_view(\n        title=title,\n        description=description,\n        schema_url=schema_url,\n        public=public,\n        patterns=patterns,\n        generator_class=generator_class,\n        authentication_classes=authentication_classes,\n        permission_classes=permission_classes,\n    )\n    urls = [\n        url(r'^$', docs_view, name='docs-index'),\n        url(r'^schema.js$', schema_js_view, name='schema-js')\n    ]\n    return include((urls, 'api-docs'), namespace='api-docs')\n"
  },
  {
    "path": "jet_django/deps/rest_framework/exceptions.py",
    "content": "\"\"\"\nHandled exceptions raised by REST framework.\n\nIn addition Django's built in 403 and 404 exceptions are handled.\n(`django.http.Http404` and `django.core.exceptions.PermissionDenied`)\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport math\n\nfrom django.http import JsonResponse\nfrom django.utils import six\nfrom django.utils.encoding import force_text\nfrom django.utils.translation import ugettext_lazy as _\nfrom django.utils.translation import ungettext\n\nfrom jet_django.deps.rest_framework import status\nfrom jet_django.deps.rest_framework.compat import unicode_to_repr\nfrom jet_django.deps.rest_framework.utils.serializer_helpers import ReturnDict, ReturnList\n\n\ndef _get_error_details(data, default_code=None):\n    \"\"\"\n    Descend into a nested data structure, forcing any\n    lazy translation strings or strings into `ErrorDetail`.\n    \"\"\"\n    if isinstance(data, list):\n        ret = [\n            _get_error_details(item, default_code) for item in data\n        ]\n        if isinstance(data, ReturnList):\n            return ReturnList(ret, serializer=data.serializer)\n        return ret\n    elif isinstance(data, dict):\n        ret = {\n            key: _get_error_details(value, default_code)\n            for key, value in data.items()\n        }\n        if isinstance(data, ReturnDict):\n            return ReturnDict(ret, serializer=data.serializer)\n        return ret\n\n    text = force_text(data)\n    code = getattr(data, 'code', default_code)\n    return ErrorDetail(text, code)\n\n\ndef _get_codes(detail):\n    if isinstance(detail, list):\n        return [_get_codes(item) for item in detail]\n    elif isinstance(detail, dict):\n        return {key: _get_codes(value) for key, value in detail.items()}\n    return detail.code\n\n\ndef _get_full_details(detail):\n    if isinstance(detail, list):\n        return [_get_full_details(item) for item in detail]\n    elif isinstance(detail, dict):\n        return {key: _get_full_details(value) for key, value in detail.items()}\n    return {\n        'message': detail,\n        'code': detail.code\n    }\n\n\nclass ErrorDetail(six.text_type):\n    \"\"\"\n    A string-like object that can additionally have a code.\n    \"\"\"\n    code = None\n\n    def __new__(cls, string, code=None):\n        self = super(ErrorDetail, cls).__new__(cls, string)\n        self.code = code\n        return self\n\n    def __eq__(self, other):\n        r = super(ErrorDetail, self).__eq__(other)\n        try:\n            return r and self.code == other.code\n        except AttributeError:\n            return r\n\n    def __ne__(self, other):\n        return not self.__eq__(other)\n\n    def __repr__(self):\n        return unicode_to_repr('ErrorDetail(string=%r, code=%r)' % (\n            six.text_type(self),\n            self.code,\n        ))\n\n\nclass APIException(Exception):\n    \"\"\"\n    Base class for REST framework exceptions.\n    Subclasses should provide `.status_code` and `.default_detail` properties.\n    \"\"\"\n    status_code = status.HTTP_500_INTERNAL_SERVER_ERROR\n    default_detail = _('A server error occurred.')\n    default_code = 'error'\n\n    def __init__(self, detail=None, code=None):\n        if detail is None:\n            detail = self.default_detail\n        if code is None:\n            code = self.default_code\n\n        self.detail = _get_error_details(detail, code)\n\n    def __str__(self):\n        return six.text_type(self.detail)\n\n    def get_codes(self):\n        \"\"\"\n        Return only the code part of the error details.\n\n        Eg. {\"name\": [\"required\"]}\n        \"\"\"\n        return _get_codes(self.detail)\n\n    def get_full_details(self):\n        \"\"\"\n        Return both the message & code parts of the error details.\n\n        Eg. {\"name\": [{\"message\": \"This field is required.\", \"code\": \"required\"}]}\n        \"\"\"\n        return _get_full_details(self.detail)\n\n\n# The recommended style for using `ValidationError` is to keep it namespaced\n# under `serializers`, in order to minimize potential confusion with Django's\n# built in `ValidationError`. For example:\n#\n# from jet_django.deps.rest_framework import serializers\n# raise serializers.ValidationError('Value was invalid')\n\nclass ValidationError(APIException):\n    status_code = status.HTTP_400_BAD_REQUEST\n    default_detail = _('Invalid input.')\n    default_code = 'invalid'\n\n    def __init__(self, detail=None, code=None):\n        if detail is None:\n            detail = self.default_detail\n        if code is None:\n            code = self.default_code\n\n        # For validation failures, we may collect many errors together,\n        # so the details should always be coerced to a list if not already.\n        if not isinstance(detail, dict) and not isinstance(detail, list):\n            detail = [detail]\n\n        self.detail = _get_error_details(detail, code)\n\n\nclass ParseError(APIException):\n    status_code = status.HTTP_400_BAD_REQUEST\n    default_detail = _('Malformed request.')\n    default_code = 'parse_error'\n\n\nclass AuthenticationFailed(APIException):\n    status_code = status.HTTP_401_UNAUTHORIZED\n    default_detail = _('Incorrect authentication credentials.')\n    default_code = 'authentication_failed'\n\n\nclass NotAuthenticated(APIException):\n    status_code = status.HTTP_401_UNAUTHORIZED\n    default_detail = _('Authentication credentials were not provided.')\n    default_code = 'not_authenticated'\n\n\nclass PermissionDenied(APIException):\n    status_code = status.HTTP_403_FORBIDDEN\n    default_detail = _('You do not have permission to perform this action.')\n    default_code = 'permission_denied'\n\n\nclass NotFound(APIException):\n    status_code = status.HTTP_404_NOT_FOUND\n    default_detail = _('Not found.')\n    default_code = 'not_found'\n\n\nclass MethodNotAllowed(APIException):\n    status_code = status.HTTP_405_METHOD_NOT_ALLOWED\n    default_detail = _('Method \"{method}\" not allowed.')\n    default_code = 'method_not_allowed'\n\n    def __init__(self, method, detail=None, code=None):\n        if detail is None:\n            detail = force_text(self.default_detail).format(method=method)\n        super(MethodNotAllowed, self).__init__(detail, code)\n\n\nclass NotAcceptable(APIException):\n    status_code = status.HTTP_406_NOT_ACCEPTABLE\n    default_detail = _('Could not satisfy the request Accept header.')\n    default_code = 'not_acceptable'\n\n    def __init__(self, detail=None, code=None, available_renderers=None):\n        self.available_renderers = available_renderers\n        super(NotAcceptable, self).__init__(detail, code)\n\n\nclass UnsupportedMediaType(APIException):\n    status_code = status.HTTP_415_UNSUPPORTED_MEDIA_TYPE\n    default_detail = _('Unsupported media type \"{media_type}\" in request.')\n    default_code = 'unsupported_media_type'\n\n    def __init__(self, media_type, detail=None, code=None):\n        if detail is None:\n            detail = force_text(self.default_detail).format(media_type=media_type)\n        super(UnsupportedMediaType, self).__init__(detail, code)\n\n\nclass Throttled(APIException):\n    status_code = status.HTTP_429_TOO_MANY_REQUESTS\n    default_detail = _('Request was throttled.')\n    extra_detail_singular = 'Expected available in {wait} second.'\n    extra_detail_plural = 'Expected available in {wait} seconds.'\n    default_code = 'throttled'\n\n    def __init__(self, wait=None, detail=None, code=None):\n        if detail is None:\n            detail = force_text(self.default_detail)\n        if wait is not None:\n            wait = math.ceil(wait)\n            detail = ' '.join((\n                detail,\n                force_text(ungettext(self.extra_detail_singular.format(wait=wait),\n                                     self.extra_detail_plural.format(wait=wait),\n                                     wait))))\n        self.wait = wait\n        super(Throttled, self).__init__(detail, code)\n\n\ndef server_error(request, *args, **kwargs):\n    \"\"\"\n    Generic 500 error handler.\n    \"\"\"\n    data = {\n        'error': 'Server Error (500)'\n    }\n    return JsonResponse(data, status=status.HTTP_500_INTERNAL_SERVER_ERROR)\n\n\ndef bad_request(request, exception, *args, **kwargs):\n    \"\"\"\n    Generic 400 error handler.\n    \"\"\"\n    data = {\n        'error': 'Bad Request (400)'\n    }\n    return JsonResponse(data, status=status.HTTP_400_BAD_REQUEST)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/fields.py",
    "content": "from __future__ import unicode_literals\n\nimport collections\nimport copy\nimport datetime\nimport decimal\nimport functools\nimport inspect\nimport re\nimport uuid\nfrom collections import OrderedDict\n\nfrom django.conf import settings\nfrom django.core.exceptions import ObjectDoesNotExist\nfrom django.core.exceptions import ValidationError as DjangoValidationError\nfrom django.core.validators import (\n    EmailValidator, RegexValidator, URLValidator, ip_address_validators\n)\nfrom django.forms import FilePathField as DjangoFilePathField\nfrom django.forms import ImageField as DjangoImageField\nfrom django.utils import six, timezone\nfrom django.utils.dateparse import (\n    parse_date, parse_datetime, parse_duration, parse_time\n)\nfrom django.utils.duration import duration_string\nfrom django.utils.encoding import is_protected_type, smart_text\nfrom django.utils.formats import localize_input, sanitize_separators\nfrom django.utils.functional import lazy\nfrom django.utils.ipv6 import clean_ipv6_address\nfrom django.utils.timezone import utc\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import ISO_8601\nfrom jet_django.deps.rest_framework.compat import (\n    InvalidTimeError, MaxLengthValidator, MaxValueValidator,\n    MinLengthValidator, MinValueValidator, unicode_repr, unicode_to_repr\n)\nfrom jet_django.deps.rest_framework.exceptions import ErrorDetail, ValidationError\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import html, humanize_datetime, json, representation\n\n\nclass empty:\n    \"\"\"\n    This class is used to represent no data being provided for a given input\n    or output value.\n\n    It is required because `None` may be a valid input or output value.\n    \"\"\"\n    pass\n\n\nif six.PY3:\n    def is_simple_callable(obj):\n        \"\"\"\n        True if the object is a callable that takes no arguments.\n        \"\"\"\n        if not (inspect.isfunction(obj) or inspect.ismethod(obj) or isinstance(obj, functools.partial)):\n            return False\n\n        sig = inspect.signature(obj)\n        params = sig.parameters.values()\n        return all(\n            param.kind == param.VAR_POSITIONAL or\n            param.kind == param.VAR_KEYWORD or\n            param.default != param.empty\n            for param in params\n        )\n\nelse:\n    def is_simple_callable(obj):\n        function = inspect.isfunction(obj)\n        method = inspect.ismethod(obj)\n\n        if not (function or method):\n            return False\n\n        if method:\n            is_unbound = obj.im_self is None\n\n        args, _, _, defaults = inspect.getargspec(obj)\n\n        len_args = len(args) if function or is_unbound else len(args) - 1\n        len_defaults = len(defaults) if defaults else 0\n        return len_args <= len_defaults\n\n\ndef get_attribute(instance, attrs):\n    \"\"\"\n    Similar to Python's built in `getattr(instance, attr)`,\n    but takes a list of nested attributes, instead of a single attribute.\n\n    Also accepts either attribute lookup on objects or dictionary lookups.\n    \"\"\"\n    for attr in attrs:\n        try:\n            if isinstance(instance, collections.Mapping):\n                instance = instance[attr]\n            else:\n                instance = getattr(instance, attr)\n        except ObjectDoesNotExist:\n            return None\n        if is_simple_callable(instance):\n            try:\n                instance = instance()\n            except (AttributeError, KeyError) as exc:\n                # If we raised an Attribute or KeyError here it'd get treated\n                # as an omitted field in `Field.get_attribute()`. Instead we\n                # raise a ValueError to ensure the exception is not masked.\n                raise ValueError('Exception raised in callable attribute \"{0}\"; original exception was: {1}'.format(attr, exc))\n\n    return instance\n\n\ndef set_value(dictionary, keys, value):\n    \"\"\"\n    Similar to Python's built in `dictionary[key] = value`,\n    but takes a list of nested keys instead of a single key.\n\n    set_value({'a': 1}, [], {'b': 2}) -> {'a': 1, 'b': 2}\n    set_value({'a': 1}, ['x'], 2) -> {'a': 1, 'x': 2}\n    set_value({'a': 1}, ['x', 'y'], 2) -> {'a': 1, 'x': {'y': 2}}\n    \"\"\"\n    if not keys:\n        dictionary.update(value)\n        return\n\n    for key in keys[:-1]:\n        if key not in dictionary:\n            dictionary[key] = {}\n        dictionary = dictionary[key]\n\n    dictionary[keys[-1]] = value\n\n\ndef to_choices_dict(choices):\n    \"\"\"\n    Convert choices into key/value dicts.\n\n    to_choices_dict([1]) -> {1: 1}\n    to_choices_dict([(1, '1st'), (2, '2nd')]) -> {1: '1st', 2: '2nd'}\n    to_choices_dict([('Group', ((1, '1st'), 2))]) -> {'Group': {1: '1st', 2: '2'}}\n    \"\"\"\n    # Allow single, paired or grouped choices style:\n    # choices = [1, 2, 3]\n    # choices = [(1, 'First'), (2, 'Second'), (3, 'Third')]\n    # choices = [('Category', ((1, 'First'), (2, 'Second'))), (3, 'Third')]\n    ret = OrderedDict()\n    for choice in choices:\n        if not isinstance(choice, (list, tuple)):\n            # single choice\n            ret[choice] = choice\n        else:\n            key, value = choice\n            if isinstance(value, (list, tuple)):\n                # grouped choices (category, sub choices)\n                ret[key] = to_choices_dict(value)\n            else:\n                # paired choice (key, display value)\n                ret[key] = value\n    return ret\n\n\ndef flatten_choices_dict(choices):\n    \"\"\"\n    Convert a group choices dict into a flat dict of choices.\n\n    flatten_choices_dict({1: '1st', 2: '2nd'}) -> {1: '1st', 2: '2nd'}\n    flatten_choices_dict({'Group': {1: '1st', 2: '2nd'}}) -> {1: '1st', 2: '2nd'}\n    \"\"\"\n    ret = OrderedDict()\n    for key, value in choices.items():\n        if isinstance(value, dict):\n            # grouped choices (category, sub choices)\n            for sub_key, sub_value in value.items():\n                ret[sub_key] = sub_value\n        else:\n            # choice (key, display value)\n            ret[key] = value\n    return ret\n\n\ndef iter_options(grouped_choices, cutoff=None, cutoff_text=None):\n    \"\"\"\n    Helper function for options and option groups in templates.\n    \"\"\"\n    class StartOptionGroup(object):\n        start_option_group = True\n        end_option_group = False\n\n        def __init__(self, label):\n            self.label = label\n\n    class EndOptionGroup(object):\n        start_option_group = False\n        end_option_group = True\n\n    class Option(object):\n        start_option_group = False\n        end_option_group = False\n\n        def __init__(self, value, display_text, disabled=False):\n            self.value = value\n            self.display_text = display_text\n            self.disabled = disabled\n\n    count = 0\n\n    for key, value in grouped_choices.items():\n        if cutoff and count >= cutoff:\n            break\n\n        if isinstance(value, dict):\n            yield StartOptionGroup(label=key)\n            for sub_key, sub_value in value.items():\n                if cutoff and count >= cutoff:\n                    break\n                yield Option(value=sub_key, display_text=sub_value)\n                count += 1\n            yield EndOptionGroup()\n        else:\n            yield Option(value=key, display_text=value)\n            count += 1\n\n    if cutoff and count >= cutoff and cutoff_text:\n        cutoff_text = cutoff_text.format(count=cutoff)\n        yield Option(value='n/a', display_text=cutoff_text, disabled=True)\n\n\ndef get_error_detail(exc_info):\n    \"\"\"\n    Given a Django ValidationError, return a list of ErrorDetail,\n    with the `code` populated.\n    \"\"\"\n    code = getattr(exc_info, 'code', None) or 'invalid'\n    return [\n        ErrorDetail(msg, code=code)\n        for msg in exc_info.messages\n    ]\n\n\nclass CreateOnlyDefault(object):\n    \"\"\"\n    This class may be used to provide default values that are only used\n    for create operations, but that do not return any value for update\n    operations.\n    \"\"\"\n    def __init__(self, default):\n        self.default = default\n\n    def set_context(self, serializer_field):\n        self.is_update = serializer_field.parent.instance is not None\n        if callable(self.default) and hasattr(self.default, 'set_context') and not self.is_update:\n            self.default.set_context(serializer_field)\n\n    def __call__(self):\n        if self.is_update:\n            raise SkipField()\n        if callable(self.default):\n            return self.default()\n        return self.default\n\n    def __repr__(self):\n        return unicode_to_repr(\n            '%s(%s)' % (self.__class__.__name__, unicode_repr(self.default))\n        )\n\n\nclass CurrentUserDefault(object):\n    def set_context(self, serializer_field):\n        self.user = serializer_field.context['request'].user\n\n    def __call__(self):\n        return self.user\n\n    def __repr__(self):\n        return unicode_to_repr('%s()' % self.__class__.__name__)\n\n\nclass SkipField(Exception):\n    pass\n\n\nREGEX_TYPE = type(re.compile(''))\n\nNOT_READ_ONLY_WRITE_ONLY = 'May not set both `read_only` and `write_only`'\nNOT_READ_ONLY_REQUIRED = 'May not set both `read_only` and `required`'\nNOT_REQUIRED_DEFAULT = 'May not set both `required` and `default`'\nUSE_READONLYFIELD = 'Field(read_only=True) should be ReadOnlyField'\nMISSING_ERROR_MESSAGE = (\n    'ValidationError raised by `{class_name}`, but error key `{key}` does '\n    'not exist in the `error_messages` dictionary.'\n)\n\n\nclass Field(object):\n    _creation_counter = 0\n\n    default_error_messages = {\n        'required': _('This field is required.'),\n        'null': _('This field may not be null.')\n    }\n    default_validators = []\n    default_empty_html = empty\n    initial = None\n\n    def __init__(self, read_only=False, write_only=False,\n                 required=None, default=empty, initial=empty, source=None,\n                 label=None, help_text=None, style=None,\n                 error_messages=None, validators=None, allow_null=False):\n        self._creation_counter = Field._creation_counter\n        Field._creation_counter += 1\n\n        # If `required` is unset, then use `True` unless a default is provided.\n        if required is None:\n            required = default is empty and not read_only\n\n        # Some combinations of keyword arguments do not make sense.\n        assert not (read_only and write_only), NOT_READ_ONLY_WRITE_ONLY\n        assert not (read_only and required), NOT_READ_ONLY_REQUIRED\n        assert not (required and default is not empty), NOT_REQUIRED_DEFAULT\n        assert not (read_only and self.__class__ == Field), USE_READONLYFIELD\n\n        self.read_only = read_only\n        self.write_only = write_only\n        self.required = required\n        self.default = default\n        self.source = source\n        self.initial = self.initial if (initial is empty) else initial\n        self.label = label\n        self.help_text = help_text\n        self.style = {} if style is None else style\n        self.allow_null = allow_null\n\n        if self.default_empty_html is not empty:\n            if default is not empty:\n                self.default_empty_html = default\n\n        if validators is not None:\n            self.validators = validators[:]\n\n        # These are set up by `.bind()` when the field is added to a serializer.\n        self.field_name = None\n        self.parent = None\n\n        # Collect default error message from self and parent classes\n        messages = {}\n        for cls in reversed(self.__class__.__mro__):\n            messages.update(getattr(cls, 'default_error_messages', {}))\n        messages.update(error_messages or {})\n        self.error_messages = messages\n\n    def bind(self, field_name, parent):\n        \"\"\"\n        Initializes the field name and parent for the field instance.\n        Called when a field is added to the parent serializer instance.\n        \"\"\"\n\n        # In order to enforce a consistent style, we error if a redundant\n        # 'source' argument has been used. For example:\n        # my_field = serializer.CharField(source='my_field')\n        assert self.source != field_name, (\n            \"It is redundant to specify `source='%s'` on field '%s' in \"\n            \"serializer '%s', because it is the same as the field name. \"\n            \"Remove the `source` keyword argument.\" %\n            (field_name, self.__class__.__name__, parent.__class__.__name__)\n        )\n\n        self.field_name = field_name\n        self.parent = parent\n\n        # `self.label` should default to being based on the field name.\n        if self.label is None:\n            self.label = field_name.replace('_', ' ').capitalize()\n\n        # self.source should default to being the same as the field name.\n        if self.source is None:\n            self.source = field_name\n\n        # self.source_attrs is a list of attributes that need to be looked up\n        # when serializing the instance, or populating the validated data.\n        if self.source == '*':\n            self.source_attrs = []\n        else:\n            self.source_attrs = self.source.split('.')\n\n    # .validators is a lazily loaded property, that gets its default\n    # value from `get_validators`.\n    @property\n    def validators(self):\n        if not hasattr(self, '_validators'):\n            self._validators = self.get_validators()\n        return self._validators\n\n    @validators.setter\n    def validators(self, validators):\n        self._validators = validators\n\n    def get_validators(self):\n        return self.default_validators[:]\n\n    def get_initial(self):\n        \"\"\"\n        Return a value to use when the field is being returned as a primitive\n        value, without any object instance.\n        \"\"\"\n        if callable(self.initial):\n            return self.initial()\n        return self.initial\n\n    def get_value(self, dictionary):\n        \"\"\"\n        Given the *incoming* primitive data, return the value for this field\n        that should be validated and transformed to a native value.\n        \"\"\"\n        if html.is_html_input(dictionary):\n            # HTML forms will represent empty fields as '', and cannot\n            # represent None or False values directly.\n            if self.field_name not in dictionary:\n                if getattr(self.root, 'partial', False):\n                    return empty\n                return self.default_empty_html\n            ret = dictionary[self.field_name]\n            if ret == '' and self.allow_null:\n                # If the field is blank, and null is a valid value then\n                # determine if we should use null instead.\n                return '' if getattr(self, 'allow_blank', False) else None\n            elif ret == '' and not self.required:\n                # If the field is blank, and emptiness is valid then\n                # determine if we should use emptiness instead.\n                return '' if getattr(self, 'allow_blank', False) else empty\n            return ret\n        return dictionary.get(self.field_name, empty)\n\n    def get_attribute(self, instance):\n        \"\"\"\n        Given the *outgoing* object instance, return the primitive value\n        that should be used for this field.\n        \"\"\"\n        try:\n            return get_attribute(instance, self.source_attrs)\n        except (KeyError, AttributeError) as exc:\n            if self.default is not empty:\n                return self.get_default()\n            if self.allow_null:\n                return None\n            if not self.required:\n                raise SkipField()\n            msg = (\n                'Got {exc_type} when attempting to get a value for field '\n                '`{field}` on serializer `{serializer}`.\\nThe serializer '\n                'field might be named incorrectly and not match '\n                'any attribute or key on the `{instance}` instance.\\n'\n                'Original exception text was: {exc}.'.format(\n                    exc_type=type(exc).__name__,\n                    field=self.field_name,\n                    serializer=self.parent.__class__.__name__,\n                    instance=instance.__class__.__name__,\n                    exc=exc\n                )\n            )\n            raise type(exc)(msg)\n\n    def get_default(self):\n        \"\"\"\n        Return the default value to use when validating data if no input\n        is provided for this field.\n\n        If a default has not been set for this field then this will simply\n        raise `SkipField`, indicating that no value should be set in the\n        validated data for this field.\n        \"\"\"\n        if self.default is empty or getattr(self.root, 'partial', False):\n            # No default, or this is a partial update.\n            raise SkipField()\n        if callable(self.default):\n            if hasattr(self.default, 'set_context'):\n                self.default.set_context(self)\n            return self.default()\n        return self.default\n\n    def validate_empty_values(self, data):\n        \"\"\"\n        Validate empty values, and either:\n\n        * Raise `ValidationError`, indicating invalid data.\n        * Raise `SkipField`, indicating that the field should be ignored.\n        * Return (True, data), indicating an empty value that should be\n          returned without any further validation being applied.\n        * Return (False, data), indicating a non-empty value, that should\n          have validation applied as normal.\n        \"\"\"\n        if self.read_only:\n            return (True, self.get_default())\n\n        if data is empty:\n            if getattr(self.root, 'partial', False):\n                raise SkipField()\n            if self.required:\n                self.fail('required')\n            return (True, self.get_default())\n\n        if data is None:\n            if not self.allow_null:\n                self.fail('null')\n            return (True, None)\n\n        return (False, data)\n\n    def run_validation(self, data=empty):\n        \"\"\"\n        Validate a simple representation and return the internal value.\n\n        The provided data may be `empty` if no representation was included\n        in the input.\n\n        May raise `SkipField` if the field should not be included in the\n        validated data.\n        \"\"\"\n        (is_empty_value, data) = self.validate_empty_values(data)\n        if is_empty_value:\n            return data\n        value = self.to_internal_value(data)\n        self.run_validators(value)\n        return value\n\n    def run_validators(self, value):\n        \"\"\"\n        Test the given value against all the validators on the field,\n        and either raise a `ValidationError` or simply return.\n        \"\"\"\n        errors = []\n        for validator in self.validators:\n            if hasattr(validator, 'set_context'):\n                validator.set_context(self)\n\n            try:\n                validator(value)\n            except ValidationError as exc:\n                # If the validation error contains a mapping of fields to\n                # errors then simply raise it immediately rather than\n                # attempting to accumulate a list of errors.\n                if isinstance(exc.detail, dict):\n                    raise\n                errors.extend(exc.detail)\n            except DjangoValidationError as exc:\n                errors.extend(get_error_detail(exc))\n        if errors:\n            raise ValidationError(errors)\n\n    def to_internal_value(self, data):\n        \"\"\"\n        Transform the *incoming* primitive data into a native value.\n        \"\"\"\n        raise NotImplementedError(\n            '{cls}.to_internal_value() must be implemented.'.format(\n                cls=self.__class__.__name__\n            )\n        )\n\n    def to_representation(self, value):\n        \"\"\"\n        Transform the *outgoing* native value into primitive data.\n        \"\"\"\n        raise NotImplementedError(\n            '{cls}.to_representation() must be implemented for field '\n            '{field_name}. If you do not need to support write operations '\n            'you probably want to subclass `ReadOnlyField` instead.'.format(\n                cls=self.__class__.__name__,\n                field_name=self.field_name,\n            )\n        )\n\n    def fail(self, key, **kwargs):\n        \"\"\"\n        A helper method that simply raises a validation error.\n        \"\"\"\n        try:\n            msg = self.error_messages[key]\n        except KeyError:\n            class_name = self.__class__.__name__\n            msg = MISSING_ERROR_MESSAGE.format(class_name=class_name, key=key)\n            raise AssertionError(msg)\n        message_string = msg.format(**kwargs)\n        raise ValidationError(message_string, code=key)\n\n    @property\n    def root(self):\n        \"\"\"\n        Returns the top-level serializer for this field.\n        \"\"\"\n        root = self\n        while root.parent is not None:\n            root = root.parent\n        return root\n\n    @property\n    def context(self):\n        \"\"\"\n        Returns the context as passed to the root serializer on initialization.\n        \"\"\"\n        return getattr(self.root, '_context', {})\n\n    def __new__(cls, *args, **kwargs):\n        \"\"\"\n        When a field is instantiated, we store the arguments that were used,\n        so that we can present a helpful representation of the object.\n        \"\"\"\n        instance = super(Field, cls).__new__(cls)\n        instance._args = args\n        instance._kwargs = kwargs\n        return instance\n\n    def __deepcopy__(self, memo):\n        \"\"\"\n        When cloning fields we instantiate using the arguments it was\n        originally created with, rather than copying the complete state.\n        \"\"\"\n        # Treat regexes and validators as immutable.\n        # See https://github.com/encode/django-rest-framework/issues/1954\n        # and https://github.com/encode/django-rest-framework/pull/4489\n        args = [\n            copy.deepcopy(item) if not isinstance(item, REGEX_TYPE) else item\n            for item in self._args\n        ]\n        kwargs = {\n            key: (copy.deepcopy(value) if (key not in ('validators', 'regex')) else value)\n            for key, value in self._kwargs.items()\n        }\n        return self.__class__(*args, **kwargs)\n\n    def __repr__(self):\n        \"\"\"\n        Fields are represented using their initial calling arguments.\n        This allows us to create descriptive representations for serializer\n        instances that show all the declared fields on the serializer.\n        \"\"\"\n        return unicode_to_repr(representation.field_repr(self))\n\n\n# Boolean types...\n\nclass BooleanField(Field):\n    default_error_messages = {\n        'invalid': _('\"{input}\" is not a valid boolean.')\n    }\n    default_empty_html = False\n    initial = False\n    TRUE_VALUES = {\n        't', 'T',\n        'y', 'Y', 'yes', 'YES',\n        'true', 'True', 'TRUE',\n        'on', 'On', 'ON',\n        '1', 1,\n        True\n    }\n    FALSE_VALUES = {\n        'f', 'F',\n        'n', 'N', 'no', 'NO',\n        'false', 'False', 'FALSE',\n        'off', 'Off', 'OFF',\n        '0', 0, 0.0,\n        False\n    }\n\n    def __init__(self, **kwargs):\n        assert 'allow_null' not in kwargs, '`allow_null` is not a valid option. Use `NullBooleanField` instead.'\n        super(BooleanField, self).__init__(**kwargs)\n\n    def to_internal_value(self, data):\n        try:\n            if data in self.TRUE_VALUES:\n                return True\n            elif data in self.FALSE_VALUES:\n                return False\n        except TypeError:  # Input is an unhashable type\n            pass\n        self.fail('invalid', input=data)\n\n    def to_representation(self, value):\n        if value in self.TRUE_VALUES:\n            return True\n        elif value in self.FALSE_VALUES:\n            return False\n        return bool(value)\n\n\nclass NullBooleanField(Field):\n    default_error_messages = {\n        'invalid': _('\"{input}\" is not a valid boolean.')\n    }\n    initial = None\n    TRUE_VALUES = {\n        't', 'T',\n        'y', 'Y', 'yes', 'YES',\n        'true', 'True', 'TRUE',\n        'on', 'On', 'ON',\n        '1', 1,\n        True\n    }\n    FALSE_VALUES = {\n        'f', 'F',\n        'n', 'N', 'no', 'NO',\n        'false', 'False', 'FALSE',\n        'off', 'Off', 'OFF',\n        '0', 0, 0.0,\n        False\n    }\n    NULL_VALUES = {'n', 'N', 'null', 'Null', 'NULL', '', None}\n\n    def __init__(self, **kwargs):\n        assert 'allow_null' not in kwargs, '`allow_null` is not a valid option.'\n        kwargs['allow_null'] = True\n        super(NullBooleanField, self).__init__(**kwargs)\n\n    def to_internal_value(self, data):\n        try:\n            if data in self.TRUE_VALUES:\n                return True\n            elif data in self.FALSE_VALUES:\n                return False\n            elif data in self.NULL_VALUES:\n                return None\n        except TypeError:  # Input is an unhashable type\n            pass\n        self.fail('invalid', input=data)\n\n    def to_representation(self, value):\n        if value in self.NULL_VALUES:\n            return None\n        if value in self.TRUE_VALUES:\n            return True\n        elif value in self.FALSE_VALUES:\n            return False\n        return bool(value)\n\n\n# String types...\n\nclass CharField(Field):\n    default_error_messages = {\n        'invalid': _('Not a valid string.'),\n        'blank': _('This field may not be blank.'),\n        'max_length': _('Ensure this field has no more than {max_length} characters.'),\n        'min_length': _('Ensure this field has at least {min_length} characters.')\n    }\n    initial = ''\n\n    def __init__(self, **kwargs):\n        self.allow_blank = kwargs.pop('allow_blank', False)\n        self.trim_whitespace = kwargs.pop('trim_whitespace', True)\n        self.max_length = kwargs.pop('max_length', None)\n        self.min_length = kwargs.pop('min_length', None)\n        super(CharField, self).__init__(**kwargs)\n        if self.max_length is not None:\n            message = lazy(\n                self.error_messages['max_length'].format,\n                six.text_type)(max_length=self.max_length)\n            self.validators.append(\n                MaxLengthValidator(self.max_length, message=message))\n        if self.min_length is not None:\n            message = lazy(\n                self.error_messages['min_length'].format,\n                six.text_type)(min_length=self.min_length)\n            self.validators.append(\n                MinLengthValidator(self.min_length, message=message))\n\n    def run_validation(self, data=empty):\n        # Test for the empty string here so that it does not get validated,\n        # and so that subclasses do not need to handle it explicitly\n        # inside the `to_internal_value()` method.\n        if data == '' or (self.trim_whitespace and six.text_type(data).strip() == ''):\n            if not self.allow_blank:\n                self.fail('blank')\n            return ''\n        return super(CharField, self).run_validation(data)\n\n    def to_internal_value(self, data):\n        # We're lenient with allowing basic numerics to be coerced into strings,\n        # but other types should fail. Eg. unclear if booleans should represent as `true` or `True`,\n        # and composites such as lists are likely user error.\n        if isinstance(data, bool) or not isinstance(data, six.string_types + six.integer_types + (float,)):\n            self.fail('invalid')\n        value = six.text_type(data)\n        return value.strip() if self.trim_whitespace else value\n\n    def to_representation(self, value):\n        return six.text_type(value)\n\n\nclass EmailField(CharField):\n    default_error_messages = {\n        'invalid': _('Enter a valid email address.')\n    }\n\n    def __init__(self, **kwargs):\n        super(EmailField, self).__init__(**kwargs)\n        validator = EmailValidator(message=self.error_messages['invalid'])\n        self.validators.append(validator)\n\n\nclass RegexField(CharField):\n    default_error_messages = {\n        'invalid': _('This value does not match the required pattern.')\n    }\n\n    def __init__(self, regex, **kwargs):\n        super(RegexField, self).__init__(**kwargs)\n        validator = RegexValidator(regex, message=self.error_messages['invalid'])\n        self.validators.append(validator)\n\n\nclass SlugField(CharField):\n    default_error_messages = {\n        'invalid': _('Enter a valid \"slug\" consisting of letters, numbers, underscores or hyphens.'),\n        'invalid_unicode': _('Enter a valid \"slug\" consisting of Unicode letters, numbers, underscores, or hyphens.')\n    }\n\n    def __init__(self, allow_unicode=False, **kwargs):\n        super(SlugField, self).__init__(**kwargs)\n        self.allow_unicode = allow_unicode\n        if self.allow_unicode:\n            validator = RegexValidator(re.compile(r'^[-\\w]+\\Z', re.UNICODE), message=self.error_messages['invalid_unicode'])\n        else:\n            validator = RegexValidator(re.compile(r'^[-a-zA-Z0-9_]+$'), message=self.error_messages['invalid'])\n        self.validators.append(validator)\n\n\nclass URLField(CharField):\n    default_error_messages = {\n        'invalid': _('Enter a valid URL.')\n    }\n\n    def __init__(self, **kwargs):\n        super(URLField, self).__init__(**kwargs)\n        validator = URLValidator(message=self.error_messages['invalid'])\n        self.validators.append(validator)\n\n\nclass UUIDField(Field):\n    valid_formats = ('hex_verbose', 'hex', 'int', 'urn')\n\n    default_error_messages = {\n        'invalid': _('\"{value}\" is not a valid UUID.'),\n    }\n\n    def __init__(self, **kwargs):\n        self.uuid_format = kwargs.pop('format', 'hex_verbose')\n        if self.uuid_format not in self.valid_formats:\n            raise ValueError(\n                'Invalid format for uuid representation. '\n                'Must be one of \"{0}\"'.format('\", \"'.join(self.valid_formats))\n            )\n        super(UUIDField, self).__init__(**kwargs)\n\n    def to_internal_value(self, data):\n        if not isinstance(data, uuid.UUID):\n            try:\n                if isinstance(data, six.integer_types):\n                    return uuid.UUID(int=data)\n                elif isinstance(data, six.string_types):\n                    return uuid.UUID(hex=data)\n                else:\n                    self.fail('invalid', value=data)\n            except (ValueError):\n                self.fail('invalid', value=data)\n        return data\n\n    def to_representation(self, value):\n        if self.uuid_format == 'hex_verbose':\n            return str(value)\n        else:\n            return getattr(value, self.uuid_format)\n\n\nclass IPAddressField(CharField):\n    \"\"\"Support both IPAddressField and GenericIPAddressField\"\"\"\n\n    default_error_messages = {\n        'invalid': _('Enter a valid IPv4 or IPv6 address.'),\n    }\n\n    def __init__(self, protocol='both', **kwargs):\n        self.protocol = protocol.lower()\n        self.unpack_ipv4 = (self.protocol == 'both')\n        super(IPAddressField, self).__init__(**kwargs)\n        validators, error_message = ip_address_validators(protocol, self.unpack_ipv4)\n        self.validators.extend(validators)\n\n    def to_internal_value(self, data):\n        if not isinstance(data, six.string_types):\n            self.fail('invalid', value=data)\n\n        if ':' in data:\n            try:\n                if self.protocol in ('both', 'ipv6'):\n                    return clean_ipv6_address(data, self.unpack_ipv4)\n            except DjangoValidationError:\n                self.fail('invalid', value=data)\n\n        return super(IPAddressField, self).to_internal_value(data)\n\n\n# Number types...\n\nclass IntegerField(Field):\n    default_error_messages = {\n        'invalid': _('A valid integer is required.'),\n        'max_value': _('Ensure this value is less than or equal to {max_value}.'),\n        'min_value': _('Ensure this value is greater than or equal to {min_value}.'),\n        'max_string_length': _('String value too large.')\n    }\n    MAX_STRING_LENGTH = 1000  # Guard against malicious string inputs.\n    re_decimal = re.compile(r'\\.0*\\s*$')  # allow e.g. '1.0' as an int, but not '1.2'\n\n    def __init__(self, **kwargs):\n        self.max_value = kwargs.pop('max_value', None)\n        self.min_value = kwargs.pop('min_value', None)\n        super(IntegerField, self).__init__(**kwargs)\n        if self.max_value is not None:\n            message = lazy(\n                self.error_messages['max_value'].format,\n                six.text_type)(max_value=self.max_value)\n            self.validators.append(\n                MaxValueValidator(self.max_value, message=message))\n        if self.min_value is not None:\n            message = lazy(\n                self.error_messages['min_value'].format,\n                six.text_type)(min_value=self.min_value)\n            self.validators.append(\n                MinValueValidator(self.min_value, message=message))\n\n    def to_internal_value(self, data):\n        if isinstance(data, six.text_type) and len(data) > self.MAX_STRING_LENGTH:\n            self.fail('max_string_length')\n\n        try:\n            data = int(self.re_decimal.sub('', str(data)))\n        except (ValueError, TypeError):\n            self.fail('invalid')\n        return data\n\n    def to_representation(self, value):\n        return int(value)\n\n\nclass FloatField(Field):\n    default_error_messages = {\n        'invalid': _('A valid number is required.'),\n        'max_value': _('Ensure this value is less than or equal to {max_value}.'),\n        'min_value': _('Ensure this value is greater than or equal to {min_value}.'),\n        'max_string_length': _('String value too large.')\n    }\n    MAX_STRING_LENGTH = 1000  # Guard against malicious string inputs.\n\n    def __init__(self, **kwargs):\n        self.max_value = kwargs.pop('max_value', None)\n        self.min_value = kwargs.pop('min_value', None)\n        super(FloatField, self).__init__(**kwargs)\n        if self.max_value is not None:\n            message = lazy(\n                self.error_messages['max_value'].format,\n                six.text_type)(max_value=self.max_value)\n            self.validators.append(\n                MaxValueValidator(self.max_value, message=message))\n        if self.min_value is not None:\n            message = lazy(\n                self.error_messages['min_value'].format,\n                six.text_type)(min_value=self.min_value)\n            self.validators.append(\n                MinValueValidator(self.min_value, message=message))\n\n    def to_internal_value(self, data):\n\n        if isinstance(data, six.text_type) and len(data) > self.MAX_STRING_LENGTH:\n            self.fail('max_string_length')\n\n        try:\n            return float(data)\n        except (TypeError, ValueError):\n            self.fail('invalid')\n\n    def to_representation(self, value):\n        return float(value)\n\n\nclass DecimalField(Field):\n    default_error_messages = {\n        'invalid': _('A valid number is required.'),\n        'max_value': _('Ensure this value is less than or equal to {max_value}.'),\n        'min_value': _('Ensure this value is greater than or equal to {min_value}.'),\n        'max_digits': _('Ensure that there are no more than {max_digits} digits in total.'),\n        'max_decimal_places': _('Ensure that there are no more than {max_decimal_places} decimal places.'),\n        'max_whole_digits': _('Ensure that there are no more than {max_whole_digits} digits before the decimal point.'),\n        'max_string_length': _('String value too large.')\n    }\n    MAX_STRING_LENGTH = 1000  # Guard against malicious string inputs.\n\n    def __init__(self, max_digits, decimal_places, coerce_to_string=None, max_value=None, min_value=None,\n                 localize=False, rounding=None, **kwargs):\n        self.max_digits = max_digits\n        self.decimal_places = decimal_places\n        self.localize = localize\n        if coerce_to_string is not None:\n            self.coerce_to_string = coerce_to_string\n        if self.localize:\n            self.coerce_to_string = True\n\n        self.max_value = max_value\n        self.min_value = min_value\n\n        if self.max_digits is not None and self.decimal_places is not None:\n            self.max_whole_digits = self.max_digits - self.decimal_places\n        else:\n            self.max_whole_digits = None\n\n        super(DecimalField, self).__init__(**kwargs)\n\n        if self.max_value is not None:\n            message = lazy(\n                self.error_messages['max_value'].format,\n                six.text_type)(max_value=self.max_value)\n            self.validators.append(\n                MaxValueValidator(self.max_value, message=message))\n        if self.min_value is not None:\n            message = lazy(\n                self.error_messages['min_value'].format,\n                six.text_type)(min_value=self.min_value)\n            self.validators.append(\n                MinValueValidator(self.min_value, message=message))\n\n        if rounding is not None:\n            valid_roundings = [v for k, v in vars(decimal).items() if k.startswith('ROUND_')]\n            assert rounding in valid_roundings, (\n                'Invalid rounding option %s. Valid values for rounding are: %s' % (rounding, valid_roundings))\n        self.rounding = rounding\n\n    def to_internal_value(self, data):\n        \"\"\"\n        Validate that the input is a decimal number and return a Decimal\n        instance.\n        \"\"\"\n\n        data = smart_text(data).strip()\n\n        if self.localize:\n            data = sanitize_separators(data)\n\n        if len(data) > self.MAX_STRING_LENGTH:\n            self.fail('max_string_length')\n\n        try:\n            value = decimal.Decimal(data)\n        except decimal.DecimalException:\n            self.fail('invalid')\n\n        # Check for NaN. It is the only value that isn't equal to itself,\n        # so we can use this to identify NaN values.\n        if value != value:\n            self.fail('invalid')\n\n        # Check for infinity and negative infinity.\n        if value in (decimal.Decimal('Inf'), decimal.Decimal('-Inf')):\n            self.fail('invalid')\n\n        return self.quantize(self.validate_precision(value))\n\n    def validate_precision(self, value):\n        \"\"\"\n        Ensure that there are no more than max_digits in the number, and no\n        more than decimal_places digits after the decimal point.\n\n        Override this method to disable the precision validation for input\n        values or to enhance it in any way you need to.\n        \"\"\"\n        sign, digittuple, exponent = value.as_tuple()\n\n        if exponent >= 0:\n            # 1234500.0\n            total_digits = len(digittuple) + exponent\n            whole_digits = total_digits\n            decimal_places = 0\n        elif len(digittuple) > abs(exponent):\n            # 123.45\n            total_digits = len(digittuple)\n            whole_digits = total_digits - abs(exponent)\n            decimal_places = abs(exponent)\n        else:\n            # 0.001234\n            total_digits = abs(exponent)\n            whole_digits = 0\n            decimal_places = total_digits\n\n        if self.max_digits is not None and total_digits > self.max_digits:\n            self.fail('max_digits', max_digits=self.max_digits)\n        if self.decimal_places is not None and decimal_places > self.decimal_places:\n            self.fail('max_decimal_places', max_decimal_places=self.decimal_places)\n        if self.max_whole_digits is not None and whole_digits > self.max_whole_digits:\n            self.fail('max_whole_digits', max_whole_digits=self.max_whole_digits)\n\n        return value\n\n    def to_representation(self, value):\n        coerce_to_string = getattr(self, 'coerce_to_string', api_settings.COERCE_DECIMAL_TO_STRING)\n\n        if not isinstance(value, decimal.Decimal):\n            value = decimal.Decimal(six.text_type(value).strip())\n\n        quantized = self.quantize(value)\n\n        if not coerce_to_string:\n            return quantized\n        if self.localize:\n            return localize_input(quantized)\n\n        return '{0:f}'.format(quantized)\n\n    def quantize(self, value):\n        \"\"\"\n        Quantize the decimal value to the configured precision.\n        \"\"\"\n        if self.decimal_places is None:\n            return value\n\n        context = decimal.getcontext().copy()\n        if self.max_digits is not None:\n            context.prec = self.max_digits\n        return value.quantize(\n            decimal.Decimal('.1') ** self.decimal_places,\n            rounding=self.rounding,\n            context=context\n        )\n\n\n# Date & time fields...\n\nclass DateTimeField(Field):\n    default_error_messages = {\n        'invalid': _('Datetime has wrong format. Use one of these formats instead: {format}.'),\n        'date': _('Expected a datetime but got a date.'),\n        'make_aware': _('Invalid datetime for the timezone \"{timezone}\".'),\n        'overflow': _('Datetime value out of range.')\n    }\n    datetime_parser = datetime.datetime.strptime\n\n    def __init__(self, format=empty, input_formats=None, default_timezone=None, *args, **kwargs):\n        if format is not empty:\n            self.format = format\n        if input_formats is not None:\n            self.input_formats = input_formats\n        if default_timezone is not None:\n            self.timezone = default_timezone\n        super(DateTimeField, self).__init__(*args, **kwargs)\n\n    def enforce_timezone(self, value):\n        \"\"\"\n        When `self.default_timezone` is `None`, always return naive datetimes.\n        When `self.default_timezone` is not `None`, always return aware datetimes.\n        \"\"\"\n        field_timezone = getattr(self, 'timezone', self.default_timezone())\n\n        if field_timezone is not None:\n            if timezone.is_aware(value):\n                try:\n                    return value.astimezone(field_timezone)\n                except OverflowError:\n                    self.fail('overflow')\n            try:\n                return timezone.make_aware(value, field_timezone)\n            except InvalidTimeError:\n                self.fail('make_aware', timezone=field_timezone)\n        elif (field_timezone is None) and timezone.is_aware(value):\n            return timezone.make_naive(value, utc)\n        return value\n\n    def default_timezone(self):\n        return timezone.get_current_timezone() if settings.USE_TZ else None\n\n    def to_internal_value(self, value):\n        input_formats = getattr(self, 'input_formats', api_settings.DATETIME_INPUT_FORMATS)\n\n        if isinstance(value, datetime.date) and not isinstance(value, datetime.datetime):\n            self.fail('date')\n\n        if isinstance(value, datetime.datetime):\n            return self.enforce_timezone(value)\n\n        for input_format in input_formats:\n            if input_format.lower() == ISO_8601:\n                try:\n                    parsed = parse_datetime(value)\n                    if parsed is not None:\n                        return self.enforce_timezone(parsed)\n                except (ValueError, TypeError):\n                    pass\n            else:\n                try:\n                    parsed = self.datetime_parser(value, input_format)\n                    return self.enforce_timezone(parsed)\n                except (ValueError, TypeError):\n                    pass\n\n        humanized_format = humanize_datetime.datetime_formats(input_formats)\n        self.fail('invalid', format=humanized_format)\n\n    def to_representation(self, value):\n        if not value:\n            return None\n\n        output_format = getattr(self, 'format', api_settings.DATETIME_FORMAT)\n\n        if output_format is None or isinstance(value, six.string_types):\n            return value\n\n        value = self.enforce_timezone(value)\n\n        if output_format.lower() == ISO_8601:\n            value = value.isoformat()\n            if value.endswith('+00:00'):\n                value = value[:-6] + 'Z'\n            return value\n        return value.strftime(output_format)\n\n\nclass DateField(Field):\n    default_error_messages = {\n        'invalid': _('Date has wrong format. Use one of these formats instead: {format}.'),\n        'datetime': _('Expected a date but got a datetime.'),\n    }\n    datetime_parser = datetime.datetime.strptime\n\n    def __init__(self, format=empty, input_formats=None, *args, **kwargs):\n        if format is not empty:\n            self.format = format\n        if input_formats is not None:\n            self.input_formats = input_formats\n        super(DateField, self).__init__(*args, **kwargs)\n\n    def to_internal_value(self, value):\n        input_formats = getattr(self, 'input_formats', api_settings.DATE_INPUT_FORMATS)\n\n        if isinstance(value, datetime.datetime):\n            self.fail('datetime')\n\n        if isinstance(value, datetime.date):\n            return value\n\n        for input_format in input_formats:\n            if input_format.lower() == ISO_8601:\n                try:\n                    parsed = parse_date(value)\n                except (ValueError, TypeError):\n                    pass\n                else:\n                    if parsed is not None:\n                        return parsed\n            else:\n                try:\n                    parsed = self.datetime_parser(value, input_format)\n                except (ValueError, TypeError):\n                    pass\n                else:\n                    return parsed.date()\n\n        humanized_format = humanize_datetime.date_formats(input_formats)\n        self.fail('invalid', format=humanized_format)\n\n    def to_representation(self, value):\n        if not value:\n            return None\n\n        output_format = getattr(self, 'format', api_settings.DATE_FORMAT)\n\n        if output_format is None or isinstance(value, six.string_types):\n            return value\n\n        # Applying a `DateField` to a datetime value is almost always\n        # not a sensible thing to do, as it means naively dropping\n        # any explicit or implicit timezone info.\n        assert not isinstance(value, datetime.datetime), (\n            'Expected a `date`, but got a `datetime`. Refusing to coerce, '\n            'as this may mean losing timezone information. Use a custom '\n            'read-only field and deal with timezone issues explicitly.'\n        )\n\n        if output_format.lower() == ISO_8601:\n            return value.isoformat()\n\n        return value.strftime(output_format)\n\n\nclass TimeField(Field):\n    default_error_messages = {\n        'invalid': _('Time has wrong format. Use one of these formats instead: {format}.'),\n    }\n    datetime_parser = datetime.datetime.strptime\n\n    def __init__(self, format=empty, input_formats=None, *args, **kwargs):\n        if format is not empty:\n            self.format = format\n        if input_formats is not None:\n            self.input_formats = input_formats\n        super(TimeField, self).__init__(*args, **kwargs)\n\n    def to_internal_value(self, value):\n        input_formats = getattr(self, 'input_formats', api_settings.TIME_INPUT_FORMATS)\n\n        if isinstance(value, datetime.time):\n            return value\n\n        for input_format in input_formats:\n            if input_format.lower() == ISO_8601:\n                try:\n                    parsed = parse_time(value)\n                except (ValueError, TypeError):\n                    pass\n                else:\n                    if parsed is not None:\n                        return parsed\n            else:\n                try:\n                    parsed = self.datetime_parser(value, input_format)\n                except (ValueError, TypeError):\n                    pass\n                else:\n                    return parsed.time()\n\n        humanized_format = humanize_datetime.time_formats(input_formats)\n        self.fail('invalid', format=humanized_format)\n\n    def to_representation(self, value):\n        if value in (None, ''):\n            return None\n\n        output_format = getattr(self, 'format', api_settings.TIME_FORMAT)\n\n        if output_format is None or isinstance(value, six.string_types):\n            return value\n\n        # Applying a `TimeField` to a datetime value is almost always\n        # not a sensible thing to do, as it means naively dropping\n        # any explicit or implicit timezone info.\n        assert not isinstance(value, datetime.datetime), (\n            'Expected a `time`, but got a `datetime`. Refusing to coerce, '\n            'as this may mean losing timezone information. Use a custom '\n            'read-only field and deal with timezone issues explicitly.'\n        )\n\n        if output_format.lower() == ISO_8601:\n            return value.isoformat()\n        return value.strftime(output_format)\n\n\nclass DurationField(Field):\n    default_error_messages = {\n        'invalid': _('Duration has wrong format. Use one of these formats instead: {format}.'),\n    }\n\n    def to_internal_value(self, value):\n        if isinstance(value, datetime.timedelta):\n            return value\n        parsed = parse_duration(six.text_type(value))\n        if parsed is not None:\n            return parsed\n        self.fail('invalid', format='[DD] [HH:[MM:]]ss[.uuuuuu]')\n\n    def to_representation(self, value):\n        return duration_string(value)\n\n\n# Choice types...\n\nclass ChoiceField(Field):\n    default_error_messages = {\n        'invalid_choice': _('\"{input}\" is not a valid choice.')\n    }\n    html_cutoff = None\n    html_cutoff_text = _('More than {count} items...')\n\n    def __init__(self, choices, **kwargs):\n        self.choices = choices\n        self.html_cutoff = kwargs.pop('html_cutoff', self.html_cutoff)\n        self.html_cutoff_text = kwargs.pop('html_cutoff_text', self.html_cutoff_text)\n\n        self.allow_blank = kwargs.pop('allow_blank', False)\n\n        super(ChoiceField, self).__init__(**kwargs)\n\n    def to_internal_value(self, data):\n        if data == '' and self.allow_blank:\n            return ''\n\n        try:\n            return self.choice_strings_to_values[six.text_type(data)]\n        except KeyError:\n            self.fail('invalid_choice', input=data)\n\n    def to_representation(self, value):\n        if value in ('', None):\n            return value\n        return self.choice_strings_to_values.get(six.text_type(value), value)\n\n    def iter_options(self):\n        \"\"\"\n        Helper method for use with templates rendering select widgets.\n        \"\"\"\n        return iter_options(\n            self.grouped_choices,\n            cutoff=self.html_cutoff,\n            cutoff_text=self.html_cutoff_text\n        )\n\n    def _get_choices(self):\n        return self._choices\n\n    def _set_choices(self, choices):\n        self.grouped_choices = to_choices_dict(choices)\n        self._choices = flatten_choices_dict(self.grouped_choices)\n\n        # Map the string representation of choices to the underlying value.\n        # Allows us to deal with eg. integer choices while supporting either\n        # integer or string input, but still get the correct datatype out.\n        self.choice_strings_to_values = {\n            six.text_type(key): key for key in self.choices\n        }\n\n    choices = property(_get_choices, _set_choices)\n\n\nclass MultipleChoiceField(ChoiceField):\n    default_error_messages = {\n        'invalid_choice': _('\"{input}\" is not a valid choice.'),\n        'not_a_list': _('Expected a list of items but got type \"{input_type}\".'),\n        'empty': _('This selection may not be empty.')\n    }\n    default_empty_html = []\n\n    def __init__(self, *args, **kwargs):\n        self.allow_empty = kwargs.pop('allow_empty', True)\n        super(MultipleChoiceField, self).__init__(*args, **kwargs)\n\n    def get_value(self, dictionary):\n        if self.field_name not in dictionary:\n            if getattr(self.root, 'partial', False):\n                return empty\n        # We override the default field access in order to support\n        # lists in HTML forms.\n        if html.is_html_input(dictionary):\n            return dictionary.getlist(self.field_name)\n        return dictionary.get(self.field_name, empty)\n\n    def to_internal_value(self, data):\n        if isinstance(data, type('')) or not hasattr(data, '__iter__'):\n            self.fail('not_a_list', input_type=type(data).__name__)\n        if not self.allow_empty and len(data) == 0:\n            self.fail('empty')\n\n        return {\n            super(MultipleChoiceField, self).to_internal_value(item)\n            for item in data\n        }\n\n    def to_representation(self, value):\n        return {\n            self.choice_strings_to_values.get(six.text_type(item), item) for item in value\n        }\n\n\nclass FilePathField(ChoiceField):\n    default_error_messages = {\n        'invalid_choice': _('\"{input}\" is not a valid path choice.')\n    }\n\n    def __init__(self, path, match=None, recursive=False, allow_files=True,\n                 allow_folders=False, required=None, **kwargs):\n        # Defer to Django's FilePathField implementation to get the\n        # valid set of choices.\n        field = DjangoFilePathField(\n            path, match=match, recursive=recursive, allow_files=allow_files,\n            allow_folders=allow_folders, required=required\n        )\n        kwargs['choices'] = field.choices\n        super(FilePathField, self).__init__(**kwargs)\n\n\n# File types...\n\nclass FileField(Field):\n    default_error_messages = {\n        'required': _('No file was submitted.'),\n        'invalid': _('The submitted data was not a file. Check the encoding type on the form.'),\n        'no_name': _('No filename could be determined.'),\n        'empty': _('The submitted file is empty.'),\n        'max_length': _('Ensure this filename has at most {max_length} characters (it has {length}).'),\n    }\n\n    def __init__(self, *args, **kwargs):\n        self.max_length = kwargs.pop('max_length', None)\n        self.allow_empty_file = kwargs.pop('allow_empty_file', False)\n        if 'use_url' in kwargs:\n            self.use_url = kwargs.pop('use_url')\n        super(FileField, self).__init__(*args, **kwargs)\n\n    def to_internal_value(self, data):\n        try:\n            # `UploadedFile` objects should have name and size attributes.\n            file_name = data.name\n            file_size = data.size\n        except AttributeError:\n            self.fail('invalid')\n\n        if not file_name:\n            self.fail('no_name')\n        if not self.allow_empty_file and not file_size:\n            self.fail('empty')\n        if self.max_length and len(file_name) > self.max_length:\n            self.fail('max_length', max_length=self.max_length, length=len(file_name))\n\n        return data\n\n    def to_representation(self, value):\n        if not value:\n            return None\n\n        use_url = getattr(self, 'use_url', api_settings.UPLOADED_FILES_USE_URL)\n\n        if use_url:\n            if not getattr(value, 'url', None):\n                # If the file has not been saved it may not have a URL.\n                return None\n            url = value.url\n            request = self.context.get('request', None)\n            if request is not None:\n                return request.build_absolute_uri(url)\n            return url\n        return value.name\n\n\nclass ImageField(FileField):\n    default_error_messages = {\n        'invalid_image': _(\n            'Upload a valid image. The file you uploaded was either not an image or a corrupted image.'\n        ),\n    }\n\n    def __init__(self, *args, **kwargs):\n        self._DjangoImageField = kwargs.pop('_DjangoImageField', DjangoImageField)\n        super(ImageField, self).__init__(*args, **kwargs)\n\n    def to_internal_value(self, data):\n        # Image validation is a bit grungy, so we'll just outright\n        # defer to Django's implementation so we don't need to\n        # consider it, or treat PIL as a test dependency.\n        file_object = super(ImageField, self).to_internal_value(data)\n        django_field = self._DjangoImageField()\n        django_field.error_messages = self.error_messages\n        return django_field.clean(file_object)\n\n\n# Composite field types...\n\nclass _UnvalidatedField(Field):\n    def __init__(self, *args, **kwargs):\n        super(_UnvalidatedField, self).__init__(*args, **kwargs)\n        self.allow_blank = True\n        self.allow_null = True\n\n    def to_internal_value(self, data):\n        return data\n\n    def to_representation(self, value):\n        return value\n\n\nclass ListField(Field):\n    child = _UnvalidatedField()\n    initial = []\n    default_error_messages = {\n        'not_a_list': _('Expected a list of items but got type \"{input_type}\".'),\n        'empty': _('This list may not be empty.'),\n        'min_length': _('Ensure this field has at least {min_length} elements.'),\n        'max_length': _('Ensure this field has no more than {max_length} elements.')\n    }\n\n    def __init__(self, *args, **kwargs):\n        self.child = kwargs.pop('child', copy.deepcopy(self.child))\n        self.allow_empty = kwargs.pop('allow_empty', True)\n        self.max_length = kwargs.pop('max_length', None)\n        self.min_length = kwargs.pop('min_length', None)\n\n        assert not inspect.isclass(self.child), '`child` has not been instantiated.'\n        assert self.child.source is None, (\n            \"The `source` argument is not meaningful when applied to a `child=` field. \"\n            \"Remove `source=` from the field declaration.\"\n        )\n\n        super(ListField, self).__init__(*args, **kwargs)\n        self.child.bind(field_name='', parent=self)\n        if self.max_length is not None:\n            message = self.error_messages['max_length'].format(max_length=self.max_length)\n            self.validators.append(MaxLengthValidator(self.max_length, message=message))\n        if self.min_length is not None:\n            message = self.error_messages['min_length'].format(min_length=self.min_length)\n            self.validators.append(MinLengthValidator(self.min_length, message=message))\n\n    def get_value(self, dictionary):\n        if self.field_name not in dictionary:\n            if getattr(self.root, 'partial', False):\n                return empty\n        # We override the default field access in order to support\n        # lists in HTML forms.\n        if html.is_html_input(dictionary):\n            val = dictionary.getlist(self.field_name, [])\n            if len(val) > 0:\n                # Support QueryDict lists in HTML input.\n                return val\n            return html.parse_html_list(dictionary, prefix=self.field_name)\n        return dictionary.get(self.field_name, empty)\n\n    def to_internal_value(self, data):\n        \"\"\"\n        List of dicts of native values <- List of dicts of primitive datatypes.\n        \"\"\"\n        if html.is_html_input(data):\n            data = html.parse_html_list(data)\n        if isinstance(data, type('')) or isinstance(data, collections.Mapping) or not hasattr(data, '__iter__'):\n            self.fail('not_a_list', input_type=type(data).__name__)\n        if not self.allow_empty and len(data) == 0:\n            self.fail('empty')\n        return self.run_child_validation(data)\n\n    def to_representation(self, data):\n        \"\"\"\n        List of object instances -> List of dicts of primitive datatypes.\n        \"\"\"\n        return [self.child.to_representation(item) if item is not None else None for item in data]\n\n    def run_child_validation(self, data):\n        result = []\n        errors = OrderedDict()\n\n        for idx, item in enumerate(data):\n            try:\n                result.append(self.child.run_validation(item))\n            except ValidationError as e:\n                errors[idx] = e.detail\n\n        if not errors:\n            return result\n        raise ValidationError(errors)\n\n\nclass DictField(Field):\n    child = _UnvalidatedField()\n    initial = {}\n    default_error_messages = {\n        'not_a_dict': _('Expected a dictionary of items but got type \"{input_type}\".')\n    }\n\n    def __init__(self, *args, **kwargs):\n        self.child = kwargs.pop('child', copy.deepcopy(self.child))\n\n        assert not inspect.isclass(self.child), '`child` has not been instantiated.'\n        assert self.child.source is None, (\n            \"The `source` argument is not meaningful when applied to a `child=` field. \"\n            \"Remove `source=` from the field declaration.\"\n        )\n\n        super(DictField, self).__init__(*args, **kwargs)\n        self.child.bind(field_name='', parent=self)\n\n    def get_value(self, dictionary):\n        # We override the default field access in order to support\n        # dictionaries in HTML forms.\n        if html.is_html_input(dictionary):\n            return html.parse_html_dict(dictionary, prefix=self.field_name)\n        return dictionary.get(self.field_name, empty)\n\n    def to_internal_value(self, data):\n        \"\"\"\n        Dicts of native values <- Dicts of primitive datatypes.\n        \"\"\"\n        if html.is_html_input(data):\n            data = html.parse_html_dict(data)\n        if not isinstance(data, dict):\n            self.fail('not_a_dict', input_type=type(data).__name__)\n        return self.run_child_validation(data)\n\n    def to_representation(self, value):\n        \"\"\"\n        List of object instances -> List of dicts of primitive datatypes.\n        \"\"\"\n        return {\n            six.text_type(key): self.child.to_representation(val) if val is not None else None\n            for key, val in value.items()\n        }\n\n    def run_child_validation(self, data):\n        result = {}\n        errors = OrderedDict()\n\n        for key, value in data.items():\n            key = six.text_type(key)\n\n            try:\n                result[key] = self.child.run_validation(value)\n            except ValidationError as e:\n                errors[key] = e.detail\n\n        if not errors:\n            return result\n        raise ValidationError(errors)\n\n\nclass HStoreField(DictField):\n    child = CharField(allow_blank=True, allow_null=True)\n\n    def __init__(self, *args, **kwargs):\n        super(HStoreField, self).__init__(*args, **kwargs)\n        assert isinstance(self.child, CharField), (\n            \"The `child` argument must be an instance of `CharField`, \"\n            \"as the hstore extension stores values as strings.\"\n        )\n\n\nclass JSONField(Field):\n    default_error_messages = {\n        'invalid': _('Value must be valid JSON.')\n    }\n\n    def __init__(self, *args, **kwargs):\n        self.binary = kwargs.pop('binary', False)\n        super(JSONField, self).__init__(*args, **kwargs)\n\n    def get_value(self, dictionary):\n        if html.is_html_input(dictionary) and self.field_name in dictionary:\n            # When HTML form input is used, mark up the input\n            # as being a JSON string, rather than a JSON primitive.\n            class JSONString(six.text_type):\n                def __new__(self, value):\n                    ret = six.text_type.__new__(self, value)\n                    ret.is_json_string = True\n                    return ret\n            return JSONString(dictionary[self.field_name])\n        return dictionary.get(self.field_name, empty)\n\n    def to_internal_value(self, data):\n        try:\n            if self.binary or getattr(data, 'is_json_string', False):\n                if isinstance(data, six.binary_type):\n                    data = data.decode('utf-8')\n                return json.loads(data)\n            else:\n                json.dumps(data)\n        except (TypeError, ValueError):\n            self.fail('invalid')\n        return data\n\n    def to_representation(self, value):\n        if self.binary:\n            value = json.dumps(value)\n            # On python 2.x the return type for json.dumps() is underspecified.\n            # On python 3.x json.dumps() returns unicode strings.\n            if isinstance(value, six.text_type):\n                value = bytes(value.encode('utf-8'))\n        return value\n\n\n# Miscellaneous field types...\n\nclass ReadOnlyField(Field):\n    \"\"\"\n    A read-only field that simply returns the field value.\n\n    If the field is a method with no parameters, the method will be called\n    and its return value used as the representation.\n\n    For example, the following would call `get_expiry_date()` on the object:\n\n    class ExampleSerializer(Serializer):\n        expiry_date = ReadOnlyField(source='get_expiry_date')\n    \"\"\"\n\n    def __init__(self, **kwargs):\n        kwargs['read_only'] = True\n        super(ReadOnlyField, self).__init__(**kwargs)\n\n    def to_representation(self, value):\n        return value\n\n\nclass HiddenField(Field):\n    \"\"\"\n    A hidden field does not take input from the user, or present any output,\n    but it does populate a field in `validated_data`, based on its default\n    value. This is particularly useful when we have a `unique_for_date`\n    constraint on a pair of fields, as we need some way to include the date in\n    the validated data.\n    \"\"\"\n    def __init__(self, **kwargs):\n        assert 'default' in kwargs, 'default is a required argument.'\n        kwargs['write_only'] = True\n        super(HiddenField, self).__init__(**kwargs)\n\n    def get_value(self, dictionary):\n        # We always use the default value for `HiddenField`.\n        # User input is never provided or accepted.\n        return empty\n\n    def to_internal_value(self, data):\n        return data\n\n\nclass SerializerMethodField(Field):\n    \"\"\"\n    A read-only field that get its representation from calling a method on the\n    parent serializer class. The method called will be of the form\n    \"get_{field_name}\", and should take a single argument, which is the\n    object being serialized.\n\n    For example:\n\n    class ExampleSerializer(self):\n        extra_info = SerializerMethodField()\n\n        def get_extra_info(self, obj):\n            return ...  # Calculate some data to return.\n    \"\"\"\n    def __init__(self, method_name=None, **kwargs):\n        self.method_name = method_name\n        kwargs['source'] = '*'\n        kwargs['read_only'] = True\n        super(SerializerMethodField, self).__init__(**kwargs)\n\n    def bind(self, field_name, parent):\n        # In order to enforce a consistent style, we error if a redundant\n        # 'method_name' argument has been used. For example:\n        # my_field = serializer.SerializerMethodField(method_name='get_my_field')\n        default_method_name = 'get_{field_name}'.format(field_name=field_name)\n        assert self.method_name != default_method_name, (\n            \"It is redundant to specify `%s` on SerializerMethodField '%s' in \"\n            \"serializer '%s', because it is the same as the default method name. \"\n            \"Remove the `method_name` argument.\" %\n            (self.method_name, field_name, parent.__class__.__name__)\n        )\n\n        # The method name should default to `get_{field_name}`.\n        if self.method_name is None:\n            self.method_name = default_method_name\n\n        super(SerializerMethodField, self).bind(field_name, parent)\n\n    def to_representation(self, value):\n        method = getattr(self.parent, self.method_name)\n        return method(value)\n\n\nclass ModelField(Field):\n    \"\"\"\n    A generic field that can be used against an arbitrary model field.\n\n    This is used by `ModelSerializer` when dealing with custom model fields,\n    that do not have a serializer field to be mapped to.\n    \"\"\"\n    default_error_messages = {\n        'max_length': _('Ensure this field has no more than {max_length} characters.'),\n    }\n\n    def __init__(self, model_field, **kwargs):\n        self.model_field = model_field\n        # The `max_length` option is supported by Django's base `Field` class,\n        # so we'd better support it here.\n        max_length = kwargs.pop('max_length', None)\n        super(ModelField, self).__init__(**kwargs)\n        if max_length is not None:\n            message = lazy(\n                self.error_messages['max_length'].format,\n                six.text_type)(max_length=self.max_length)\n            self.validators.append(\n                MaxLengthValidator(self.max_length, message=message))\n\n    def to_internal_value(self, data):\n        rel = self.model_field.remote_field\n        if rel is not None:\n            return rel.model._meta.get_field(rel.field_name).to_python(data)\n        return self.model_field.to_python(data)\n\n    def get_attribute(self, obj):\n        # We pass the object instance onto `to_representation`,\n        # not just the field attribute.\n        return obj\n\n    def to_representation(self, obj):\n        value = self.model_field.value_from_object(obj)\n        if is_protected_type(value):\n            return value\n        return self.model_field.value_to_string(obj)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/filters.py",
    "content": "\"\"\"\nProvides generic filtering backends that can be used to filter the results\nreturned by list views.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nfrom functools import reduce\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.db import models\nfrom django.db.models.constants import LOOKUP_SEP\nfrom django.db.models.sql.constants import ORDER_PATTERN\nfrom django.template import loader\nfrom django.utils import six\nfrom django.utils.encoding import force_text\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework.compat import coreapi, coreschema, distinct, guardian\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\nclass BaseFilterBackend(object):\n    \"\"\"\n    A base class from which all filter backend classes should inherit.\n    \"\"\"\n\n    def filter_queryset(self, request, queryset, view):\n        \"\"\"\n        Return a filtered queryset.\n        \"\"\"\n        raise NotImplementedError(\".filter_queryset() must be overridden.\")\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        return []\n\n\nclass SearchFilter(BaseFilterBackend):\n    # The URL query parameter used for the search.\n    search_param = api_settings.SEARCH_PARAM\n    template = 'jet_django.deps.rest_framework/filters/search.html'\n    lookup_prefixes = {\n        '^': 'istartswith',\n        '=': 'iexact',\n        '@': 'search',\n        '$': 'iregex',\n    }\n    search_title = _('Search')\n    search_description = _('A search term.')\n\n    def get_search_terms(self, request):\n        \"\"\"\n        Search terms are set by a ?search=... query parameter,\n        and may be comma and/or whitespace delimited.\n        \"\"\"\n        params = request.query_params.get(self.search_param, '')\n        return params.replace(',', ' ').split()\n\n    def construct_search(self, field_name):\n        lookup = self.lookup_prefixes.get(field_name[0])\n        if lookup:\n            field_name = field_name[1:]\n        else:\n            lookup = 'icontains'\n        return LOOKUP_SEP.join([field_name, lookup])\n\n    def must_call_distinct(self, queryset, search_fields):\n        \"\"\"\n        Return True if 'distinct()' should be used to query the given lookups.\n        \"\"\"\n        for search_field in search_fields:\n            opts = queryset.model._meta\n            if search_field[0] in self.lookup_prefixes:\n                search_field = search_field[1:]\n            parts = search_field.split(LOOKUP_SEP)\n            for part in parts:\n                field = opts.get_field(part)\n                if hasattr(field, 'get_path_info'):\n                    # This field is a relation, update opts to follow the relation\n                    path_info = field.get_path_info()\n                    opts = path_info[-1].to_opts\n                    if any(path.m2m for path in path_info):\n                        # This field is a m2m relation so we know we need to call distinct\n                        return True\n        return False\n\n    def filter_queryset(self, request, queryset, view):\n        search_fields = getattr(view, 'search_fields', None)\n        search_terms = self.get_search_terms(request)\n\n        if not search_fields or not search_terms:\n            return queryset\n\n        orm_lookups = [\n            self.construct_search(six.text_type(search_field))\n            for search_field in search_fields\n        ]\n\n        base = queryset\n        conditions = []\n        for search_term in search_terms:\n            queries = [\n                models.Q(**{orm_lookup: search_term})\n                for orm_lookup in orm_lookups\n            ]\n            conditions.append(reduce(operator.or_, queries))\n        queryset = queryset.filter(reduce(operator.and_, conditions))\n\n        if self.must_call_distinct(queryset, search_fields):\n            # Filtering against a many-to-many field requires us to\n            # call queryset.distinct() in order to avoid duplicate items\n            # in the resulting queryset.\n            # We try to avoid this if possible, for performance reasons.\n            queryset = distinct(queryset, base)\n        return queryset\n\n    def to_html(self, request, queryset, view):\n        if not getattr(view, 'search_fields', None):\n            return ''\n\n        term = self.get_search_terms(request)\n        term = term[0] if term else ''\n        context = {\n            'param': self.search_param,\n            'term': term\n        }\n        template = loader.get_template(self.template)\n        return template.render(context)\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        return [\n            coreapi.Field(\n                name=self.search_param,\n                required=False,\n                location='query',\n                schema=coreschema.String(\n                    title=force_text(self.search_title),\n                    description=force_text(self.search_description)\n                )\n            )\n        ]\n\n\nclass OrderingFilter(BaseFilterBackend):\n    # The URL query parameter used for the ordering.\n    ordering_param = api_settings.ORDERING_PARAM\n    ordering_fields = None\n    ordering_title = _('Ordering')\n    ordering_description = _('Which field to use when ordering the results.')\n    template = 'jet_django.deps.rest_framework/filters/ordering.html'\n\n    def get_ordering(self, request, queryset, view):\n        \"\"\"\n        Ordering is set by a comma delimited ?ordering=... query parameter.\n\n        The `ordering` query parameter can be overridden by setting\n        the `ordering_param` value on the OrderingFilter or by\n        specifying an `ORDERING_PARAM` value in the API settings.\n        \"\"\"\n        params = request.query_params.get(self.ordering_param)\n        if params:\n            fields = [param.strip() for param in params.split(',')]\n            ordering = self.remove_invalid_fields(queryset, fields, view, request)\n            if ordering:\n                return ordering\n\n        # No ordering was included, or all the ordering fields were invalid\n        return self.get_default_ordering(view)\n\n    def get_default_ordering(self, view):\n        ordering = getattr(view, 'ordering', None)\n        if isinstance(ordering, six.string_types):\n            return (ordering,)\n        return ordering\n\n    def get_default_valid_fields(self, queryset, view, context={}):\n        # If `ordering_fields` is not specified, then we determine a default\n        # based on the serializer class, if one exists on the view.\n        if hasattr(view, 'get_serializer_class'):\n            try:\n                serializer_class = view.get_serializer_class()\n            except AssertionError:\n                # Raised by the default implementation if\n                # no serializer_class was found\n                serializer_class = None\n        else:\n            serializer_class = getattr(view, 'serializer_class', None)\n\n        if serializer_class is None:\n            msg = (\n                \"Cannot use %s on a view which does not have either a \"\n                \"'serializer_class', an overriding 'get_serializer_class' \"\n                \"or 'ordering_fields' attribute.\"\n            )\n            raise ImproperlyConfigured(msg % self.__class__.__name__)\n\n        return [\n            (field.source.replace('.', '__') or field_name, field.label)\n            for field_name, field in serializer_class(context=context).fields.items()\n            if not getattr(field, 'write_only', False) and not field.source == '*'\n        ]\n\n    def get_valid_fields(self, queryset, view, context={}):\n        valid_fields = getattr(view, 'ordering_fields', self.ordering_fields)\n\n        if valid_fields is None:\n            # Default to allowing filtering on serializer fields\n            return self.get_default_valid_fields(queryset, view, context)\n\n        elif valid_fields == '__all__':\n            # View explicitly allows filtering on any model field\n            valid_fields = [\n                (field.name, field.verbose_name) for field in queryset.model._meta.fields\n            ]\n            valid_fields += [\n                (key, key.title().split('__'))\n                for key in queryset.query.annotations\n            ]\n        else:\n            valid_fields = [\n                (item, item) if isinstance(item, six.string_types) else item\n                for item in valid_fields\n            ]\n\n        return valid_fields\n\n    def remove_invalid_fields(self, queryset, fields, view, request):\n        valid_fields = [item[0] for item in self.get_valid_fields(queryset, view, {'request': request})]\n        return [term for term in fields if term.lstrip('-') in valid_fields and ORDER_PATTERN.match(term)]\n\n    def filter_queryset(self, request, queryset, view):\n        ordering = self.get_ordering(request, queryset, view)\n\n        if ordering:\n            return queryset.order_by(*ordering)\n\n        return queryset\n\n    def get_template_context(self, request, queryset, view):\n        current = self.get_ordering(request, queryset, view)\n        current = None if not current else current[0]\n        options = []\n        context = {\n            'request': request,\n            'current': current,\n            'param': self.ordering_param,\n        }\n        for key, label in self.get_valid_fields(queryset, view, context):\n            options.append((key, '%s - %s' % (label, _('ascending'))))\n            options.append(('-' + key, '%s - %s' % (label, _('descending'))))\n        context['options'] = options\n        return context\n\n    def to_html(self, request, queryset, view):\n        template = loader.get_template(self.template)\n        context = self.get_template_context(request, queryset, view)\n        return template.render(context)\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        return [\n            coreapi.Field(\n                name=self.ordering_param,\n                required=False,\n                location='query',\n                schema=coreschema.String(\n                    title=force_text(self.ordering_title),\n                    description=force_text(self.ordering_description)\n                )\n            )\n        ]\n\n\nclass DjangoObjectPermissionsFilter(BaseFilterBackend):\n    \"\"\"\n    A filter backend that limits results to those where the requesting user\n    has read object level permissions.\n    \"\"\"\n    def __init__(self):\n        assert guardian, 'Using DjangoObjectPermissionsFilter, but django-guardian is not installed'\n\n    perm_format = '%(app_label)s.view_%(model_name)s'\n\n    def filter_queryset(self, request, queryset, view):\n        # We want to defer this import until run-time, rather than import-time.\n        # See https://github.com/encode/django-rest-framework/issues/4608\n        # (Also see #1624 for why we need to make this import explicitly)\n        from guardian.shortcuts import get_objects_for_user\n\n        extra = {}\n        user = request.user\n        model_cls = queryset.model\n        kwargs = {\n            'app_label': model_cls._meta.app_label,\n            'model_name': model_cls._meta.model_name\n        }\n        permission = self.perm_format % kwargs\n        if tuple(guardian.VERSION) >= (1, 3):\n            # Maintain behavior compatibility with versions prior to 1.3\n            extra = {'accept_global_perms': False}\n        else:\n            extra = {}\n        return get_objects_for_user(user, permission, queryset, **extra)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/generics.py",
    "content": "\"\"\"\nGeneric views that provide commonly needed behaviour.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.core.exceptions import ValidationError\nfrom django.db.models.query import QuerySet\nfrom django.http import Http404\nfrom django.shortcuts import get_object_or_404 as _get_object_or_404\n\nfrom jet_django.deps.rest_framework import mixins, views\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\ndef get_object_or_404(queryset, *filter_args, **filter_kwargs):\n    \"\"\"\n    Same as Django's standard shortcut, but make sure to also raise 404\n    if the filter_kwargs don't match the required types.\n    \"\"\"\n    try:\n        return _get_object_or_404(queryset, *filter_args, **filter_kwargs)\n    except (TypeError, ValueError, ValidationError):\n        raise Http404\n\n\nclass GenericAPIView(views.APIView):\n    \"\"\"\n    Base class for all other generic views.\n    \"\"\"\n    # You'll need to either set these attributes,\n    # or override `get_queryset()`/`get_serializer_class()`.\n    # If you are overriding a view method, it is important that you call\n    # `get_queryset()` instead of accessing the `queryset` property directly,\n    # as `queryset` will get evaluated only once, and those results are cached\n    # for all subsequent requests.\n    queryset = None\n    serializer_class = None\n\n    # If you want to use object lookups other than pk, set 'lookup_field'.\n    # For more complex lookup requirements override `get_object()`.\n    lookup_field = 'pk'\n    lookup_url_kwarg = None\n\n    # The filter backend classes to use for queryset filtering\n    filter_backends = api_settings.DEFAULT_FILTER_BACKENDS\n\n    # The style to use for queryset pagination.\n    pagination_class = api_settings.DEFAULT_PAGINATION_CLASS\n\n    def get_queryset(self):\n        \"\"\"\n        Get the list of items for this view.\n        This must be an iterable, and may be a queryset.\n        Defaults to using `self.queryset`.\n\n        This method should always be used rather than accessing `self.queryset`\n        directly, as `self.queryset` gets evaluated only once, and those results\n        are cached for all subsequent requests.\n\n        You may want to override this if you need to provide different\n        querysets depending on the incoming request.\n\n        (Eg. return a list of items that is specific to the user)\n        \"\"\"\n        assert self.queryset is not None, (\n            \"'%s' should either include a `queryset` attribute, \"\n            \"or override the `get_queryset()` method.\"\n            % self.__class__.__name__\n        )\n\n        queryset = self.queryset\n        if isinstance(queryset, QuerySet):\n            # Ensure queryset is re-evaluated on each request.\n            queryset = queryset.all()\n        return queryset\n\n    def get_object(self):\n        \"\"\"\n        Returns the object the view is displaying.\n\n        You may want to override this if you need to provide non-standard\n        queryset lookups.  Eg if objects are referenced using multiple\n        keyword arguments in the url conf.\n        \"\"\"\n        queryset = self.filter_queryset(self.get_queryset())\n\n        # Perform the lookup filtering.\n        lookup_url_kwarg = self.lookup_url_kwarg or self.lookup_field\n\n        assert lookup_url_kwarg in self.kwargs, (\n            'Expected view %s to be called with a URL keyword argument '\n            'named \"%s\". Fix your URL conf, or set the `.lookup_field` '\n            'attribute on the view correctly.' %\n            (self.__class__.__name__, lookup_url_kwarg)\n        )\n\n        filter_kwargs = {self.lookup_field: self.kwargs[lookup_url_kwarg]}\n        obj = get_object_or_404(queryset, **filter_kwargs)\n\n        # May raise a permission denied\n        self.check_object_permissions(self.request, obj)\n\n        return obj\n\n    def get_serializer(self, *args, **kwargs):\n        \"\"\"\n        Return the serializer instance that should be used for validating and\n        deserializing input, and for serializing output.\n        \"\"\"\n        serializer_class = self.get_serializer_class()\n        kwargs['context'] = self.get_serializer_context()\n        return serializer_class(*args, **kwargs)\n\n    def get_serializer_class(self):\n        \"\"\"\n        Return the class to use for the serializer.\n        Defaults to using `self.serializer_class`.\n\n        You may want to override this if you need to provide different\n        serializations depending on the incoming request.\n\n        (Eg. admins get full serialization, others get basic serialization)\n        \"\"\"\n        assert self.serializer_class is not None, (\n            \"'%s' should either include a `serializer_class` attribute, \"\n            \"or override the `get_serializer_class()` method.\"\n            % self.__class__.__name__\n        )\n\n        return self.serializer_class\n\n    def get_serializer_context(self):\n        \"\"\"\n        Extra context provided to the serializer class.\n        \"\"\"\n        return {\n            'request': self.request,\n            'format': self.format_kwarg,\n            'view': self\n        }\n\n    def filter_queryset(self, queryset):\n        \"\"\"\n        Given a queryset, filter it with whichever filter backend is in use.\n\n        You are unlikely to want to override this method, although you may need\n        to call it either from a list view, or from a custom `get_object`\n        method if you want to apply the configured filtering backend to the\n        default queryset.\n        \"\"\"\n        for backend in list(self.filter_backends):\n            queryset = backend().filter_queryset(self.request, queryset, self)\n        return queryset\n\n    @property\n    def paginator(self):\n        \"\"\"\n        The paginator instance associated with the view, or `None`.\n        \"\"\"\n        if not hasattr(self, '_paginator'):\n            if self.pagination_class is None:\n                self._paginator = None\n            else:\n                self._paginator = self.pagination_class()\n        return self._paginator\n\n    def paginate_queryset(self, queryset):\n        \"\"\"\n        Return a single page of results, or `None` if pagination is disabled.\n        \"\"\"\n        if self.paginator is None:\n            return None\n        return self.paginator.paginate_queryset(queryset, self.request, view=self)\n\n    def get_paginated_response(self, data):\n        \"\"\"\n        Return a paginated style `Response` object for the given output data.\n        \"\"\"\n        assert self.paginator is not None\n        return self.paginator.get_paginated_response(data)\n\n\n# Concrete view classes that provide method handlers\n# by composing the mixin classes with the base view.\n\nclass CreateAPIView(mixins.CreateModelMixin,\n                    GenericAPIView):\n    \"\"\"\n    Concrete view for creating a model instance.\n    \"\"\"\n    def post(self, request, *args, **kwargs):\n        return self.create(request, *args, **kwargs)\n\n\nclass ListAPIView(mixins.ListModelMixin,\n                  GenericAPIView):\n    \"\"\"\n    Concrete view for listing a queryset.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.list(request, *args, **kwargs)\n\n\nclass RetrieveAPIView(mixins.RetrieveModelMixin,\n                      GenericAPIView):\n    \"\"\"\n    Concrete view for retrieving a model instance.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.retrieve(request, *args, **kwargs)\n\n\nclass DestroyAPIView(mixins.DestroyModelMixin,\n                     GenericAPIView):\n    \"\"\"\n    Concrete view for deleting a model instance.\n    \"\"\"\n    def delete(self, request, *args, **kwargs):\n        return self.destroy(request, *args, **kwargs)\n\n\nclass UpdateAPIView(mixins.UpdateModelMixin,\n                    GenericAPIView):\n    \"\"\"\n    Concrete view for updating a model instance.\n    \"\"\"\n    def put(self, request, *args, **kwargs):\n        return self.update(request, *args, **kwargs)\n\n    def patch(self, request, *args, **kwargs):\n        return self.partial_update(request, *args, **kwargs)\n\n\nclass ListCreateAPIView(mixins.ListModelMixin,\n                        mixins.CreateModelMixin,\n                        GenericAPIView):\n    \"\"\"\n    Concrete view for listing a queryset or creating a model instance.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.list(request, *args, **kwargs)\n\n    def post(self, request, *args, **kwargs):\n        return self.create(request, *args, **kwargs)\n\n\nclass RetrieveUpdateAPIView(mixins.RetrieveModelMixin,\n                            mixins.UpdateModelMixin,\n                            GenericAPIView):\n    \"\"\"\n    Concrete view for retrieving, updating a model instance.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.retrieve(request, *args, **kwargs)\n\n    def put(self, request, *args, **kwargs):\n        return self.update(request, *args, **kwargs)\n\n    def patch(self, request, *args, **kwargs):\n        return self.partial_update(request, *args, **kwargs)\n\n\nclass RetrieveDestroyAPIView(mixins.RetrieveModelMixin,\n                             mixins.DestroyModelMixin,\n                             GenericAPIView):\n    \"\"\"\n    Concrete view for retrieving or deleting a model instance.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.retrieve(request, *args, **kwargs)\n\n    def delete(self, request, *args, **kwargs):\n        return self.destroy(request, *args, **kwargs)\n\n\nclass RetrieveUpdateDestroyAPIView(mixins.RetrieveModelMixin,\n                                   mixins.UpdateModelMixin,\n                                   mixins.DestroyModelMixin,\n                                   GenericAPIView):\n    \"\"\"\n    Concrete view for retrieving, updating or deleting a model instance.\n    \"\"\"\n    def get(self, request, *args, **kwargs):\n        return self.retrieve(request, *args, **kwargs)\n\n    def put(self, request, *args, **kwargs):\n        return self.update(request, *args, **kwargs)\n\n    def patch(self, request, *args, **kwargs):\n        return self.partial_update(request, *args, **kwargs)\n\n    def delete(self, request, *args, **kwargs):\n        return self.destroy(request, *args, **kwargs)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ach/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Acoli (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ach/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ach\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ar/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Andrew Ayoub <andrew.ayoub@connectads.com>, 2017\n# aymen chaieb <chaieb.aymen1992@gmail.com>, 2017\n# Bashar Al-Abdulhadi, 2016-2017\n# Eyad Toma <d.eyad.t@gmail.com>, 2015,2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-10-18 09:51+0000\\n\"\n\"Last-Translator: Andrew Ayoub <andrew.ayoub@connectads.com>\\n\"\n\"Language-Team: Arabic (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ar/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ar\\n\"\n\"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"اسم المستخدم/كلمة السر غير صحيحين.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"المستخدم غير مفعل او تم حذفه.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"رمز غير صحيح.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"رمز التفويض\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"المفتاح\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"المستخدم\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"أنشئ\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"الرمز\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"الرموز\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"اسم المستخدم\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"كلمة المرور\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"حساب المستخدم غير مفعل.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"تعذر تسجيل الدخول بالبيانات التي ادخلتها.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"يجب أن تتضمن \\\"اسم المستخدم\\\" و \\\"كلمة المرور\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"حدث خطأ في المخدم.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"بيانات الدخول غير صحيحة.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"لم يتم تزويد بيانات الدخول.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"ليس لديك صلاحية للقيام بهذا الإجراء.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"غير موجود.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"طلب غير مسموح به\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"هذا الحقل مطلوب.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"لا يمكن لهذا الحقل ان يكون فارغاً null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" ليس قيمة منطقية.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"لا يمكن لهذا الحقل ان يكون فارغاً.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"تأكد ان الحقل لا يزيد عن {max_length} محرف.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"تأكد ان الحقل {min_length} محرف على الاقل.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"عليك ان تدخل بريد إلكتروني صالح.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"هذه القيمة لا تطابق النمط المطلوب.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"الرجاء إدخال رابط إلكتروني صالح.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"برجاء إدخال عنوان IPV4 أو IPV6 صحيح\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"الرجاء إدخال رقم صحيح صالح.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"تأكد ان القيمة أقل أو تساوي {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"تأكد ان القيمة أكبر أو تساوي {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"القيمه اكبر من المسموح\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"الرجاء إدخال رقم صالح.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"تأكد ان القيمة لا تحوي أكثر من {max_digits} رقم.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"صيغة التاريخ و الوقت غير صحيحة. عليك أن تستخدم واحدة من هذه الصيغ التالية: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"متوقع تاريخ و وقت و وجد تاريخ فقط\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"صيغة التاريخ غير صحيحة. عليك أن تستخدم واحدة من هذه الصيغ التالية: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"متوقع تاريخ  فقط و وجد تاريخ ووقت\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"صيغة الوقت غير صحيحة. عليك أن تستخدم واحدة من هذه الصيغ التالية: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"صيغة المده غير صحيحه, برجاء إستخدام أحد هذه الصيغ {format}\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" ليست واحدة من الخيارات الصالحة.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"أكثر من {count} عنصر...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"لم يتم إرسال أي ملف.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"الملف الذي تم إرساله فارغ.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"تأكد ان اسم الملف لا يحوي أكثر من {max_length} محرف (الإسم المرسل يحوي {length} محرف).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"أرسل\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"تصاعدي\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"تنازلي\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"صفحة غير صحيحة.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"معرف العنصر \\\"{pk_value}\\\" غير صالح -  العنصر غير موجود.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"قيمة غير صالحة.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"مرشحات\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"مرشحات الحقول\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"الترتيب\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"بحث\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"لا شيء\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"هذا الحقل يجب أن يكون فريد\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"ليس لديك صلاحية.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/be/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Belarusian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/be/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: be\\n\"\n\"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ca/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Catalan (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ca/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ca\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Header Basic invàlid. No hi ha disponibles les credencials.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Header Basic invàlid. Les credencials no poden contenir espais.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Header Basic invàlid. Les credencials no estan codificades correctament en base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Usuari/Contrasenya incorrectes.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Usuari inactiu o esborrat.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Token header invàlid. No s'han indicat les credencials.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Token header invàlid. El token no ha de contenir espais.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Token header invàlid. El token no pot contenir caràcters invàlids.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token invàlid.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Compte d'usuari desactivat.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"No es possible loguejar-se amb les credencials introduïdes.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"S'ha d'incloure \\\"username\\\" i \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"S'ha produït un error en el servidor.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Request amb format incorrecte.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Credencials d'autenticació incorrectes.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Credencials d'autenticació no disponibles.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"No té permisos per realitzar aquesta acció.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"No trobat.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Mètode \\\"{method}\\\" no permès.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"No s'ha pogut satisfer l'Accept header de la petició.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Media type \\\"{media_type}\\\" no suportat.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"La petició ha estat limitada pel número màxim de peticions definit.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Aquest camp és obligatori.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Aquest camp no pot ser nul.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" no és un booleà.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Aquest camp no pot estar en blanc.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Aquest camp no pot tenir més de {max_length} caràcters.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Aquest camp ha de tenir un mínim de {min_length} caràcters.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Introdueixi una adreça de correu vàlida.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Aquest valor no compleix el patró requerit.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Introdueix un \\\"slug\\\" vàlid consistent en lletres, números, guions o guions baixos.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Introdueixi una URL vàlida.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" no és un UUID vàlid.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Introdueixi una adreça IPv4 o IPv6 vàlida.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Es requereix un nombre enter vàlid.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Aquest valor ha de ser menor o igual a {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Aquest valor ha de ser més gran o igual a {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Valor del text massa gran.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Es requereix un nombre vàlid.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"No pot haver-hi més de {max_digits} dígits en total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"No pot haver-hi més de {max_decimal_places} decimals.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"No pot haver-hi més de {max_whole_digits} dígits abans del punt decimal.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"El Datetime té un format incorrecte. Utilitzi un d'aquests formats: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"S'espera un Datetime però s'ha rebut un Date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"El Date té un format incorrecte. Utilitzi un d'aquests formats: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"S'espera un Date però s'ha rebut un Datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"El Time té un format incorrecte. Utilitzi un d'aquests formats: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La durada té un format incorrecte. Utilitzi un d'aquests formats: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" no és una opció vàlida.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"S'espera una llista d'ítems però s'ha rebut el tipus \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Aquesta selecció no pot estar buida.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" no és un path vàlid.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"No s'ha enviat cap fitxer.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Les dades enviades no són un fitxer. Comproveu l'encoding type del formulari.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"No s'ha pogut determinar el nom del fitxer.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"El fitxer enviat està buit.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"El nom del fitxer ha de tenir com a màxim {max_length} caràcters (en té {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Envieu una imatge vàlida. El fitxer enviat no és una imatge o és una imatge corrompuda.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Aquesta llista no pot estar buida.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"S'espera un diccionari però s'ha rebut el tipus \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Cursor invàlid.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"PK invàlida \\\"{pk_value}\\\" - l'objecte no existeix.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Tipus incorrecte. S'espera el valor d'una PK, s'ha rebut {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Hyperlink invàlid - Cap match d'URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Hyperlink invàlid - Match d'URL incorrecta.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Hyperlink invàlid - L'objecte no existeix.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Tipus incorrecte. S'espera una URL, s'ha rebut {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"L'objecte amb {slug_name}={value} no existeix.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valor invàlid.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Dades invàlides. S'espera un diccionari però s'ha rebut {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Cap\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Cap opció seleccionada.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Aquest camp ha de ser únic.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Aquests camps {field_names} han de constituir un conjunt únic.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Aquest camp ha de ser únic per a la data \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Aquest camp ha de ser únic per al mes \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Aquest camp ha de ser únic per a l'any \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Versió invàlida al header \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Versió invàlida a la URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Versió invàlida al hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Versió invàlida al paràmetre de consulta.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permís denegat.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ca_ES/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Catalan (Spain) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ca_ES/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ca_ES\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/cs/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Jirka Vejrazka <Jirka.Vejrazka@gmail.com>, 2015\n# Tomáš Ehrlich <tomas.ehrlich@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Czech (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/cs/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: cs\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Chybná hlavička. Nebyly poskytnuty přihlašovací údaje.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Chybná hlavička. Přihlašovací údaje by neměly obsahovat mezery.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Chybná hlavička. Přihlašovací údaje nebyly správně zakódovány pomocí base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Chybné uživatelské jméno nebo heslo.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Uživatelský účet je neaktivní nebo byl smazán.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Chybná hlavička tokenu. Nebyly zadány přihlašovací údaje.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Chybná hlavička tokenu. Přihlašovací údaje by neměly obsahovat mezery.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Chybný token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Uživatelský účet je uzamčen.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Zadanými údaji se nebylo možné přihlásit.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Musí obsahovat \\\"uživatelské jméno\\\" a \\\"heslo\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Chyba na straně serveru.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Neplatný formát požadavku.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Chybné přihlašovací údaje.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Nebyly zadány přihlašovací údaje.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"K této akci nemáte oprávnění.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nenalezeno.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoda \\\"{method}\\\" není povolena.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Nelze vyhovět požadavku v hlavičce Accept.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Nepodporovaný media type \\\"{media_type}\\\" v požadavku.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Požadavek byl limitován kvůli omezení počtu požadavků za časovou periodu.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Toto pole je vyžadováno.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Toto pole nesmí být prázdné (null).\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" nelze použít jako typ boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Toto pole nesmí být prázdné.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Zkontrolujte, že toto pole není delší než {max_length} znaků.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Zkontrolujte, že toto pole obsahuje alespoň {min_length} znaků.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Vložte platnou e-mailovou adresu.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Hodnota v tomto poli neodpovídá požadovanému formátu.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Vložte platnou \\\"zkrácenou formu\\\" obsahující pouze malá písmena, čísla, spojovník nebo podtržítko.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Vložte platný odkaz.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" není platné UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Je vyžadováno celé číslo.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Zkontrolujte, že hodnota je menší nebo rovna {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Zkontrolujte, že hodnota je větší nebo rovna {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Řetězec je příliš dlouhý.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Je vyžadováno číslo.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Zkontrolujte, že číslo neobsahuje více než {max_digits} čislic.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Zkontrolujte, že číslo nemá více než {max_decimal_places} desetinných míst.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Zkontrolujte, že číslo neobsahuje více než {max_whole_digits} čislic před desetinnou čárkou.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Chybný formát data a času. Použijte jeden z těchto formátů: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Bylo zadáno pouze datum bez času.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Chybný formát data. Použijte jeden z těchto formátů: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Bylo zadáno datum a čas, místo samotného data.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Chybný formát času. Použijte jeden z těchto formátů: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" není platnou možností.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Byl očekáván seznam položek ale nalezen \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Nebyl zaslán žádný soubor.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Zaslaná data neobsahují soubor. Zkontrolujte typ kódování ve formuláři.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Nebylo možné zjistit jméno souboru.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Zaslaný soubor je prázdný.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Zajistěte, aby jméno souboru obsahovalo maximálně {max_length} znaků (teď má {length} znaků).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Nahrajte platný obrázek. Nahraný soubor buď není obrázkem nebo je poškozen.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Byl očekáván slovník položek ale nalezen \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Chybný kurzor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Chybný primární klíč \\\"{pk_value}\\\" - objekt neexistuje.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Chybný typ. Byl přijat typ {data_type} místo hodnoty primárního klíče.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Chybný odkaz - nebyla nalezena žádní shoda.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Chybný odkaz - byla nalezena neplatná shoda.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Chybný odkaz - objekt neexistuje.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Chybný typ. Byl přijat typ {data_type} místo očekávaného odkazu.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt s {slug_name}={value} neexistuje.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Chybná hodnota.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Chybná data. Byl přijat typ {datatype} místo očekávaného slovníku.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Tato položka musí být unikátní.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Položka {field_names} musí tvořit unikátní množinu.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Tato položka musí být pro datum \\\"{date_field}\\\" unikátní.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Tato položka musí být pro měsíc \\\"{date_field}\\\" unikátní.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Tato položka musí být pro rok \\\"{date_field}\\\" unikátní.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Chybné číslo verze v hlavičce Accept.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Chybné číslo verze v odkazu.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Chybné číslo verze v hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Chybné čislo verze v URL parametru.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/da/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Mads Jensen <mje@inducks.org>, 2015-2017\n# Mikkel Munch Mortensen <3xm@detfalskested.dk>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Mads Jensen <mje@inducks.org>\\n\"\n\"Language-Team: Danish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/da/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: da\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Ugyldig basic header. Ingen legitimation angivet.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Ugyldig basic header. Legitimationsstrenge må ikke indeholde mellemrum.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Ugyldig basic header. Legitimationen er ikke base64 encoded på korrekt vis.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Ugyldigt brugernavn/kodeord.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Inaktiv eller slettet bruger.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Ugyldig token header.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Ugyldig token header. Token-strenge må ikke indeholde mellemrum.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Ugyldig token header. Token streng bør ikke indeholde ugyldige karakterer.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Ugyldigt token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Nøgle\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Bruger\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Oprettet\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Brugernavn\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Kodeord\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Brugerkontoen er deaktiveret.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Kunne ikke logge ind med den angivne legitimation.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Skal indeholde \\\"username\\\" og \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Der er sket en serverfejl.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Misdannet forespørgsel.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Ugyldig legitimation til autentificering.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Legitimation til autentificering blev ikke angivet.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Du har ikke lov til at udføre denne handling.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Ikke fundet.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoden \\\"{method}\\\" er ikke tilladt.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Kunne ikke efterkomme forespørgslens Accept header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Forespørgslens media type, \\\"{media_type}\\\", er ikke understøttet.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Forespørgslen blev neddroslet.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Dette felt er påkrævet.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Dette felt må ikke være null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" er ikke en tilladt boolsk værdi.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Dette felt må ikke være tomt.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Tjek at dette felt ikke indeholder flere end {max_length} tegn.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Tjek at dette felt indeholder mindst {min_length} tegn.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Angiv en gyldig e-mailadresse.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Denne værdi passer ikke med det påkrævede mønster.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Indtast en gyldig \\\"slug\\\", bestående af bogstaver, tal, bund- og bindestreger.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Indtast en gyldig URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" er ikke et gyldigt UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Indtast en gyldig IPv4 eller IPv6 adresse.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Et gyldigt heltal er påkrævet.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Tjek at værdien er mindre end eller lig med {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Tjek at værdien er større end eller lig med {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Strengværdien er for stor.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Et gyldigt tal er påkrævet.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Tjek at der ikke er flere end {max_digits} cifre i alt.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Tjek at der ikke er flere end {max_decimal_places} cifre efter kommaet.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Tjek at der ikke er flere end {max_whole_digits} cifre før kommaet.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datotid har et forkert format. Brug i stedet et af disse formater: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Forventede en datotid, men fik en dato.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Dato har et forkert format. Brug i stedet et af disse formater: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Forventede en dato men fik en datotid.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Klokkeslæt har forkert format. Brug i stedet et af disse formater: {format}. \"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Varighed har forkert format. Brug istedet et af følgende formater: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" er ikke et gyldigt valg.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Flere end {count} objekter...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Forventede en liste, men fik noget af typen \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Dette valg kan være tomt.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" er ikke et gyldigt valg af adresse.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Ingen medsendt fil.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Det medsendte data var ikke en fil. Tjek typen af indkodning på formularen.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Filnavnet kunne ikke afgøres.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Den medsendte fil er tom.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Sørg for at filnavnet er højst {max_length} langt (det er {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Medsend et gyldigt billede. Den medsendte fil var enten ikke et billede eller billedfilen var ødelagt.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Denne liste er muligvis ikke tom.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Forventede en dictionary, men fik noget af typen \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Værdi skal være gyldig JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Indsend.\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"stigende\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"faldende\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Ugyldig side\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Ugyldig cursor\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Ugyldig primærnøgle \\\"{pk_value}\\\" - objektet findes ikke.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Ugyldig type. Forventet værdi er primærnøgle, fik {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Ugyldigt hyperlink - intet URL match.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ugyldigt hyperlink - forkert URL match.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ugyldigt hyperlink - objektet findes ikke.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Forkert type. Forventede en URL-streng, fik {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Object med {slug_name}={value} findes ikke.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Ugyldig værdi.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Ugyldig data. Forventede en dictionary, men fik {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtre\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Søgefiltre\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sortering\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Søg\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ingen\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Intet at vælge.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Dette felt skal være unikt.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Felterne {field_names} skal udgøre et unikt sæt.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Dette felt skal være unikt for \\\"{date_field}\\\"-datoen.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Dette felt skal være unikt for \\\"{date_field}\\\"-måneden.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Dette felt skal være unikt for \\\"{date_field}\\\"-året.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Ugyldig version i \\\"Accept\\\" headeren.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Ugyldig version i URL-stien.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Ugyldig version in URLen. Den stemmer ikke overens med nogen versionsnumre.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Ugyldig version i hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Ugyldig version i forespørgselsparameteren.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Adgang nægtet.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/de/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Fabian Büchler <fabian@buechler.io>, 2015\n# datKater <imperator.katz@gmail.com>, 2017\n# Lukas Bischofberger <me@worx.li>, 2017\n# Mads Jensen <mje@inducks.org>, 2015\n# Niklas P <contact@niklasplessing.net>, 2015-2016\n# Thomas Tanner, 2015\n# Tom Jaster <futur3.tom@googlemail.com>, 2015\n# Xavier Ordoquy <xordoquy@linovia.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Lukas Bischofberger <me@worx.li>\\n\"\n\"Language-Team: German (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/de/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: de\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Ungültiger basic header. Keine Zugangsdaten angegeben.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Ungültiger basic header. Zugangsdaten sollen keine Leerzeichen enthalten.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Ungültiger basic header. Zugangsdaten sind nicht korrekt mit base64 kodiert.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Ungültiger Benutzername/Passwort\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Benutzer inaktiv oder gelöscht.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Ungültiger token header. Keine Zugangsdaten angegeben.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Ungültiger token header. Zugangsdaten sollen keine Leerzeichen enthalten.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Ungültiger Token Header. Tokens dürfen keine ungültigen Zeichen enthalten.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Ungültiges Token\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Auth Token\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Schlüssel\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Benutzer\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Erzeugt\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Benutzername\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Passwort\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Benutzerkonto ist gesperrt.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Die angegebenen Zugangsdaten stimmen nicht.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"username\\\" und \\\"password\\\" sind erforderlich.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Ein Serverfehler ist aufgetreten.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Fehlerhafte Anfrage.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Falsche Anmeldedaten.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Anmeldedaten fehlen.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Sie sind nicht berechtigt diese Aktion durchzuführen.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nicht gefunden.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Methode \\\"{method}\\\" nicht erlaubt.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Kann die Accept Kopfzeile der Anfrage nicht erfüllen.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Nicht unterstützter Medientyp \\\"{media_type}\\\" in der Anfrage.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Die Anfrage wurde gedrosselt.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Dieses Feld ist erforderlich.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Dieses Feld darf nicht null sein.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" ist kein gültiger Wahrheitswert.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Dieses Feld darf nicht leer sein.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Stelle sicher, dass dieses Feld nicht mehr als {max_length} Zeichen lang ist.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Stelle sicher, dass dieses Feld mindestens {min_length} Zeichen lang ist.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Gib eine gültige E-Mail Adresse an.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Dieser Wert passt nicht zu dem erforderlichen Muster.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Gib ein gültiges \\\"slug\\\" aus Buchstaben, Ziffern, Unterstrichen und Minuszeichen ein.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Gib eine gültige URL ein.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" ist keine gültige UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Geben Sie eine gültige IPv4 oder IPv6 Adresse an\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Eine gültige Ganzzahl ist erforderlich.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Stelle sicher, dass dieser Wert kleiner oder gleich {max_value} ist.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Stelle sicher, dass dieser Wert größer oder gleich {min_value} ist.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Zeichenkette zu lang.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Eine gültige Zahl ist erforderlich.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Stelle sicher, dass es insgesamt nicht mehr als {max_digits} Ziffern lang ist.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Stelle sicher, dass es nicht mehr als {max_decimal_places} Nachkommastellen lang ist.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Stelle sicher, dass es nicht mehr als {max_whole_digits} Stellen vor dem Komma lang ist.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datums- und Zeitangabe hat das falsche Format. Nutze stattdessen eines dieser Formate: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Erwarte eine Datums- und Zeitangabe, erhielt aber ein Datum.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datum hat das falsche Format. Nutze stattdessen eines dieser Formate: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Erwarte ein Datum, erhielt aber eine Datums- und Zeitangabe.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Zeitangabe hat das falsche Format. Nutze stattdessen eines dieser Formate: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Laufzeit hat das falsche Format. Benutze stattdessen eines dieser  Formate {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" ist keine gültige Option.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Mehr als {count} Ergebnisse\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Erwarte eine Liste von Elementen, erhielt aber den Typ \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Diese Auswahl darf nicht leer sein\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" ist ein ungültiger Pfad.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Es wurde keine Datei übermittelt.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Die übermittelten Daten stellen keine Datei dar. Prüfe den Kodierungstyp im Formular.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Der Dateiname konnte nicht ermittelt werden.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Die übermittelte Datei ist leer.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Stelle sicher, dass dieser Dateiname höchstens {max_length} Zeichen lang ist (er hat {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Lade ein gültiges Bild hoch. Die hochgeladene Datei ist entweder kein Bild oder ein beschädigtes Bild.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Diese Liste darf nicht leer sein.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Erwartete ein Dictionary mit Elementen, erhielt aber den Typ \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Wert muss gültiges JSON sein.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Abschicken\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"Aufsteigend\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"Absteigend\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Ungültige Seite.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Ungültiger Zeiger\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Ungültiger pk \\\"{pk_value}\\\" - Object existiert nicht.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Falscher Typ. Erwarte pk Wert, erhielt aber {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Ungültiger Hyperlink - entspricht keiner URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ungültiger Hyperlink - URL stimmt nicht überein.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ungültiger Hyperlink - Objekt existiert nicht.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Falscher Typ. Erwarte URL Zeichenkette, erhielt aber {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt mit {slug_name}={value} existiert nicht.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Ungültiger Wert.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Ungültige Daten. Dictionary erwartet, aber {datatype} erhalten.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filter\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Feldfilter\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sortierung\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Suche\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Nichts\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Keine Elemente zum Auswählen.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Dieses Feld muss eindeutig sein.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Die Felder {field_names} müssen eine eindeutige Menge bilden.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Dieses Feld muss bezüglich des \\\"{date_field}\\\" Datums eindeutig sein.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Dieses Feld muss bezüglich des \\\"{date_field}\\\" Monats eindeutig sein.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Dieses Feld muss bezüglich des \\\"{date_field}\\\" Jahrs eindeutig sein.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Ungültige Version in der \\\"Accept\\\" Kopfzeile.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Ungültige Version im URL Pfad.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Ungültige Version im URL-Pfad. Entspricht keinem Versions-Namensraum.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Ungültige Version im Hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Ungültige Version im Anfrageparameter.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Zugriff verweigert.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/el/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Serafeim Papastefanos <spapas@gmail.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Greek (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/el/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: el\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Λανθασμένη επικεφαλίδα basic. Δεν υπάρχουν διαπιστευτήρια.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Λανθασμένη επικεφαλίδα basic. Τα διαπιστευτήρια δε μπορεί να περιέχουν κενά.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Λανθασμένη επικεφαλίδα basic. Τα διαπιστευτήρια δεν είναι κωδικοποιημένα κατά base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Λανθασμένο όνομα χρήστη/κωδικός.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Ο χρήστης είναι ανενεργός ή διεγραμμένος.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Λανθασμένη επικεφαλίδα token. Δεν υπάρχουν διαπιστευτήρια.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Λανθασμένη επικεφαλίδα token. Το token δε πρέπει να περιέχει κενά.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Λανθασμένη επικεφαλίδα token. Το token περιέχει μη επιτρεπτούς χαρακτήρες.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Λανθασμένο token\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Token πιστοποίησης\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Κλειδί\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Χρήστης\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Δημιουργήθηκε\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Όνομα χρήστη\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Κωδικός\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Ο λογαριασμός χρήστη είναι απενεργοποιημένος.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Δεν είναι δυνατή η σύνδεση με τα διαπιστευτήρια.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Πρέπει να περιέχει \\\"όνομα χρήστη\\\" και \\\"κωδικό\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Σφάλμα διακομιστή.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Λανθασμένο αίτημα.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Λάθος διαπιστευτήρια.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Δεν δόθηκαν διαπιστευτήρια.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Δεν έχετε δικαίωματα για αυτή την ενέργεια.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Δε βρέθηκε.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Η μέθοδος \\\"{method\\\"} δεν επιτρέπεται.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Δεν ήταν δυνατή η ικανοποίηση της επικεφαλίδας Accept της αίτησης.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Δεν υποστηρίζεται το media type \\\"{media_type}\\\" της αίτησης.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Το αίτημα έγινε throttle.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Το πεδίο είναι απαραίτητο.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Το πεδίο δε μπορεί να είναι null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"Το \\\"{input}\\\" δεν είναι έγκυρο boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Το πεδίο δε μπορεί να είναι κενό.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Επιβεβαιώσατε ότι το πεδίο δεν έχει περισσότερους από {max_length} χαρακτήρες.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Επιβεβαιώσατε ότι το πεδίο έχει τουλάχιστον {min_length} χαρακτήρες.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Συμπληρώσατε μια έγκυρη διεύθυνση e-mail.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Η τιμή δε ταιριάζει με το pattern.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Εισάγετε ένα έγκυρο \\\"slug\\\" που αποτελείται από γράμματα, αριθμούς παύλες και κάτω παύλες.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Εισάγετε έγκυρο URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"Το \\\"{value}\\\" δεν είναι έγκυρο UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Εισάγετε μια έγκυρη διεύθυνση IPv4 ή IPv6.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Ένας έγκυρος ακέραιος είναι απαραίτητος.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Επιβεβαιώσατε ότι η τιμή είναι μικρότερη ή ίση του {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Επιβεβαιώσατε ότι η τιμή είναι μεγαλύτερη ή ίση του {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Το κείμενο είναι πολύ μεγάλο.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Ένας έγκυρος αριθμός είναι απαραίτητος.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Επιβεβαιώσατε ότι δεν υπάρχουν παραπάνω από {max_digits} ψηφία.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Επιβεβαιώσατε ότι δεν υπάρχουν παραπάνω από {max_decimal_places} δεκαδικά ψηφία.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Επιβεβαιώσατε ότι δεν υπάρχουν παραπάνω από {max_whole_digits} ακέραια ψηφία.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Η ημερομηνία έχεi λάθος μορφή. Χρησιμοποιήστε μια από τις ακόλουθες μορφές: {format}\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Αναμένεται ημερομηνία και ώρα αλλά δόθηκε μόνο ημερομηνία.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Η ημερομηνία έχεi λάθος μορφή. Χρησιμοποιήστε μια από τις ακόλουθες μορφές: {format}\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Αναμένεται ημερομηνία αλλά δόθηκε ημερομηνία και ώρα.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Η ώρα έχει λάθος μορφή. Χρησιμοποιήστε μια από τις ακόλουθες μορφές: {format}\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Η διάρκεια έχει λάθος μορφή. Χρησιμοποιήστε μια από τις ακόλουθες μορφές: {format}\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"Το \\\"{input}\\\" δεν είναι έγκυρη επιλογή.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Περισσότερα από {count} αντικείμενα...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Αναμένεται μια λίστα αντικειμένον αλλά δόθηκε ο τύπος \\\"{input_type}\\\"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Η επιλογή δε μπορεί να είναι κενή.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"Το \\\"{input}\\\" δεν είναι έγκυρη επιλογή διαδρομής.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Δεν υποβλήθηκε αρχείο.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Τα δεδομένα που υποβλήθηκαν δεν ήταν αρχείο. Ελέγξατε την κωδικοποίηση της φόρμας.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Δε βρέθηκε όνομα αρχείου.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Το αρχείο που υποβλήθηκε είναι κενό.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Επιβεβαιώσατε ότι το όνομα αρχείου έχει ως {max_length} χαρακτήρες (έχει {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Ανεβάστε μια έγκυρη εικόνα. Το αρχείο που ανεβάσατε είτε δεν είναι εικόνα είτε έχει καταστραφεί.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Η λίστα δε μπορεί να είναι κενή.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Αναμένεται ένα λεξικό αντικείμενων αλλά δόθηκε ο τύπος \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Η τιμή πρέπει να είναι μορφής JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Υποβολή\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Λάθος σελίδα.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Λάθος cursor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Λάθος κλειδί \\\"{pk_value}\\\" - το αντικείμενο δεν υπάρχει.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Λάθος τύπος. Αναμένεται τιμή κλειδιού, δόθηκε {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Λάθος σύνδεση - δε ταιριάζει κάποιο URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Λάθος σύνδεση - δε ταιριάζει κάποιο URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Λάθος σύνδεση - το αντικείμενο δεν υπάρχει.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Λάθος τύπος. Αναμένεται URL, δόθηκε {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Το αντικείμενο {slug_name}={value} δεν υπάρχει.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Λάθος τιμή.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Λάθος δεδομένα. Αναμένεται λεξικό αλλά δόθηκε {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Φίλτρα\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Φίλτρα πεδίων\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ταξινόμηση\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Αναζήτηση\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"None\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Δεν υπάρχουν αντικείμενα προς επιλογή.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Το πεδίο πρέπει να είναι μοναδικό\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Τα πεδία {field_names} πρέπει να αποτελούν ένα μοναδικό σύνολο.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Το πεδίο πρέπει να είναι μοναδικό για την ημερομηνία \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Το πεδίο πρέπει να είναι μοναδικό για το μήνα \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Το πεδίο πρέπει να είναι μοναδικό για το έτος  \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Λάθος έκδοση στην επικεφαλίδα \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Λάθος έκδοση στη διαδρομή URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Λάθος έκδοση στο hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Λάθος έκδοση στην παράμετρο\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Απόρριψη πρόσβασης\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/el_GR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Greek (Greece) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/el_GR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: el_GR\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/en/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-09-21 21:11+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: English (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: en\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Invalid basic header. No credentials provided.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Invalid basic header. Credentials string should not contain spaces.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Invalid basic header. Credentials not correctly base64 encoded.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Invalid username/password.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"User inactive or deleted.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Invalid token header. No credentials provided.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Invalid token header. Token string should not contain spaces.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Invalid token header. Token string should not contain invalid characters.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Invalid token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Auth Token\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Key\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"User\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Created\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Username\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Password\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"User account is disabled.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Unable to log in with provided credentials.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Must include \\\"username\\\" and \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"A server error occurred.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Malformed request.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Incorrect authentication credentials.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Authentication credentials were not provided.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"You do not have permission to perform this action.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Not found.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Method \\\"{method}\\\" not allowed.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Could not satisfy the request Accept header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Unsupported media type \\\"{media_type}\\\" in request.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Request was throttled.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"This field is required.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"This field may not be null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" is not a valid boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"This field may not be blank.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Ensure this field has no more than {max_length} characters.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Ensure this field has at least {min_length} characters.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Enter a valid email address.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"This value does not match the required pattern.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or hyphens.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Enter a valid URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" is not a valid UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Enter a valid IPv4 or IPv6 address.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"A valid integer is required.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Ensure this value is less than or equal to {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Ensure this value is greater than or equal to {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"String value too large.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"A valid number is required.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Ensure that there are no more than {max_digits} digits in total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Ensure that there are no more than {max_decimal_places} decimal places.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Ensure that there are no more than {max_whole_digits} digits before the decimal point.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime has wrong format. Use one of these formats instead: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Expected a datetime but got a date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Date has wrong format. Use one of these formats instead: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Expected a date but got a datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Time has wrong format. Use one of these formats instead: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Duration has wrong format. Use one of these formats instead: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" is not a valid choice.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"More than {count} items...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Expected a list of items but got type \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"This selection may not be empty.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" is not a valid path choice.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"No file was submitted.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"The submitted data was not a file. Check the encoding type on the form.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"No filename could be determined.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"The submitted file is empty.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Ensure this filename has at most {max_length} characters (it has {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Upload a valid image. The file you uploaded was either not an image or a corrupted image.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"This list may not be empty.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Value must be valid JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Submit\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"ascending\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"descending\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Invalid page.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Invalid cursor\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Incorrect type. Expected pk value, received {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Invalid hyperlink - No URL match.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Invalid hyperlink - Incorrect URL match.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Invalid hyperlink - Object does not exist.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Incorrect type. Expected URL string, received {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Object with {slug_name}={value} does not exist.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Invalid value.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Invalid data. Expected a dictionary, but got {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filters\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Field filters\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordering\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Search\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"None\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"No items to select.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"This field must be unique.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"The fields {field_names} must make a unique set.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"This field must be unique for the \\\"{date_field}\\\" date.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"This field must be unique for the \\\"{date_field}\\\" month.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"This field must be unique for the \\\"{date_field}\\\" year.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Invalid version in \\\"Accept\\\" header.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Invalid version in URL path.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Invalid version in URL path. Does not match any version namespace.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Invalid version in hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Invalid version in query parameter.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permission denied.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/en_AU/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: English (Australia) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en_AU/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: en_AU\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/en_CA/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: English (Canada) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en_CA/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: en_CA\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/en_US/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\n#\n#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: PACKAGE VERSION\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/es/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>, 2015\n# José Padilla <jpadilla@webapplicate.com>, 2015\n# Miguel Gonzalez <migonzalvar@gmail.com>, 2015\n# Miguel Gonzalez <migonzalvar@gmail.com>, 2016\n# Miguel Gonzalez <migonzalvar@gmail.com>, 2015-2016\n# Sergio Infante <rsinfante@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Miguel Gonzalez <migonzalvar@gmail.com>\\n\"\n\"Language-Team: Spanish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/es/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: es\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Cabecera básica inválida. Las credenciales no fueron suministradas.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Cabecera básica inválida. La cadena con las credenciales no debe contener espacios.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Cabecera básica inválida. Las credenciales incorrectamente codificadas en base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nombre de usuario/contraseña inválidos.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Usuario inactivo o borrado.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Cabecera token inválida. Las credenciales no fueron suministradas.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Cabecera token inválida. La cadena token no debe contener espacios.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Cabecera token inválida. La cadena token no debe contener caracteres inválidos.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token inválido.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Token de autenticación\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Clave\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Usuario\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Fecha de creación\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Nombre de usuario\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Contraseña\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Cuenta de usuario está deshabilitada.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"No puede iniciar sesión con las credenciales proporcionadas.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Debe incluir \\\"username\\\" y \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Se ha producido un error en el servidor.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Solicitud con formato incorrecto.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Credenciales de autenticación incorrectas.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Las credenciales de autenticación no se proveyeron.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Usted no tiene permiso para realizar esta acción.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"No encontrado.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Método \\\"{method}\\\" no permitido.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"No se ha podido satisfacer la solicitud de cabecera de Accept.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Tipo de medio \\\"{media_type}\\\" incompatible en la solicitud.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Solicitud fue regulada (throttled).\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Este campo es requerido.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Este campo no puede ser nulo.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" no es un booleano válido.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Este campo no puede estar en blanco.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Asegúrese de que este campo no tenga más de {max_length} caracteres.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Asegúrese de que este campo tenga al menos {min_length} caracteres.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Introduzca una dirección de correo electrónico válida.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Este valor no coincide con el patrón requerido.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Introduzca un \\\"slug\\\" válido consistente en letras, números, guiones o guiones bajos.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Introduzca una URL válida.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" no es un UUID válido.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Introduzca una dirección IPv4 o IPv6 válida.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Introduzca un número entero válido.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Asegúrese de que este valor es menor o igual a {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Asegúrese de que este valor es mayor o igual a {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Cadena demasiado larga.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Se requiere un número válido.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Asegúrese de que no haya más de {max_digits} dígitos en total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Asegúrese de que no haya más de {max_decimal_places} decimales.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Asegúrese de que no haya más de {max_whole_digits} dígitos en la parte entera.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Fecha/hora con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Se esperaba un fecha/hora en vez de una fecha.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Fecha con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Se esperaba una fecha en vez de una fecha/hora.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Hora con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Duración con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" no es una elección válida.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Más de {count} elementos...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Se esperaba una lista de elementos en vez del tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Esta selección no puede estar vacía.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" no es una elección de ruta válida.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"No se envió ningún archivo.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"La información enviada no era un archivo. Compruebe el tipo de codificación del formulario.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"No se pudo determinar un nombre de archivo.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"El archivo enviado está vació.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Asegúrese de que el nombre de archivo no tenga más de {max_length} caracteres (tiene {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Adjunte una imagen válida. El archivo adjunto o bien no es una imagen o bien está dañado.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Esta lista no puede estar vacía.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Se esperaba un diccionario de elementos en vez del tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"El valor debe ser JSON válido.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Enviar\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"ascendiente\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"descendiente\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Página inválida.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Cursor inválido\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Clave primaria \\\"{pk_value}\\\" inválida - objeto no existe.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Tipo incorrecto. Se esperaba valor de clave primaria y se recibió {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Hiperenlace inválido - No hay URL coincidentes.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Hiperenlace inválido - Coincidencia incorrecta de la URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Hiperenlace inválido - Objeto no existe.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Tipo incorrecto. Se esperaba una URL y se recibió {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objeto con {slug_name}={value} no existe.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valor inválido.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Datos inválidos. Se esperaba un diccionario pero es un {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtros\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filtros de campo\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordenamiento\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Buscar\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ninguno\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"No hay elementos para seleccionar.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Este campo debe ser único.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Los campos {field_names} deben formar un conjunto único.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Este campo debe ser único para el día \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Este campo debe ser único para el mes \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Este campo debe ser único para el año \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Versión inválida en la cabecera \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Versión inválida en la ruta de la URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"La versión especificada en la ruta de la URL no es válida. No coincide con ninguna del espacio de nombres de versiones.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Versión inválida en el nombre de host.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Versión inválida en el parámetro de consulta.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permiso denegado.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/et/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Tõnis Kärdi <tonis.kardi@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Estonian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/et/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: et\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Sobimatu lihtpäis. Kasutajatunnus on esitamata.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Sobimatu lihtpäis. Kasutajatunnus ei tohi sisaldada tühikuid.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Sobimatu lihtpäis. Kasutajatunnus pole korrektselt base64-kodeeritud.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Sobimatu kasutajatunnus/salasõna.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Kasutaja on inaktiivne või kustutatud.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Sobimatu lubakaardi päis. Kasutajatunnus on esitamata.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Sobimatu lubakaardi päis. Loa sõne ei tohi sisaldada tühikuid.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Sobimatu lubakaart.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Kasutajakonto on suletud.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Sisselogimine antud tunnusega ebaõnnestus.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Peab sisaldama \\\"kasutajatunnust\\\" ja \\\"slasõna\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Viga serveril.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Väändunud päring.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Ebakorrektne autentimistunnus.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Autentimistunnus on esitamata.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Teil puuduvad piisavad õigused selle tegevuse teostamiseks.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Ei leidnud.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Meetod \\\"{method}\\\" pole lubatud.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Päringu Accept-päist ei suutnud täita.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Meedia tüüpi {media_type} päringus ei toetata.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Liiga palju päringuid.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Väli on kohustuslik.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Väli ei tohi olla tühi.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" pole kehtiv kahendarv.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"See väli ei tohi olla tühi.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Veendu, et see väli poleks pikem kui {max_length} tähemärki.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Veendu, et see väli oleks vähemalt {min_length} tähemärki pikk.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Sisestage kehtiv e-posti aadress.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Väärtus ei ühti etteantud mustriga.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Sisestage kehtiv \\\"slug\\\", mis koosneks tähtedest, numbritest, ala- või sidekriipsudest.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Sisestage korrektne URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" pole kehtiv UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Sisendiks peab olema täisarv.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Veenduge, et väärtus on väiksem kui või võrdne väärtusega {max_value}. \"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Veenduge, et väärtus on suurem kui või võrdne väärtusega {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Sõne on liiga pikk.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Sisendiks peab olema arv.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Veenduge, et kokku pole rohkem kui {max_digits} numbit.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Veenduge, et komakohti pole rohkem kui {max_decimal_places}. \"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Veenduge, et täiskohti poleks rohkem kui {max_whole_digits}.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Valesti formaaditud kuupäev-kellaaeg. Kasutage mõnda neist: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Ootasin kuupäev-kellaaeg andmetüüpi, kuid sain hoopis kuupäeva.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Valesti formaaditud kuupäev. Kasutage mõnda neist: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Ootasin kuupäeva andmetüüpi, kuid sain hoopis kuupäev-kellaaja.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Valesti formaaditud kellaaeg. Kasutage mõnda neist: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" on sobimatu valik.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Ootasin kirjete järjendit, kuid sain \\\"{input_type}\\\" - tüübi.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Ühtegi faili ei esitatud.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Esitatud andmetes ei olnud faili. Kontrollige vormi kodeeringut.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Ei suutnud tuvastada failinime.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Esitatud fail oli tühi.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Veenduge, et failinimi oleks maksimaalselt {max_length} tähemärki pikk (praegu on {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Laadige üles kehtiv pildifail. Üles laetud fail ei olnud pilt või oli see katki.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Ootasin kirjete sõnastikku, kuid sain \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Sobimatu kursor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Sobimatu primaarvõti \\\"{pk_value}\\\" - objekti pole olemas.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Sobimatu andmetüüp. Ootasin primaarvõtit, sain {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Sobimatu hüperlink - ei leidnud URLi vastet.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Sobimatu hüperlink - vale URLi vaste.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Sobimatu hüperlink - objekti ei eksisteeri.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Sobimatu andmetüüp. Ootasin URLi sõne, sain {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekti {slug_name}={value} ei eksisteeri.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Sobimatu väärtus.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Sobimatud andmed. Ootasin sõnastikku, kuid sain {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Selle välja väärtus peab olema unikaalne.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Veerud {field_names} peavad moodustama unikaalse hulga.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Selle välja väärtus peab olema unikaalne veerus \\\"{date_field}\\\" märgitud kuupäeval.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Selle välja väärtus peab olema unikaalneveerus \\\"{date_field}\\\" märgitud kuul.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Selle välja väärtus peab olema unikaalneveerus \\\"{date_field}\\\" märgitud aastal.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Sobimatu versioon \\\"Accept\\\" päises.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Sobimatu versioon URLi rajas.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Sobimatu versioon hostinimes.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Sobimatu versioon päringu parameetris.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/fa/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Persian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/fa/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fa\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/fa_IR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Persian (Iran) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/fa_IR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fa_IR\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/fi/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Aarni Koskela, 2015\n# Aarni Koskela, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Aarni Koskela\\n\"\n\"Language-Team: Finnish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/fi/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fi\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Epäkelpo perusotsake. Ei annettuja tunnuksia.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Epäkelpo perusotsake. Tunnusmerkkijono ei saa sisältää välilyöntejä.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Epäkelpo perusotsake. Tunnukset eivät ole base64-koodattu.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Epäkelpo käyttäjänimi tai salasana.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Käyttäjä ei-aktiivinen tai poistettu.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Epäkelpo Token-otsake. Ei annettuja tunnuksia.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Epäkelpo Token-otsake. Tunnusmerkkijono ei saa sisältää välilyöntejä.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Epäkelpo Token-otsake. Tunnusmerkkijono ei saa sisältää epäkelpoja merkkejä.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Epäkelpo Token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Autentikaatiotunniste\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Avain\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Käyttäjä\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Luotu\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Tunniste\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tunnisteet\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Käyttäjänimi\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Salasana\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Käyttäjätili ei ole käytössä.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Ei voitu kirjautua annetuilla tunnuksilla.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Pitää sisältää \\\"username\\\" ja \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Sattui palvelinvirhe.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Pyyntö on virheellisen muotoinen.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Väärät autentikaatiotunnukset.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Autentikaatiotunnuksia ei annettu.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Sinulla ei ole lupaa suorittaa tätä toimintoa.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Ei löydy.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metodi \\\"{method}\\\" ei ole sallittu.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Ei voitu vastata pyynnön Accept-otsakkeen mukaisesti.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Pyynnön mediatyyppiä \\\"{media_type}\\\" ei tueta.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Pyyntö hidastettu.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Tämä kenttä vaaditaan.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Tämän kentän arvo ei voi olla \\\"null\\\".\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" ei ole kelvollinen totuusarvo.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Tämä kenttä ei voi olla tyhjä.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Arvo saa olla enintään {max_length} merkkiä pitkä.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Arvo tulee olla vähintään {min_length} merkkiä pitkä.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Syötä kelvollinen sähköpostiosoite.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Arvo ei täsmää vaadittuun kuvioon.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Tässä voidaan käyttää vain kirjaimia (a-z), numeroita (0-9) sekä ala- ja tavuviivoja (_ -).\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Syötä oikea URL-osoite.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"{value} ei ole kelvollinen UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Syötä kelvollinen IPv4- tai IPv6-osoite.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Syötä kelvollinen kokonaisluku.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Tämän arvon on oltava enintään {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Tämän luvun on oltava vähintään {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Liian suuri merkkijonoarvo.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Kelvollinen luku vaaditaan.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Tässä luvussa voi olla yhteensä enintään {max_digits} numeroa.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Tässä luvussa saa olla enintään {max_decimal_places} desimaalia.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Tässä luvussa saa olla enintään {max_whole_digits} numeroa ennen desimaalipilkkua.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Virheellinen päivämäärän/ajan muotoilu. Käytä jotain näistä muodoista: {format}\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Odotettiin päivämäärää ja aikaa, saatiin vain päivämäärä.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Virheellinen päivämäärän muotoilu. Käytä jotain näistä muodoista: {format}\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Odotettiin päivämäärää, saatiin päivämäärä ja aika.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Virheellinen kellonajan muotoilu. Käytä jotain näistä muodoista: {format}\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Virheellinen keston muotoilu. Käytä jotain näistä muodoista: {format}\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" ei ole kelvollinen valinta.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Enemmän kuin {count} kappaletta...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Odotettiin listaa, saatiin tyyppi {input_type}.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Valinta ei saa olla tyhjä.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" ei ole kelvollinen polku.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Yhtään tiedostoa ei ole lähetetty.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Tiedostoa ei lähetetty. Tarkista lomakkeen koodaus (encoding).\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Tiedostonimeä ei voitu päätellä.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Lähetetty tiedosto on tyhjä.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Varmista että tiedostonimi on enintään {max_length} merkkiä pitkä (nyt {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Kuva ei kelpaa. Lähettämäsi tiedosto ei ole kuva, tai tiedosto on vioittunut.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Lista ei saa olla tyhjä.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Odotettiin sanakirjaa, saatiin tyyppi {input_type}.\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Arvon pitää olla kelvollista JSONia.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Lähetä\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"nouseva\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"laskeva\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Epäkelpo sivu.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Epäkelpo kursori\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Epäkelpo pääavain {pk_value} - objektia ei ole olemassa.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Väärä tyyppi. Odotettiin pääavainarvoa, saatiin {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Epäkelpo linkki - URL ei täsmää.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Epäkelpo linkki - epäkelpo URL-osuma.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Epäkelpo linkki - objektia ei ole.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Epäkelpo tyyppi. Odotettiin URL-merkkijonoa, saatiin {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objektia ({slug_name}={value}) ei ole.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Epäkelpo arvo.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Odotettiin sanakirjaa, saatiin tyyppi {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Suotimet\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Kenttäsuotimet\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Järjestys\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Haku\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ei mitään\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Ei valittavia kohteita.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Arvon tulee olla uniikki.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Kenttien {field_names} tulee muodostaa uniikki joukko.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Kentän tulee olla uniikki päivämäärän {date_field} suhteen.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Kentän tulee olla uniikki kuukauden {date_field} suhteen.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Kentän tulee olla uniikki vuoden {date_field} suhteen.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Epäkelpo versio Accept-otsakkeessa.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Epäkelpo versio URL-polussa.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"URL-polun versio ei täsmää mihinkään versionimiavaruuteen.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Epäkelpo versio palvelinosoitteessa.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Epäkelpo versio kyselyparametrissa.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Pääsy evätty.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/fr/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Etienne Desgagné <etienne.desgagne@evimbec.ca>, 2015\n# Martin Maillard <martin.maillard@gmail.com>, 2015\n# Martin Maillard <martin.maillard@gmail.com>, 2015\n# Xavier Ordoquy <xordoquy@linovia.com>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\\n\"\n\"Language-Team: French (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/fr/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fr\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"En-tête « basic » non valide. Informations d'identification non fournies.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"En-tête « basic » non valide. Les informations d'identification ne doivent pas contenir d'espaces.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"En-tête « basic » non valide. Encodage base64 des informations d'identification incorrect.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nom d'utilisateur et/ou mot de passe non valide(s).\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Utilisateur inactif ou supprimé.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"En-tête « token » non valide. Informations d'identification non fournies.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"En-tête « token » non valide. Un token ne doit pas contenir d'espaces.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"En-tête « token » non valide. Un token ne doit pas contenir de caractères invalides.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token non valide.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Jeton d'authentification\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Clef\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Utilisateur\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Création\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Jeton\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Jetons\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Nom de l'utilisateur\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Mot de passe\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Ce compte est désactivé.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Impossible de se connecter avec les informations d'identification fournies.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"username\\\" et \\\"password\\\" doivent être inclus.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Une erreur du serveur est survenue.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Requête malformée\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Informations d'authentification incorrectes.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Informations d'authentification non fournies.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Vous n'avez pas la permission d'effectuer cette action.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Pas trouvé.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Méthode \\\"{method}\\\" non autorisée.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"L'en-tête « Accept » n'a pas pu être satisfaite.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Type de média \\\"{media_type}\\\" non supporté.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Requête ralentie.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Ce champ est obligatoire.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Ce champ ne peut être nul.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" n'est pas un booléen valide.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Ce champ ne peut être vide.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Assurez-vous que ce champ comporte au plus {max_length} caractères.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Assurez-vous que ce champ comporte au moins {min_length} caractères.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Saisissez une adresse email valable.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Cette valeur ne satisfait pas le motif imposé.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Ce champ ne doit contenir que des lettres, des nombres, des tirets bas _ et des traits d'union.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Saisissez une URL valide.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" n'est pas un UUID valide.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Saisissez une adresse IPv4 ou IPv6 valide.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Un nombre entier valide est requis.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Assurez-vous que cette valeur est inférieure ou égale à {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Assurez-vous que cette valeur est supérieure ou égale à {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Chaîne de caractères trop longue.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Un nombre valide est requis.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Assurez-vous qu'il n'y a pas plus de {max_digits} chiffres au total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Assurez-vous qu'il n'y a pas plus de {max_decimal_places} chiffres après la virgule.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Assurez-vous qu'il n'y a pas plus de {max_whole_digits} chiffres avant la virgule.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La date + heure n'a pas le bon format. Utilisez un des formats suivants : {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Attendait une date + heure mais a reçu une date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La date n'a pas le bon format. Utilisez un des formats suivants : {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Attendait une date mais a reçu une date + heure.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"L'heure n'a pas le bon format. Utilisez un des formats suivants : {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La durée n'a pas le bon format. Utilisez l'un des formats suivants: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" n'est pas un choix valide.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Plus de {count} éléments...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Attendait une liste d'éléments mais a reçu \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Cette sélection ne peut être vide.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" n'est pas un choix de chemin valide.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Aucun fichier n'a été soumis.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"La donnée soumise n'est pas un fichier. Vérifiez le type d'encodage du formulaire.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Le nom de fichier n'a pu être déterminé.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Le fichier soumis est vide.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Assurez-vous que le nom de fichier comporte au plus {max_length} caractères (il en comporte {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Transférez une image valide. Le fichier que vous avez transféré n'est pas une image, ou il est corrompu.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Cette liste ne peut pas être vide.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Attendait un dictionnaire d'éléments mais a reçu \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"La valeur doit être un JSON valide.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Envoyer\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"croissant\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"décroissant\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Page invalide.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Curseur non valide\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Clé primaire \\\"{pk_value}\\\" non valide - l'objet n'existe pas.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Type incorrect. Attendait une clé primaire, a reçu {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Lien non valide : pas d'URL correspondante.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Lien non valide : URL correspondante incorrecte.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Lien non valide : l'objet n'existe pas.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Type incorrect. Attendait une URL, a reçu {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"L'object avec {slug_name}={value} n'existe pas.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valeur non valide.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Donnée non valide. Attendait un dictionnaire, a reçu {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtres\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filtres de champ\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordre\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Recherche\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Aucune\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Aucun élément à sélectionner.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Ce champ doit être unique.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Les champs {field_names} doivent former un ensemble unique.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Ce champ doit être unique pour la date \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Ce champ doit être unique pour le mois \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Ce champ doit être unique pour l'année \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Version non valide dans l'en-tête « Accept ».\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Version non valide dans l'URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Version invalide dans l'URL. Ne correspond à aucune version de l'espace de nommage.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Version non valide dans le nom d'hôte.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Version non valide dans le paramètre de requête.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permission refusée.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/fr_CA/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: French (Canada) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/fr_CA/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: fr_CA\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/gl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Galician (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/gl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: gl\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/gl_ES/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Carlos Goce <carlosgoce@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Galician (Spain) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/gl_ES/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: gl_ES\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valor non válido.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ningún\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permiso denegado.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/he_IL/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Hebrew (Israel) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/he_IL/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: he_IL\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/hu/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Zoltan Szalai <defaultdict@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Hungarian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/hu/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: hu\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Érvénytelen basic fejlécmező. Nem voltak megadva azonosítók.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Érvénytelen basic fejlécmező. Az azonosító karakterlánc nem tartalmazhat szóközöket.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Érvénytelen basic fejlécmező. Az azonosítók base64 kódolása nem megfelelő.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Érvénytelen felhasználónév/jelszó.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"A felhasználó nincs aktiválva vagy törölve lett.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Érvénytelen token fejlécmező. Nem voltak megadva azonosítók.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Érvénytelen token fejlécmező. A token karakterlánc nem tartalmazhat szóközöket.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Érvénytelen token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"A felhasználó tiltva van.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"A megadott azonosítókkal nem lehet bejelentkezni.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Tartalmaznia kell a \\\"felhasználónevet\\\" és a \\\"jelszót\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Szerver oldali hiba történt.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Hibás kérés.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Hibás azonosítók.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Nem voltak megadva azonosítók.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Nincs jogosultsága a művelet végrehajtásához.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nem található.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"A \\\"{method}\\\" metódus nem megengedett.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"A kérés Accept fejlécmezőjét nem lehetett kiszolgálni.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Nem támogatott média típus \\\"{media_type}\\\" a kérésben.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"A kérés korlátozva lett.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Ennek a mezőnek a megadása kötelező.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Ez a mező nem lehet null értékű.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"Az \\\"{input}\\\" nem egy érvényes logikai érték.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Ez a mező nem lehet üres.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Bizonyosodjon meg arról, hogy ez a mező legfeljebb {max_length} karakterből áll.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Bizonyosodjon meg arról, hogy ez a mező legalább {min_length} karakterből áll.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Adjon meg egy érvényes e-mail címet!\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Ez az érték nem illeszkedik a szükséges mintázatra.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Az URL barát cím csak betűket, számokat, aláhúzásokat és kötőjeleket tartalmazhat.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Adjon meg egy érvényes URL-t!\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Egy érvényes egész szám megadása szükséges.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Bizonyosodjon meg arról, hogy ez az érték legfeljebb {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Bizonyosodjon meg arról, hogy ez az érték legalább {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"A karakterlánc túl hosszú.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Egy érvényes szám megadása szükséges.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Bizonyosodjon meg arról, hogy a számjegyek száma összesen legfeljebb {max_digits}.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Bizonyosodjon meg arról, hogy a tizedes tört törtrészében levő számjegyek száma összesen legfeljebb {max_decimal_places}.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Bizonyosodjon meg arról, hogy a tizedes tört egész részében levő számjegyek száma összesen legfeljebb {max_whole_digits}.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"A dátum formátuma hibás. Használja ezek valamelyikét helyette: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Időt is tartalmazó dátum helyett egy időt nem tartalmazó dátum lett elküldve.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"A dátum formátuma hibás. Használja ezek valamelyikét helyette: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Időt nem tartalmazó dátum helyett egy időt is tartalmazó dátum lett elküldve.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Az idő formátuma hibás. Használja ezek valamelyikét helyette: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"Az \\\"{input}\\\" nem egy érvényes elem.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Elemek listája helyett \\\"{input_type}\\\" lett elküldve.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Semmilyen fájl sem került feltöltésre.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Az elküldött adat nem egy fájl volt. Ellenőrizze a kódolás típusát az űrlapon!\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"A fájlnév nem megállapítható.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"A küldött fájl üres.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Bizonyosodjon meg arról, hogy a fájlnév legfeljebb {max_length} karakterből áll (jelenlegi hossza: {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Töltsön fel egy érvényes képfájlt! A feltöltött fájl nem kép volt, vagy megsérült.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Érvénytelen pk \\\"{pk_value}\\\" - az objektum nem létezik.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Helytelen típus. pk érték helyett {data_type} lett elküldve.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Érvénytelen link - Nem illeszkedő URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Érvénytelen link. - Eltérő URL illeszkedés.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Érvénytelen link - Az objektum nem létezik.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Helytelen típus. URL karakterlánc helyett {data_type} lett elküldve.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Nem létezik olyan objektum, amelynél {slug_name}={value}.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Érvénytelen érték.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Érvénytelen adat. Egy dictionary helyett {datatype} lett elküldve.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Ennek a mezőnek egyedinek kell lennie.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"A {field_names} mezőnevek nem tartalmazhatnak duplikátumot.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"A mezőnek egyedinek kell lennie a \\\"{date_field}\\\" dátumra.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"A mezőnek egyedinek kell lennie a \\\"{date_field}\\\" hónapra.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"A mezőnek egyedinek kell lennie a \\\"{date_field}\\\" évre.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Érvénytelen verzió az \\\"Accept\\\" fejlécmezőben.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Érvénytelen verzió az URL elérési útban.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Érvénytelen verzió a hosztnévben.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Érvénytelen verzió a lekérdezési paraméterben.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/id/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Indonesian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/id/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: id\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/it/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Antonio Mancina <antomicx@gmail.com>, 2015\n# Mattia Procopio <promat85@gmail.com>, 2015\n# Sergio Morstabilini <mosta.pb@gmail.com>, 2015\n# Xavier Ordoquy <xordoquy@linovia.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Italian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/it/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: it\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Header di base invalido. Credenziali non fornite.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Header di base invalido. Le credenziali non dovrebbero contenere spazi.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Credenziali non correttamente codificate in base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nome utente/password non validi\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Utente inattivo o eliminato.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Header del token non valido. Credenziali non fornite.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Header del token non valido. Il contenuto del token non dovrebbe contenere spazi.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Header del token invalido. La stringa del token non dovrebbe contenere caratteri illegali.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token invalido.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"L'account dell'utente è disabilitato\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Impossibile eseguire il login con le credenziali immesse.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Deve includere \\\"nome utente\\\" e \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Errore del server.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Richiesta malformata.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Credenziali di autenticazione incorrette.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Non sono state immesse le credenziali di autenticazione.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Non hai l'autorizzazione per eseguire questa azione.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Non trovato.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metodo \\\"{method}\\\" non consentito\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Impossibile soddisfare l'header \\\"Accept\\\" presente nella richiesta.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Tipo di media \\\"{media_type}\\\"non supportato.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"La richiesta è stata limitata (throttled).\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Campo obbligatorio.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Il campo non può essere nullo.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" non è un valido valore booleano.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Questo campo non può essere omesso.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Assicurati che questo campo non abbia più di {max_length} caratteri.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Assicurati che questo campo abbia almeno {min_length} caratteri.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Inserisci un indirizzo email valido.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Questo valore non corrisponde alla sequenza richiesta.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Immetti uno \\\"slug\\\" valido che consista di lettere, numeri, underscore o trattini.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Inserisci un URL valido\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" non è un UUID valido.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Inserisci un indirizzo IPv4 o IPv6 valido.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"È richiesto un numero intero valido.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Assicurati che il valore sia minore o uguale a {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Assicurati che il valore sia maggiore o uguale a {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Stringa troppo lunga.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"È richiesto un numero valido.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Assicurati che non ci siano più di {max_digits} cifre in totale.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Assicurati che non ci siano più di {max_decimal_places} cifre decimali.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Assicurati che non ci siano più di {max_whole_digits} cifre prima del separatore decimale.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"L'oggetto di tipo datetime è in un formato errato. Usa uno dei seguenti formati: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Atteso un oggetto di tipo datetime ma l'oggetto ricevuto è di tipo date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La data è in un formato errato. Usa uno dei seguenti formati: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Atteso un oggetto di tipo date ma l'oggetto ricevuto è di tipo datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"L'orario ha un formato errato. Usa uno dei seguenti formati: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"La durata è in un formato errato. Usa uno dei seguenti formati: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" non è una scelta valida.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Più di {count} oggetti...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Attesa una lista di oggetti ma l'oggetto ricevuto è di tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Questa selezione potrebbe non essere vuota.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" non è un percorso valido.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Non è stato inviato alcun file.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"I dati inviati non corrispondono ad un file. Si prega di controllare il tipo di codifica nel form.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Il nome del file non può essere determinato.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Il file inviato è vuoto.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Assicurati che il nome del file abbia, al più, {max_length} caratteri (attualmente ne ha {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Invia un'immagine valida. Il file che hai inviato non era un'immagine o era corrotto.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Questa lista potrebbe non essere vuota.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Era atteso un dizionario di oggetti ma il dato ricevuto è di tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Il valore deve essere un JSON valido.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Invia\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Cursore non valido\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Pk \\\"{pk_value}\\\" non valido - l'oggetto non esiste.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Tipo non corretto. Era atteso un valore pk, ma è stato ricevuto {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Collegamento non valido - Nessuna corrispondenza di URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Collegamento non valido - Corrispondenza di URL non corretta.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Collegamento non valido - L'oggetto non esiste.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Tipo non corretto. Era attesa una stringa URL, ma è stato ricevuto {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"L'oggetto con {slug_name}={value} non esiste.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valore non valido.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Dati non validi. Era atteso un dizionario, ma si è ricevuto {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtri\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filtri per il campo\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordinamento\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Cerca\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Nessuno\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Nessun elemento da selezionare.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Questo campo deve essere unico.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"I campi {field_names} devono costituire un insieme unico.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Questo campo deve essere unico per la data \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Questo campo deve essere unico per il mese \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Questo campo deve essere unico per l'anno \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Versione non valida nell'header \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Versione non valida nella sequenza URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Versione non valida nel nome dell'host.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Versione non valida nel parametro della query.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permesso negato.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ja/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Hiroaki Nakamura <hnakamur@gmail.com>, 2016\n# Kouichi Nishizawa <kouichi.nishizawa@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Kouichi Nishizawa <kouichi.nishizawa@gmail.com>\\n\"\n\"Language-Team: Japanese (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ja/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ja\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"不正な基本ヘッダです。認証情報が含まれていません。\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"不正な基本ヘッダです。認証情報文字列に空白を含めてはいけません。\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"不正な基本ヘッダです。認証情報がBASE64で正しくエンコードされていません。\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"ユーザ名かパスワードが違います。\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"ユーザが無効か削除されています。\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"不正なトークンヘッダです。認証情報が含まれていません。\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"不正なトークンヘッダです。トークン文字列に空白を含めてはいけません。\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"不正なトークンヘッダです。トークン文字列に不正な文字を含めてはいけません。\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"不正なトークンです。\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"認証トークン\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"キー\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"ユーザ\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"作成された\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"トークン\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"トークン\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"ユーザ名\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"パスワード\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"ユーザアカウントが無効化されています。\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"提供された認証情報でログインできません。\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"username\\\"と\\\"password\\\"を含まなければなりません。\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"サーバエラーが発生しました。\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"不正な形式のリクエストです。\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"認証情報が正しくありません。\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"認証情報が含まれていません。\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"このアクションを実行する権限がありません。\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"見つかりませんでした。\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"メソッド \\\"{method}\\\" は許されていません。\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"リクエストのAcceptヘッダを満たすことができませんでした。\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"リクエストのメディアタイプ \\\"{media_type}\\\" はサポートされていません。\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"リクエストの処理は絞られました。\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"この項目は必須です。\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"この項目はnullにできません。\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" は有効なブーリアンではありません。\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"この項目は空にできません。\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"この項目が{max_length}文字より長くならないようにしてください。\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"この項目は少なくとも{min_length}文字以上にしてください。\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"有効なメールアドレスを入力してください。\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"この値は所要のパターンにマッチしません。\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"文字、数字、アンダースコア、またはハイフンから成る有効な \\\"slug\\\" を入力してください。\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"有効なURLを入力してください。\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" は有効なUUIDではありません。\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"有効なIPv4またはIPv6アドレスを入力してください。\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"有効な整数を入力してください。\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"この値は{max_value}以下にしてください。\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"この値は{min_value}以上にしてください。\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"文字列が長過ぎます。\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"有効な数値を入力してください。\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"合計で最大{max_digits}桁以下になるようにしてください。\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"小数点以下の桁数を{max_decimal_places}を超えないようにしてください。\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"整数部の桁数を{max_whole_digits}を超えないようにしてください。\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日時の形式が違います。以下のどれかの形式にしてください: {format}。\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"日付ではなく日時を入力してください。\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日付の形式が違います。以下のどれかの形式にしてください: {format}。\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"日時ではなく日付を入力してください。\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"時刻の形式が違います。以下のどれかの形式にしてください: {format}。\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"機関の形式が違います。以下のどれかの形式にしてください: {format}。\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\"は有効な選択肢ではありません。\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \" {count} 個より多い...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\\\"{input_type}\\\" 型のデータではなく項目のリストを入力してください。\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"空でない項目を選択してください。\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\"は有効なパスの選択肢ではありません。\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"ファイルが添付されていません。\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"添付されたデータはファイルではありません。フォームのエンコーディングタイプを確認してください。\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"ファイル名が取得できませんでした。\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"添付ファイルの中身が空でした。\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"ファイル名は最大{max_length}文字にしてください({length}文字でした)。\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"有効な画像をアップロードしてください。アップロードされたファイルは画像でないか壊れた画像です。\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"リストは空ではいけません。\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\\\"{input_type}\\\" 型のデータではなく項目の辞書を入力してください。\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"値は有効なJSONでなければなりません。\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"提出\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"昇順\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"降順\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"不正なページです。\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"カーソルが不正です。\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"主キー \\\"{pk_value}\\\" は不正です - データが存在しません。\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"不正な型です。{data_type} 型ではなく主キーの値を入力してください。\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"ハイパーリンクが不正です - URLにマッチしません。\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"ハイパーリンクが不正です - 不正なURLにマッチします。\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"ハイパーリンクが不正です - リンク先が存在しません。\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"不正なデータ型です。{data_type} 型ではなくURL文字列を入力してください。\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"{slug_name}={value} のデータが存在しません。\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"不正な値です。\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"不正なデータです。{datatype} 型ではなく辞書を入力してください。\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"フィルタ\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"フィールドフィルタ\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"順序\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"検索\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"なし\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"選択する項目がありません。\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"この項目は一意でなければなりません。\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"項目 {field_names} は一意な組でなければなりません。\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"この項目は \\\"{date_field}\\\" の日に対して一意でなければなりません。\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"この項目は \\\"{date_field}\\\" の月に対して一意でなければなりません。\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"この項目は \\\"{date_field}\\\" の年に対して一意でなければなりません。\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\\\"Accept\\\" 内のバージョンが不正です。\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URLパス内のバージョンが不正です。\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"不正なバージョンのURLのパスです。どのバージョンの名前空間にも一致しません。\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"ホスト名内のバージョンが不正です。\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"クエリパラメータ内のバージョンが不正です。\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"権限がありません。\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ko_KR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# GarakdongBigBoy <novelview9@gmail.com>, 2017\n# Joon Hwan 김준환 <xncbf12@gmail.com>, 2017\n# SUN CHOI <best2378@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-09-28 09:41+0000\\n\"\n\"Last-Translator: GarakdongBigBoy <novelview9@gmail.com>\\n\"\n\"Language-Team: Korean (Korea) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ko_KR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ko_KR\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"기본 헤더(basic header)가 유효하지 않습니다. 인증데이터(credentials)가 제공되지 않았습니다.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"기본 헤더(basic header)가 유효하지 않습니다. 인증데이터(credentials) 문자열은 빈칸(spaces)을 포함하지 않아야 합니다.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"기본 헤더(basic header)가 유효하지 않습니다. 인증데이터(credentials)가 base64로 적절히 부호화(encode)되지 않았습니다.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"아이디/비밀번호가 유효하지 않습니다.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"계정이 중지되었거나 삭제되었습니다.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"토큰 헤더가 유효하지 않습니다. 인증데이터(credentials)가 제공되지 않았습니다.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"토큰 헤더가 유효하지 않습니다. 토큰 문자열은 빈칸(spaces)을 포함하지 않아야 합니다.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"토큰 헤더가 유효하지 않습니다. 토큰 문자열은 유효하지 않은 문자를 포함하지 않아야 합니다.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"토큰이 유효하지 않습니다.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"사용자 계정을 사용할 수 없습니다.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"제공된 인증데이터(credentials)로는 로그인할 수 없습니다.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"아이디\\\"와 \\\"비밀번호\\\"를 포함해야 합니다.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"서버 장애가 발생했습니다.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"잘못된 요청입니다.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"자격 인증데이터(authentication credentials)가 정확하지 않습니다.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"자격 인증데이터(authentication credentials)가 제공되지 않았습니다.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"이 작업을 수행할 권한(permission)이 없습니다.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"찾을 수 없습니다.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"메소드(Method) \\\"{method}\\\"는 허용되지 않습니다.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Accept header 요청을 만족할 수 없습니다.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"요청된 \\\"{media_type}\\\"가 지원되지 않는 미디어 형태입니다.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"요청이 지연(throttled)되었습니다.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"이 필드는 필수 항목입니다.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"이 필드는 null일 수 없습니다.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\"이 유효하지 않은 부울(boolean)입니다.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"이 필드는 blank일 수 없습니다.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"이 필드의 글자 수가 {max_length} 이하인지 확인하십시오.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"이 필드의 글자 수가  적어도 {min_length} 이상인지 확인하십시오.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"유효한 이메일 주소를 입력하십시오.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"형식에 맞지 않는 값입니다.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"문자, 숫자, 밑줄( _ ) 또는 하이픈( - )으로 이루어진 유효한 \\\"slug\\\"를 입력하십시오.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"유효한 URL을 입력하십시오.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\"가 유효하지 않은 UUID 입니다.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"유효한 IPv4 또는 IPv6 주소를 입력하십시오.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"유효한 정수(integer)를 넣어주세요.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"이 값이 {max_value}보다 작거나 같은지 확인하십시오.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"이 값이 {min_value}보다 크거나 같은지 확인하십시오.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"문자열 값이 너무 큽니다.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"유효한 숫자를 넣어주세요.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"전체 숫자(digits)가 {max_digits} 이하인지 확인하십시오.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"소수점 자릿수가  {max_decimal_places} 이하인지 확인하십시오.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"소수점 자리 앞에 숫자(digits)가 {max_whole_digits} 이하인지 확인하십시오.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime의 포멧이 잘못되었습니다. 이 형식들 중 한가지를 사용하세요: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"예상된 datatime 대신 date를 받았습니다.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Date의 포멧이 잘못되었습니다. 이 형식들 중 한가지를 사용하세요: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"예상된 date 대신 datetime을 받았습니다.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Time의 포멧이 잘못되었습니다. 이 형식들 중 한가지를 사용하세요: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Duration의 포멧이 잘못되었습니다. 이 형식들 중 한가지를 사용하세요: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\"이 유효하지 않은 선택(choice)입니다.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"아이템 리스트가 예상되었으나 \\\"{input_type}\\\"를 받았습니다.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"이 선택 항목은 비워 둘 수 없습니다.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\"이 유효하지 않은 경로 선택입니다.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"파일이 제출되지 않았습니다.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"제출된 데이터는 파일이 아닙니다. 제출된 서식의 인코딩 형식을 확인하세요.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"파일명을 알 수 없습니다.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"제출한 파일이 비어있습니다.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"이 파일명의 글자수가 최대 {max_length}를 넘지 않는지 확인하십시오. (이것은 {length}가 있습니다).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"유효한 이미지 파일을 업로드 하십시오. 업로드 하신 파일은 이미지 파일이 아니거나 손상된 이미지 파일입니다.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"이 리스트는 비워 둘 수 없습니다.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"아이템 딕셔너리가 예상되었으나 \\\"{input_type}\\\" 타입을 받았습니다.\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Value 는 유효한 JSON형식이어야 합니다.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"오름차순\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"내림차순\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"페이지가 유효하지 않습니다.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"커서(cursor)가 유효하지 않습니다.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"유효하지 않은 pk \\\"{pk_value}\\\" - 객체가 존재하지 않습니다.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"잘못된 형식입니다. pk 값 대신 {data_type}를 받았습니다.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"유효하지 않은 하이퍼링크 - 일치하는 URL이 없습니다.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"유효하지 않은 하이퍼링크 - URL이 일치하지 않습니다.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"유효하지 않은 하이퍼링크 - 객체가 존재하지 않습니다.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"잘못된 형식입니다. URL 문자열을 예상했으나 {data_type}을 받았습니다.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"{slug_name}={value} 객체가 존재하지 않습니다.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"값이 유효하지 않습니다.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"유효하지 않은 데이터. 딕셔너리(dictionary)대신 {datatype}를 받았습니다.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"검색\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"선택할 아이템이 없습니다.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"이 필드는 반드시 고유(unique)해야 합니다.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"필드 {field_names} 는 반드시 고유(unique)해야 합니다.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"이 필드는 고유(unique)한 \\\"{date_field}\\\" 날짜를 갖습니다.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"이 필드는  고유(unique)한 \\\"{date_field}\\\" 월을 갖습니다. \"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"이 필드는 고유(unique)한 \\\"{date_field}\\\" 년을 갖습니다. \"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\\\"Accept\\\" 헤더(header)의 버전이 유효하지 않습니다.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URL path의 버전이 유효하지 않습니다.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"URL 경로에 유효하지 않은 버전이 있습니다. 버전 네임 스페이스와 일치하지 않습니다.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"hostname내 버전이 유효하지 않습니다.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"쿼리 파라메터내 버전이 유효하지 않습니다.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"사용 권한이 거부되었습니다.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/lv/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# peterisb <pb@sungis.lv>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-05 12:13+0000\\n\"\n\"Last-Translator: peterisb <pb@sungis.lv>\\n\"\n\"Language-Team: Latvian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/lv/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: lv\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Nederīgs pieprasījuma sākums. Akreditācijas parametri nav nodrošināti.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Nederīgs pieprasījuma sākums. Akreditācijas parametriem jābūt bez atstarpēm.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Nederīgs pieprasījuma sākums. Akreditācijas parametri nav korekti base64 kodēti.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nederīgs lietotājvārds/parole.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Lietotājs neaktīvs vai dzēsts.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Nederīgs pilnvaras sākums. Akreditācijas parametri nav nodrošināti.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Nederīgs pilnvaras sākums. Pilnvaras parametros nevar būt tukšumi.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Nederīgs pilnvaras sākums. Pilnvaras parametros nevar būt nederīgas zīmes.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Nederīga pilnavara.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Autorizācijas pilnvara\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Atslēga\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Lietotājs\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Izveidots\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Pilnvara\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Pilnvaras\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Lietotājvārds\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Parole\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Lietotāja konts ir atslēgts.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Neiespējami pieteikties sistēmā ar nodrošinātajiem akreditācijas datiem.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Jābūt iekļautam \\\"username\\\" un \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Notikusi servera kļūda.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Nenoformēts pieprasījums.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Nekorekti autentifikācijas parametri.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Netika nodrošināti autorizācijas parametri.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Tev nav tiesību veikt šo darbību.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nav atrasts.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metode \\\"{method}\\\" nav atļauta.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Nevarēja apmierināt pieprasījuma Accept header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Pieprasījumā neatbalstīts datu tips \\\"{media_type}\\\" .\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Pieprasījums tika apturēts.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Šis lauks ir obligāts.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Šis lauks nevar būt null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" ir nederīga loģiskā vērtība.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Šis lauks nevar būt tukšs.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Pārliecinies, ka laukā nav vairāk par {max_length} zīmēm.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Pārliecinies, ka laukā ir vismaz {min_length} zīmes.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Ievadi derīgu e-pasta adresi.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Šī vērtība neatbilst prasītajam pierakstam.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Ievadi derīgu \\\"slug\\\" vērtību, kura sastāv no burtiem, skaitļiem, apakš-svītras vai defises.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Ievadi derīgu URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" ir nedrīgs UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Ievadi derīgu IPv4 vai IPv6 adresi.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Prasīta ir derīga skaitliska vērtība.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Pārliecinies, ka šī vērtība ir mazāka vai vienāda ar {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Pārliecinies, ka šī vērtība ir lielāka vai vienāda ar {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Teksta vērtība pārāk liela.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Derīgs skaitlis ir prasīts.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Pārliecinies, ka nav vairāk par {max_digits} zīmēm kopā.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Pārliecinies, ka nav vairāk par {max_decimal_places} decimālajām zīmēm.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Pārliecinies, ka nav vairāk par {max_whole_digits} zīmēm pirms komata.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datuma un laika formāts ir nepareizs. Lieto vienu no norādītajiem formātiem: \\\"{format}.\\\"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Tika gaidīts datums un laiks, saņemts datums..\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datumam ir nepareizs formāts. Lieto vienu no norādītajiem formātiem: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Tika gaidīts datums, saņemts datums un laiks.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Laikam ir nepareizs formāts. Lieto vienu no norādītajiem formātiem: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Ilgumam ir nepreizs formāts. Lieto vienu no norādītajiem formātiem: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" ir nederīga izvēle.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Vairāk par {count} ierakstiem...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Tika gaidīts saraksts ar ierakstiem, bet tika saņemts \\\"{input_type}\\\" tips.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Šī daļa nevar būt tukša.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" ir nederīga ceļa izvēle.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Neviens fails netika pievienots.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Pievienotie dati nebija fails. Pārbaudi kodējuma tipu formā.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Faila nosaukums nevar tikt noteikts.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Pievienotais fails ir tukšs.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Pārliecinies, ka faila nosaukumā ir vismaz {max_length} zīmes (tajā ir  {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Augšupielādē derīgu attēlu. Pievienotā datne nebija attēls vai bojāts attēls.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Šis saraksts nevar būt tukšs.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Tika gaidīta vārdnīca ar ierakstiem, bet tika saņemts \\\"{input_type}\\\" tips.\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Vērtībai ir jābūt derīgam JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Iesniegt\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"augoši\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"dilstoši\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Nederīga lapa.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Nederīgs kursors\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Nederīga pk \\\"{pk_value}\\\" - objekts neeksistē.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Nepareizs tips. Tika gaidīta pk vērtība, saņemts {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Nederīga hipersaite - Nav URL sakritība.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Nederīga hipersaite - Nederīga URL sakritība.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Nederīga hipersaite - Objekts neeksistē.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Nepareizs tips. Tika gaidīts URL teksts, saņemts {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekts ar {slug_name}={value} neeksistē.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Nedrīga vērtība.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Nederīgi dati. Tika gaidīta vārdnīca, saņemts {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtri\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Lauka filtri\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Kārtošana\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Meklēt\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Nekas\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Nav ierakstu, ko izvēlēties.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Šim laukam ir jābūt unikālam.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Laukiem {field_names} jāveido unikālas kombinācijas.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Šim laukam ir jābūt unikālam priekš \\\"{date_field}\\\" datuma.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Šim laukam ir jābūt unikālam priekš \\\"{date_field}\\\" mēneša.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Šim laukam ir jābūt unikālam priekš \\\"{date_field}\\\" gada.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Nederīga versija \\\"Accept\\\" galvenē.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Nederīga versija URL ceļā.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Nederīga versija URL ceļā. Nav atbilstības esošo versiju telpā.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Nederīga versija servera nosaukumā.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Nederīga versija pieprasījuma parametros.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Pieeja liegta.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/mk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Filip Dimitrovski <filipdimitrovski22@gmail.com>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Filip Dimitrovski <filipdimitrovski22@gmail.com>\\n\"\n\"Language-Team: Macedonian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/mk/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: mk\\n\"\n\"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Невалиден основен header. Не се внесени податоци за автентикација.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Невалиден основен header. Автентикационата низа не треба да содржи празни места.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Невалиден основен header. Податоците за автентикација не се енкодирани со base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Невалидно корисничко име/лозинка.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Корисникот е деактивиран или избришан.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Невалиден токен header. Не се внесени податоци за најава.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Невалиден токен во header. Токенот не треба да содржи празни места.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Невалиден токен.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Автентикациски токен\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Корисник\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Токен\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Токени\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Корисничко име\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Лозинка\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Сметката на корисникот е деактивирана.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Не може да се најавите со податоците за најава.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Мора да се внесе „username“ и „password“.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Настана серверска грешка.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Неправилен request.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Неточни податоци за најава.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Не се внесени податоци за најава.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Немате дозвола да го сторите ова.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Не е пронајдено ништо.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Методата \\\"{method}\\\" не е дозволена.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Не може да се исполни барањето на Accept header-от.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Media типот „{media_type}“ не е поддржан.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Request-от е забранет заради ограничувања.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Ова поле е задолжително.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Ова поле не смее да биде недефинирано.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" не е валиден boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Ова поле не смее да биде празно.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Ова поле не смее да има повеќе од {max_length} знаци.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Ова поле мора да има барем {min_length} знаци.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Внесете валидна email адреса.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Ова поле не е по правилната шема/барање.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Внесете валидно име што содржи букви, бројки, долни црти или црти.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Внесете валиден URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" не е валиден UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Внеси валидна IPv4 или IPv6 адреса.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Задолжителен е валиден цел број.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Вредноста треба да биде помала или еднаква на {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Вредноста треба да биде поголема или еднаква на {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Вредноста е преголема.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Задолжителен е валиден број.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Не смее да има повеќе од {max_digits} цифри вкупно.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Не смее да има повеќе од {max_decimal_places} децимални места.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Не смее да има повеќе од {max_whole_digits} цифри пред децималната точка.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Датата и времето се со погрешен формат. Користете го овој формат: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Очекувано беше дата и време, а внесено беше само дата.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Датата е со погрешен формат. Користете го овој формат: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Очекувана беше дата, а внесени беа и дата и време.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Времето е со погрешен формат. Користете го овој формат: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"„{input}“ не е валиден избор.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Повеќе од {count} ставки...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Очекувана беше листа од ставки, а внесено беше „{input_type}“.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Ниеден фајл не е качен (upload-иран).\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Испратените податоци не се фајл. Проверете го encoding-от на формата.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Не може да се открие име на фајлот.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Качениот (upload-иран) фајл е празен.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Името на фајлот треба да има највеќе {max_length} знаци (а има {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Качете (upload-ирајте) валидна слика. Фајлот што го качивте не е валидна слика или е расипан.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Оваа листа не смее да биде празна.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Очекуван беше dictionary од ставки, a внесен беше тип \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Вредноста мора да биде валиден JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Испрати\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"растечки\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"опаѓачки\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Невалидна вредност за страна.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Невалиден покажувач (cursor)\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Невалиден pk „{pk_value}“ - објектот не постои.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Неточен тип. Очекувано беше pk, а внесено {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Невалиден хиперлинк - не е внесен URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Невалиден хиперлинк - внесен е неправилен URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Невалиден хиперлинк - Објектот не постои.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Неточен тип. Очекувано беше URL, a внесено {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Објектот со {slug_name}={value} не постои.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Невалидна вредност.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Невалидни податоци. Очекуван беше dictionary, а внесен {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Филтри\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Филтри на полиња\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Подредување\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Пребарај\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ништо\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Нема ставки за избирање.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Ова поле мора да биде уникатно.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Полињата {field_names} заедно мора да формираат уникатен збир.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Ова поле мора да биде уникатно за „{date_field}“ датата.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Ова поле мора да биде уникатно за „{date_field}“ месецот.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Ова поле мора да биде уникатно за „{date_field}“ годината.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Невалидна верзија во „Accept“ header-от.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Невалидна верзија во URL патеката.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Верзијата во URL патеката не е валидна. Не се согласува со ниеден version namespace (именски простор за верзии).\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Невалидна верзија во hostname-от.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Невалидна верзија во query параметарот.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Барањето не е дозволено.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/nb/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Håken Lid <haakenlid@gmail.com>, 2017\n# Petter Kjelkenes <kjelkenes@gmail.com>, 2015\n# Thomas Bruun <thomas.bruun@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-11-28 15:25+0000\\n\"\n\"Last-Translator: Håken Lid <haakenlid@gmail.com>\\n\"\n\"Language-Team: Norwegian Bokmål (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/nb/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: nb\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Ugyldig basic header. Ingen legitimasjon gitt.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Ugyldig basic header. Legitimasjonsstreng bør ikke inneholde mellomrom.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Ugyldig basic header. Legitimasjonen ikke riktig Base64 kodet.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Ugyldig brukernavn eller passord.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Bruker inaktiv eller slettet.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Ugyldig token header. Ingen legitimasjon gitt.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Ugyldig token header. Token streng skal ikke inneholde mellomrom.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Ugyldig token header. Tokenstrengen skal ikke inneholde ugyldige tegn.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Ugyldig token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Auth Token\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Nøkkel\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Bruker\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Opprettet\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokener\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Brukernavn\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Passord\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Brukerkonto er deaktivert.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Kan ikke logge inn med gitt legitimasjon.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Må inneholde \\\"username\\\" og \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"En serverfeil skjedde.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Misformet forespørsel.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Ugyldig autentiseringsinformasjon.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Manglende autentiseringsinformasjon.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Du har ikke tilgang til å utføre denne handlingen.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Ikke funnet.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoden \\\"{method}\\\" ikke gyldig.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Kunne ikke tilfredsstille request Accept header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Ugyldig media type \\\"{media_type}\\\" i request.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Forespørselen ble strupet.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Dette feltet er påkrevd.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Dette feltet må ikke være tomt.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" er ikke en gyldig bolsk verdi.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Dette feltet må ikke være blankt.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Forsikre deg om at dette feltet ikke har mer enn {max_length} tegn.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Forsikre deg at dette feltet har minst {min_length} tegn.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Oppgi en gyldig epost-adresse.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Denne verdien samsvarer ikke med de påkrevde mønsteret.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Skriv inn en gyldig \\\"slug\\\" som består av bokstaver, tall, understrek eller bindestrek.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Skriv inn en gyldig URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" er ikke en gyldig UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Skriv inn en gyldig IPv4 eller IPv6-adresse.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"En gyldig heltall er nødvendig.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Sikre denne verdien er mindre enn eller lik {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Sikre denne verdien er større enn eller lik {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Strengverdien for stor.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Et gyldig nummer er nødvendig.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Pass på at det ikke er flere enn {max_digits} siffer totalt.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Pass på at det ikke er flere enn {max_decimal_places} desimaler.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Pass på at det ikke er flere enn {max_whole_digits} siffer før komma.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime har feil format. Bruk et av disse formatene i stedet: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Forventet en datetime, men fikk en date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Dato har feil format. Bruk et av disse formatene i stedet: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Forventet en date, men fikk en datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Tid har feil format. Bruk et av disse formatene i stedet: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Varighet har feil format. Bruk et av disse formatene i stedet: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" er ikke et gyldig valg.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Mer enn {count} elementer ...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Forventet en liste over elementer, men fikk type \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Dette valget kan ikke være tomt.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" er ikke en gyldig bane valg.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Ingen fil ble sendt.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"De innsendte data var ikke en fil. Kontroller kodingstypen på skjemaet.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Kunne ikke finne filnavn.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Den innsendte filen er tom.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Sikre dette filnavnet har på det meste {max_length} tegn (det har {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Last opp et gyldig bilde. Filen du lastet opp var enten ikke et bilde eller en ødelagt bilde.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Denne listen kan ikke være tom.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Forventet en dictionary av flere ting, men fikk typen \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Verdien må være gyldig JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Send inn\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"stigende\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"synkende\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Ugyldig side\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Ugyldig markør\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Ugyldig pk \\\"{pk_value}\\\" - objektet eksisterer ikke.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Feil type. Forventet pk verdi, fikk {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Ugyldig hyperkobling - No URL match.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ugyldig hyperkobling - Incorrect URL match.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ugyldig hyperkobling - Objektet eksisterer ikke.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Feil type. Forventet URL streng, fikk {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt med {slug_name}={value} finnes ikke.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Ugyldig verdi.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Ugyldige data. Forventet en dictionary, men fikk {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtre\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Feltfiltre\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sortering\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Søk\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ingen\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Ingenting å velge.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Dette feltet må være unikt.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Feltene {field_names} må gjøre et unikt sett.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Dette feltet må være unikt for \\\"{date_field}\\\" dato.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Dette feltet må være unikt for \\\"{date_field}\\\" måned.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Dette feltet må være unikt for \\\"{date_field}\\\" år.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Ugyldig versjon på \\\"Accept\\\" header.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Ugyldig versjon i URL-banen.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Ugyldig versjon i URL. Passer ikke med noen eksisterende versjon.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Ugyldig versjon i vertsnavn.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Ugyldig versjon i søkeparameter.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Tillatelse avslått.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/nl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Hans van Luttikhuizen <hansvanluttikhuizen@me.com>, 2016\n# Mike Dingjan <mike@mikedingjan.nl>, 2015\n# Mike Dingjan <mike@mikedingjan.nl>, 2017\n# Mike Dingjan <mike@mikedingjan.nl>, 2015\n# Hans van Luttikhuizen <hansvanluttikhuizen@me.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Mike Dingjan <mike@mikedingjan.nl>\\n\"\n\"Language-Team: Dutch (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/nl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: nl\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Ongeldige basic header. Geen logingegevens opgegeven.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Ongeldige basic header. logingegevens kunnen geen spaties bevatten.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Ongeldige basic header. logingegevens zijn niet correct base64-versleuteld.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Ongeldige gebruikersnaam/wachtwoord.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Gebruiker inactief of verwijderd.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Ongeldige token header. Geen logingegevens opgegeven\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Ongeldige token header. Token kan geen spaties bevatten.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Ongeldige token header. Token kan geen ongeldige karakters bevatten.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Ongeldige token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Autorisatietoken\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Key\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Gebruiker\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Aangemaakt\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Gebruikersnaam\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Wachtwoord\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Gebruikersaccount is gedeactiveerd.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Kan niet inloggen met opgegeven gegevens.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Moet \\\"username\\\" en \\\"password\\\" bevatten.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Er is een serverfout opgetreden.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Ongeldig samengestelde request.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Ongeldige authenticatiegegevens.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Authenticatiegegevens zijn niet opgegeven.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Je hebt geen toestemming om deze actie uit te voeren.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Niet gevonden.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Methode \\\"{method}\\\" niet toegestaan.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Kan niet voldoen aan de opgegeven Accept header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Ongeldige media type \\\"{media_type}\\\" in aanvraag.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Aanvraag was verstikt.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Dit veld is vereist.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Dit veld mag niet leeg zijn.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" is een ongeldige booleanwaarde.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Dit veld mag niet leeg zijn.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Zorg ervoor dat dit veld niet meer dan {max_length} karakters bevat.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Zorg ervoor dat dit veld minimaal {min_length} karakters bevat.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Voer een geldig e-mailadres in.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Deze waarde voldoet niet aan het vereisde formaat.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Voer een geldige \\\"slug\\\" in, bestaande uit letters, cijfers, lage streepjes of streepjes.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Voer een geldige URL in.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" is een ongeldige UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Voer een geldig IPv4- of IPv6-adres in.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Een geldig getal is vereist.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Zorg ervoor dat deze waarde kleiner is dan of gelijk is aan {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Zorg ervoor dat deze waarde groter is dan of gelijk is aan {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Tekstwaarde is te lang.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Een geldig nummer is vereist.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Zorg ervoor dat er in totaal niet meer dan {max_digits} cijfers zijn.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Zorg ervoor dat er niet meer dan {max_decimal_places} cijfers achter de komma zijn.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Zorg ervoor dat er niet meer dan {max_whole_digits} cijfers voor de komma zijn.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime heeft een ongeldig formaat, gebruik 1 van de volgende formaten: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Verwachtte een datetime, maar kreeg een date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Date heeft het verkeerde formaat, gebruik 1 van deze formaten: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Verwachtte een date, maar kreeg een datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Time heeft het verkeerde formaat, gebruik 1 van onderstaande formaten: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Tijdsduur heeft een verkeerd formaat, gebruik 1 van onderstaande formaten: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" is een ongeldige keuze.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Meer dan {count} items...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Verwachtte een lijst met items, maar kreeg type \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Deze selectie mag niet leeg zijn.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" is niet een geldig pad.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Er is geen bestand opgestuurd.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"De verstuurde data was geen bestand. Controleer de encoding type op het formulier.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Bestandsnaam kon niet vastgesteld worden.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Het verstuurde bestand is leeg.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Zorg ervoor dat deze bestandsnaam hoogstens {max_length} karakters heeft (het heeft er {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Upload een geldige afbeelding, de geüploade afbeelding is geen afbeelding of is beschadigd geraakt,\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Deze lijst mag niet leeg zijn.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Verwachtte een dictionary van items, maar kreeg type \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Waarde moet valide JSON zijn.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Verzenden\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"oplopend\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"aflopend\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Ongeldige pagina.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Ongeldige cursor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Ongeldige pk \\\"{pk_value}\\\" - object bestaat niet.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Ongeldig type. Verwacht een pk-waarde, ontving {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Ongeldige hyperlink - Geen overeenkomende URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ongeldige hyperlink - Ongeldige URL\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ongeldige hyperlink - Object bestaat niet.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Ongeldig type. Verwacht een URL, ontving {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Object met {slug_name}={value} bestaat niet.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Ongeldige waarde.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Ongeldige data. Verwacht een dictionary, kreeg een {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filters\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Veldfilters\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sorteer op\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Zoek\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Geen\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Geen items geselecteerd.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Dit veld moet uniek zijn.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"De velden {field_names} moeten een unieke set zijn.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Dit veld moet uniek zijn voor de \\\"{date_field}\\\" datum.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Dit veld moet uniek zijn voor de \\\"{date_field}\\\" maand.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Dit veld moet uniek zijn voor de \\\"{date_field}\\\" year.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Ongeldige versie in \\\"Accept\\\" header.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Ongeldige versie in URL-pad.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Ongeldige versie in het URL pad, komt niet overeen met een geldige versie namespace\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Ongeldige versie in hostnaam.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Ongeldige versie in query parameter.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Toestemming geweigerd.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/nn/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Norwegian Nynorsk (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/nn/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: nn\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/no/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Norwegian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/no/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: no\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/pl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Janusz Harkot <jh@blueice.pl>, 2015\n# Piotr Jakimiak <legolass71@gmail.com>, 2015\n# m_aciek <maciej.olko@gmail.com>, 2016\n# m_aciek <maciej.olko@gmail.com>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: m_aciek <maciej.olko@gmail.com>\\n\"\n\"Language-Team: Polish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/pl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pl\\n\"\n\"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Niepoprawny podstawowy nagłówek. Brak danych uwierzytelniających.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Niepoprawny podstawowy nagłówek. Ciąg znaków danych uwierzytelniających nie powinien zawierać spacji.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Niepoprawny podstawowy nagłówek. Niewłaściwe kodowanie base64 danych uwierzytelniających.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Niepoprawna nazwa użytkownika lub hasło.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Użytkownik nieaktywny lub usunięty.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Niepoprawny nagłówek tokena. Brak danych uwierzytelniających.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Niepoprawny nagłówek tokena. Token nie może zawierać odstępów.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Błędny nagłówek z tokenem. Token nie może zawierać błędnych znaków.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Niepoprawny token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Token uwierzytelniający\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Klucz\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Użytkownik\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Stworzono\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokeny\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Nazwa użytkownika\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Hasło\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Konto użytkownika jest nieaktywne.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Podane dane uwierzytelniające nie pozwalają na zalogowanie.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Musi zawierać \\\"username\\\" i \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Wystąpił błąd serwera.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Zniekształcone żądanie.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Błędne dane uwierzytelniające.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Nie podano danych uwierzytelniających.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Nie masz uprawnień, by wykonać tę czynność.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nie znaleziono.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Niedozwolona metoda \\\"{method}\\\".\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Nie można zaspokoić nagłówka Accept żądania.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Brak wsparcia dla żądanego typu danych \\\"{media_type}\\\".\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Żądanie zostało zdławione.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"To pole jest wymagane.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Pole nie może mieć wartości null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" nie jest poprawną wartością logiczną.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"To pole nie może być puste.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Upewnij się, że to pole ma nie więcej niż {max_length} znaków.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Upewnij się, że pole ma co najmniej {min_length} znaków.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Podaj poprawny adres e-mail.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Ta wartość nie pasuje do wymaganego wzorca.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Wprowadź poprawną wartość pola typu \\\"slug\\\", składającą się ze znaków łacińskich, cyfr, podkreślenia lub myślnika.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Wprowadź poprawny adres URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" nie jest poprawnym UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Wprowadź poprawny adres IPv4 lub IPv6.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Wymagana poprawna liczba całkowita.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Upewnij się, że ta wartość jest mniejsza lub równa {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Upewnij się, że ta wartość jest większa lub równa {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Za długi ciąg znaków.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Wymagana poprawna liczba.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Upewnij się, że liczba ma nie więcej niż {max_digits} cyfr.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Upewnij się, że liczba ma nie więcej niż {max_decimal_places} cyfr dziesiętnych.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Upewnij się, że liczba ma nie więcej niż {max_whole_digits} cyfr całkowitych.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Wartość daty z czasem ma zły format. Użyj jednego z dostępnych formatów: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Oczekiwano datę z czasem, otrzymano tylko datę.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Data ma zły format. Użyj jednego z tych formatów: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Oczekiwano daty a otrzymano datę z czasem.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Błędny format czasu. Użyj jednego z dostępnych formatów: {format}\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Czas trwania ma zły format. Użyj w zamian jednego z tych formatów: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" nie jest poprawnym wyborem.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Więcej niż {count} elementów...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Oczekiwano listy elementów, a otrzymano dane typu \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Zaznaczenie nie może być puste.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" nie jest poprawną ścieżką.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Nie przesłano pliku.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Przesłane dane nie były plikiem. Sprawdź typ kodowania formatki.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Nie można określić nazwy pliku.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Przesłany plik jest pusty.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Upewnij się, że nazwa pliku ma długość co najwyżej {max_length} znaków (aktualnie ma {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Prześlij poprawny plik graficzny. Przesłany plik albo nie jest grafiką lub jest uszkodzony.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Lista nie może być pusta.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Oczekiwano słownika, ale otrzymano  \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Wartość musi być poprawnym ciągiem znaków JSON\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Wyślij\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"rosnąco\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"malejąco\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Niepoprawna strona.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Niepoprawny wskaźnik\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Błędny klucz główny \\\"{pk_value}\\\" - obiekt nie istnieje.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Błędny typ danych. Oczekiwano wartość klucza głównego, otrzymano {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Błędny hyperlink - nie znaleziono pasującego adresu URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Błędny hyperlink - błędne dopasowanie adresu URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Błędny hyperlink - obiekt nie istnieje.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Błędny typ danych. Oczekiwano adresu URL, otrzymano {data_type}\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Obiekt z polem {slug_name}={value} nie istnieje\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Niepoprawna wartość.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Niepoprawne dane. Oczekiwano słownika, otrzymano  {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtry\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Pola filtrów\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Kolejność\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Szukaj\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"None\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Nie wybrano wartości.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Wartość dla tego pola musi być unikalna.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Pola {field_names} muszą tworzyć unikalny zestaw.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"To pole musi mieć unikalną wartość dla jednej daty z pola \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"To pole musi mieć unikalną wartość dla konkretnego miesiąca z pola \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"To pole musi mieć unikalną wartość dla konkretnego roku z pola \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Błędna wersja w nagłówku \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Błędna wersja w ścieżce URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Niepoprawna wersja w ścieżce URL. Nie pasuje do przestrzeni nazw żadnej wersji.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Błędna wersja w nazwie hosta.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Błędna wersja w parametrach zapytania.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Brak uprawnień.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/pt/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Portuguese (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/pt/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pt\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/pt_BR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Craig Blaszczyk <masterjakul@gmail.com>, 2015\n# Ederson  Mota Pereira <edermp@gmail.com>, 2015\n# Filipe Rinaldi <filipe.rinaldi@gmail.com>, 2015\n# Hugo Leonardo Chalhoub Mendonça <hugoleonardocm@live.com>, 2015\n# Jonatas Baldin <jonatas.baldin@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-12-06 09:53+0000\\n\"\n\"Last-Translator: Jonatas Baldin <jonatas.baldin@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/pt_BR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pt_BR\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Cabeçalho básico inválido. Credenciais não fornecidas.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Cabeçalho básico inválido. String de credenciais não deve incluir espaços.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Cabeçalho básico inválido. Credenciais codificadas em base64 incorretamente.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Usuário ou senha inválido.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Usuário inativo ou removido.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Cabeçalho de token inválido. Credenciais não fornecidas.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Cabeçalho de token inválido. String de token não deve incluir espaços.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Cabeçalho de token inválido. String de token não deve possuir caracteres inválidos.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token inválido.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Token de autenticação\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Chave\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Usuário\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Criado\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Nome do usuário\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Senha\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Conta de usuário desabilitada.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Impossível fazer login com as credenciais fornecidas.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Obrigatório incluir \\\"usuário\\\" e \\\"senha\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Ocorreu um erro de servidor.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Pedido malformado.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Credenciais de autenticação incorretas.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"As credenciais de autenticação não foram fornecidas.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Você não tem permissão para executar essa ação.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Não encontrado.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Método \\\"{method}\\\" não é permitido.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Não foi possível satisfazer a requisição do cabeçalho Accept.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Tipo de mídia  \\\"{media_type}\\\" no pedido não é suportado.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Pedido foi limitado.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Este campo é obrigatório.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Este campo não pode ser nulo.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" não é um valor boleano válido.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Este campo não pode ser em branco.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Certifique-se de que este campo não tenha mais de {max_length} caracteres.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Certifique-se de que este campo tenha mais de {min_length} caracteres.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Insira um endereço de email válido.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Este valor não corresponde ao padrão exigido.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Entrar um \\\"slug\\\" válido que consista de letras, números, sublinhados ou hífens.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Entrar um URL válido.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" não é um UUID válido.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Informe um endereço IPv4 ou IPv6 válido.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Um número inteiro válido é exigido.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Certifique-se de que este valor seja inferior ou igual a {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Certifque-se de que este valor seja maior ou igual a {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Valor da string é muito grande.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Um número válido é necessário.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Certifique-se de que não haja mais de {max_digits} dígitos no total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Certifique-se de que não haja mais de {max_decimal_places} casas decimais.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Certifique-se de que não haja mais de {max_whole_digits} dígitos antes do ponto decimal.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Formato inválido para data e hora. Use um dos formatos a seguir: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Necessário uma data e hora mas recebeu uma data.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Formato inválido para data. Use um dos formatos a seguir: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Necessário uma data mas recebeu uma data e hora.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Formato inválido para Tempo. Use um dos formatos a seguir: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Formato inválido para Duração. Use um dos formatos a seguir: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" não é um escolha válido.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Mais de {count} itens...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Necessário uma lista de itens, mas recebeu tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Esta seleção não pode estar vazia.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" não é uma escolha válida para um caminho.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Nenhum arquivo foi submetido.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"O dado submetido não é um arquivo. Certifique-se do tipo de codificação no formulário.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Nome do arquivo não pode ser determinado.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"O arquivo submetido está vázio.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Certifique-se de que o nome do arquivo tem menos de {max_length} caracteres (tem {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Fazer upload de uma imagem válida. O arquivo enviado não é um arquivo de imagem ou está corrompido.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Esta lista não pode estar vazia.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Esperado um dicionário de itens mas recebeu tipo \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Valor devo ser JSON válido.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Enviar\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"ascendente\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"descendente\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Página inválida.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Cursor inválido\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Pk inválido \\\"{pk_value}\\\" - objeto não existe.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Tipo incorreto. Esperado valor pk, recebeu {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Hyperlink inválido - Sem combinação para a URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Hyperlink inválido - Combinação URL incorreta.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Hyperlink inválido - Objeto não existe.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Tipo incorreto. Necessário string URL, recebeu {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objeto com {slug_name}={value} não existe.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valor inválido.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Dado inválido. Necessário um dicionário mas recebeu {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtra\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filtra de campo\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordenando\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Buscar\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Nenhum(a/as)\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Nenhum item para escholher.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Esse campo deve ser  único.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Os campos {field_names} devem criar um set único.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"O campo \\\"{date_field}\\\" deve ser único para a data.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"O campo \\\"{date_field}\\\" deve ser único para o mês.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"O campo \\\"{date_field}\\\" deve ser único para o ano.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Versão inválida no cabeçalho \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Versão inválida no caminho de URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Versão inválida no caminho da URL. Não corresponde a nenhuma versão do namespace.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Versão inválida no hostname.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Versão inválida no parâmetro de query.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permissão negada.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/pt_PT/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Portuguese (Portugal) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/pt_PT/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: pt_PT\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ro/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Elena-Adela Neacsu <adela.neacsu@rodeapps.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Romanian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ro/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ro\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Antet de bază invalid. Datele de autentificare nu au fost furnizate.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Antet de bază invalid. Şirul de caractere cu datele de autentificare nu trebuie să conțină spații.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Antet de bază invalid. Datele de autentificare nu au fost corect codificate în base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nume utilizator / Parolă invalid(ă).\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Utilizator inactiv sau șters.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Antet token invalid. Datele de autentificare nu au fost furnizate.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Antet token invalid. Şirul de caractere pentru token nu trebuie să conțină spații.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Antet token invalid. Şirul de caractere pentru token nu trebuie să conțină caractere nevalide.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Token nevalid.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Token de autentificare\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Cheie\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Utilizator\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Creat\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokenuri\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Nume de utilizator\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Parola\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Contul de utilizator este dezactivat.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Nu se poate conecta cu datele de conectare furnizate.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Trebuie să includă \\\"numele de utilizator\\\" și \\\"parola\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"A apărut o eroare pe server.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Cerere incorectă.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Date de autentificare incorecte.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Datele de autentificare nu au fost furnizate.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Nu aveți permisiunea de a efectua această acțiune.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nu a fost găsit(ă).\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoda \\\"{method}\\\" nu este permisa.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Antetul Accept al cererii nu a putut fi îndeplinit.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Cererea conține tipul media neacceptat \\\"{media_type}\\\"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Cererea a fost gâtuită.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Acest câmp este obligatoriu.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Acest câmp nu poate fi nul.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" nu este un boolean valid.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Acest câmp nu poate fi gol.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Asigurați-vă că acest câmp nu are mai mult de {max_length} caractere.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Asigurați-vă că acest câmp are cel puțin{min_length} caractere.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Introduceți o adresă de email validă.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Această valoare nu se potrivește cu şablonul cerut.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Introduceți un \\\"slug\\\" valid format din litere, numere, caractere de subliniere sau cratime.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Introduceți un URL valid.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" nu este un UUID valid.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Introduceți o adresă IPv4 sau IPv6 validă.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Este necesar un întreg valid.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Asigurați-vă că această valoare este mai mică sau egală cu {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Asigurați-vă că această valoare este mai mare sau egală cu {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Valoare șir de caractere prea mare.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Este necesar un număr valid.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Asigurați-vă că nu există mai mult de {max_digits} cifre în total.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Asigurați-vă că nu există mai mult de {max_decimal_places} zecimale.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Asigurați-vă că nu există mai mult de {max_whole_digits} cifre înainte de punctul zecimal.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Câmpul datetime are format greșit. Utilizați unul dintre aceste formate în loc: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Se aștepta un câmp datetime, dar s-a primit o dată.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Data are formatul greșit. Utilizați unul dintre aceste formate în loc: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Se aștepta o dată, dar s-a primit un câmp datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Timpul are formatul greșit. Utilizați unul dintre aceste formate în loc: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Durata are formatul greșit. Utilizați unul dintre aceste formate în loc: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" nu este o opțiune validă.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Mai mult de {count} articole ...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Se aștepta o listă de elemente, dar s-a primit tip \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Această selecție nu poate fi goală.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" nu este o cale validă.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Nici un fișier nu a fost sumis.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Datele prezentate nu sunt un fișier. Verificați tipul de codificare de pe formular.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Numele fișierului nu a putut fi determinat.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Fișierul sumis este gol.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Asigurați-vă că acest nume de fișier are cel mult {max_length} caractere (momentan are {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Încărcați o imagine validă. Fișierul încărcat a fost fie nu o imagine sau o imagine coruptă.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Această listă nu poate fi goală.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Se aștepta un dicționar de obiecte, dar s-a primit tipul \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Valoarea trebuie să fie JSON valid.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Sumiteţi\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Pagină nevalidă.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Cursor nevalid\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Pk \\\"{pk_value}\\\" nevalid - obiectul nu există.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Tip incorect. Se aștepta un pk, dar s-a primit \\\"{data_type}\\\".\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Hyperlink nevalid - Nici un URL nu se potrivește.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Hyperlink nevalid - Potrivire URL incorectă.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Hyperlink nevalid - Obiectul nu există.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Tip incorect. Se aștepta un URL, dar s-a primit \\\"{data_type}\\\".\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Obiectul cu {slug_name}={value}  nu există.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Valoare nevalidă.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Date nevalide. Se aștepta un dicționar de obiecte, dar s-a primit \\\"{datatype}\\\".\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtre\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filtre câmpuri\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordonare\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Căutare\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Nici unul/una\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Nu există elemente pentru a fi selectate.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Acest câmp trebuie să fie unic.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Câmpurile {field_names} trebuie să formeze un set unic.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Acest câmp trebuie să fie unic pentru data \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Acest câmp trebuie să fie unic pentru luna \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Acest câmp trebuie să fie unic pentru anul \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Versiune nevalidă în antetul \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Versiune nevalidă în calea URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Versiune nevalidă în numele de gazdă.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Versiune nevalid în parametrul de interogare.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Permisiune refuzată.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/ru/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Grigory Mishchenko <grishkokot@gmail.com>, 2017\n# Kirill Tarasenko, 2015\n# koodjo <koodjo@mail.ru>, 2015\n# Mike TUMS <mktums@gmail.com>, 2015\n# Sergei Sinitsyn <sinitsynsv@yandex.ru>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Grigory Mishchenko <grishkokot@gmail.com>\\n\"\n\"Language-Team: Russian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ru/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: ru\\n\"\n\"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Недопустимый заголовок. Не предоставлены учетные данные.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Недопустимый заголовок. Учетные данные не должны содержать пробелов.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Недопустимый заголовок. Учетные данные некорректно закодированны в base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Недопустимые имя пользователя или пароль.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Пользователь неактивен или удален.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Недопустимый заголовок токена. Не предоставлены учетные данные.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Недопустимый заголовок токена. Токен не должен содержать пробелов.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Недопустимый заголовок токена. Токен не должен содержать недопустимые символы.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Недопустимый токен.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Токен аутентификации\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Ключ\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Пользователь\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Создан\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Токен\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Токены\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Имя пользователя\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Пароль\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Учетная запись пользователя отключена.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Невозможно войти с предоставленными учетными данными.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Должен включать \\\"username\\\" и \\\"password\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Произошла ошибка сервера.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Искаженный запрос.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Некорректные учетные данные.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Учетные данные не были предоставлены.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"У вас нет прав для выполнения этой операции.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Не найдено.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Метод \\\"{method}\\\" не разрешен.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Невозможно удовлетворить \\\"Accept\\\" заголовок запроса.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Неподдерживаемый тип данных \\\"{media_type}\\\" в запросе.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Запрос был проигнорирован.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Это поле обязательно.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Это поле не может быть null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" не является корректным булевым значением.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Это поле не может быть пустым.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Убедитесь, что в этом поле не больше {max_length} символов.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Убедитесь, что в этом поле как минимум {min_length} символов.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Введите корректный адрес электронной почты.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Значение не соответствует требуемому паттерну.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Введите корректный \\\"slug\\\", состоящий из букв, цифр, знаков подчеркивания или дефисов.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Введите корректный URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" не является корректным UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Введите действительный адрес IPv4 или IPv6.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Требуется целочисленное значение.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Убедитесь, что значение меньше или равно {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Убедитесь, что значение больше или равно {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Слишком длинное значение.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Требуется численное значение.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Убедитесь, что в числе не больше {max_digits} знаков.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Убедитесь, что в числе не больше {max_decimal_places} знаков в дробной части.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Убедитесь, что в числе не больше {max_whole_digits} знаков в целой части.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Неправильный формат datetime. Используйте один из этих форматов:  {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Ожидался datetime, но был получен date.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Неправильный формат date. Используйте один из этих форматов: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Ожидался date, но был получен datetime.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Неправильный формат времени. Используйте один из этих форматов: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Неправильный формат. Используйте один из этих форматов: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" не является корректным значением.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Элементов больше чем {count}\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Ожидался list со значениями, но был получен \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Выбор не может быть пустым.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" не является корректным путем до файла\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Не был загружен файл.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Загруженный файл не является корректным файлом.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Невозможно определить имя файла.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Загруженный файл пуст.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Убедитесь, что имя файла меньше {max_length} символов (сейчас {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Загрузите корректное изображение. Загруженный файл не является изображением, либо является испорченным.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Этот список не может быть пустым.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Ожидался словарь со значениями, но был получен \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Значение должно быть правильным JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Отправить\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Неправильная страница\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Не корректный курсор\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Недопустимый первичный ключ \\\"{pk_value}\\\" - объект не существует.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Некорректный тип. Ожидалось значение первичного ключа, получен {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Недопустимая ссылка - нет совпадения по URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Недопустимая ссылка - некорректное совпадение по URL,\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Недопустимая ссылка - объект не существует.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Некорректный тип. Ожидался URL, получен {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Объект с {slug_name}={value} не существует.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Недопустимое значение.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Недопустимые данные. Ожидался dictionary, но был получен {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Фильтры\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Фильтры полей\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Порядок сортировки\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Поиск\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Ничего\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Нет элементов для выбора\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Это поле должно быть уникально.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Поля {field_names} должны производить массив с уникальными значениями.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Это поле должно быть уникально для даты \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Это поле должно быть уникально для месяца \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Это поле должно быть уникально для года \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Недопустимая версия в заголовке \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Недопустимая версия в пути URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Недопустимая версия в имени хоста.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Недопустимая версия в параметре запроса.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Доступ запрещен\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/sk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Stanislav Komanec <stano@videoflot.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Slovak (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/sk/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: sk\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Nesprávna hlavička. Neboli poskytnuté prihlasovacie údaje.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Nesprávna hlavička. Prihlasovacie údaje nesmú obsahovať medzery.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Nesprávna hlavička. Prihlasovacie údaje nie sú správne zakódované pomocou metódy base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Nesprávne prihlasovacie údaje.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Daný používateľ je neaktívny, alebo zmazaný.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Nesprávna token hlavička. Neboli poskytnuté prihlasovacie údaje.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Nesprávna token hlavička. Token hlavička nesmie obsahovať medzery.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Nesprávny token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Daný používateľ je zablokovaný.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"S danými prihlasovacími údajmi nebolo možné sa prihlásiť.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Musí obsahovať parametre \\\"používateľské meno\\\" a \\\"heslo\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Vyskytla sa chyba na strane servera.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Požiadavok má nesprávny formát, alebo je poškodený.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Nesprávne prihlasovacie údaje.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Prihlasovacie údaje neboli zadané.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"K danej akcii nemáte oprávnenie.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Nebolo nájdené.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metóda \\\"{method}\\\" nie je povolená.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Nie je možné vyhovieť požiadavku v hlavičke \\\"Accept\\\".\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Požiadavok obsahuje nepodporovaný media type: \\\"{media_type}\\\".\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Požiadavok bol obmedzený, z dôvodu prekročenia limitu.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Toto pole je povinné.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Toto pole nemôže byť nulové.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" je validný boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Toto pole nemože byť prázdne.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Uistite sa, že toto pole nemá viac ako {max_length} znakov.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Uistite sa, že toto pole má viac ako {min_length} znakov.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Vložte správnu emailovú adresu.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Toto pole nezodpovedá požadovanému formátu.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Zadajte platný \\\"slug\\\", ktorý obsahuje len malé písmená, čísla, spojovník alebopodtržítko.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Zadajte platnú URL adresu.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" nie je platné UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Je vyžadované celé číslo.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Uistite sa, že hodnota je menšia alebo rovná {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Uistite sa, že hodnota je väčšia alebo rovná {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Zadaný textový reťazec je príliš dlhý.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Je vyžadované číslo.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Uistite sa, že hodnota neobsahuje viac ako {max_digits} cifier.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Uistite sa, že hodnota neobsahuje viac ako {max_decimal_places}  desatinných miest.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Uistite sa, že hodnota neobsahuje viac ako {max_whole_digits} cifier pred desatinnou čiarkou.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Nesprávny formát dátumu a času. Prosím použite jeden z nasledujúcich formátov: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Vložený len dátum - date namiesto dátumu a času - datetime.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Nesprávny formát dátumu. Prosím použite jeden z nasledujúcich formátov: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Vložený dátum a čas - datetime namiesto jednoduchého dátumu - date.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Nesprávny formát času. Prosím použite jeden z nasledujúcich formátov: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" je nesprávny výber z daných možností.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Bol očakávaný zoznam položiek, no namiesto toho bol nájdený \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Nebol odoslaný žiadny súbor.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Odoslané dáta neobsahujú súbor. Prosím skontrolujte kódovanie - encoding type daného formuláru.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Nebolo možné určiť meno súboru.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Odoslaný súbor je prázdny.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Uistite sa, že meno súboru neobsahuje viac ako {max_length} znakov. (V skutočnosti ich má   {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Uploadujte prosím obrázok. Súbor, ktorý ste uploadovali buď nie je obrázok, alebo daný obrázok je poškodený.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Bol očakávaný slovník položiek, no namiesto toho bol nájdený \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Nesprávny kurzor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Nesprávny primárny kľúč \\\"{pk_value}\\\" - objekt s daným primárnym kľúčom neexistuje.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Nesprávny typ. Bol prijatý {data_type} namiesto primárneho kľúča.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Nesprávny hypertextový odkaz - žiadna zhoda.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Nesprávny hypertextový odkaz - chybná URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Nesprávny hypertextový odkaz - požadovný objekt neexistuje.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Nesprávny typ {data_type}. Požadovaný typ: hypertextový odkaz.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt, ktorého atribút \\\"{slug_name}\\\" je \\\"{value}\\\" neexistuje.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Nesprávna hodnota.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Bol očakávaný slovník položiek, no namiesto toho bol nájdený \\\"{datatype}\\\".\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Táto položka musí byť unikátna.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Dané položky:  {field_names} musia tvoriť musia spolu tvoriť unikátnu množinu.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Položka musí byť pre špecifický deň \\\"{date_field}\\\" unikátna.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Položka musí byť pre mesiac \\\"{date_field}\\\" unikátna.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Položka musí byť pre rok \\\"{date_field}\\\" unikátna.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Nesprávna verzia v \\\"Accept\\\" hlavičke.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Nesprávna verzia v URL adrese.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Nesprávna verzia v \\\"hostname\\\".\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Nesprávna verzia v parametri požiadavku.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/sl/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Gregor Cimerman, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Gregor Cimerman\\n\"\n\"Language-Team: Slovenian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/sl/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: sl\\n\"\n\"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Napačno enostavno zagalvje. Ni podanih poverilnic.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Napačno enostavno zaglavje. Poverilniški niz ne sme vsebovati presledkov.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Napačno enostavno zaglavje. Poverilnice niso pravilno base64 kodirane.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Napačno uporabniško ime ali geslo.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Uporabnik neaktiven ali izbrisan.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Neveljaven žeton v zaglavju. Ni vsebovanih poverilnic.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Neveljaven žeton v zaglavju. Žeton ne sme vsebovati presledkov.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Neveljaven žeton v zaglavju. Žeton ne sme vsebovati napačnih znakov.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Neveljaven žeton.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Prijavni žeton\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Ključ\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Uporabnik\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Ustvarjen\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Žeton\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Žetoni\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Uporabniško ime\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Geslo\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Uporabniški račun je onemogočen.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Neuspešna prijava s podanimi poverilnicami.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Mora vsebovati \\\"uporabniško ime\\\" in \\\"geslo\\\".\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Napaka na strežniku.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Okvarjen zahtevek.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Napačni avtentikacijski podatki.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Avtentikacijski podatki niso bili podani.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Nimate dovoljenj za izvedbo te akcije.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Ni najdeno\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoda \\\"{method}\\\" ni dovoljena\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Ni bilo mogoče zagotoviti zaglavja Accept zahtevka.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Nepodprt medijski tip \\\"{media_type}\\\" v zahtevku.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Zahtevek je bil pridržan.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"To polje je obvezno.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"To polje ne sme biti null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" ni veljaven boolean.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"To polje ne sme biti prazno.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"To polje ne sme biti daljše od {max_length} znakov.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"To polje mora vsebovati vsaj {min_length} znakov.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Vnesite veljaven elektronski naslov.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Ta vrednost ne ustreza zahtevanemu vzorcu.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Vnesite veljaven \\\"slug\\\", ki vsebuje črke, številke, podčrtaje ali vezaje.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Vnesite veljaven URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" ni veljaven UUID\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Vnesite veljaven IPv4 ali IPv6 naslov.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Zahtevano je veljavno celo število.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Vrednost mora biti manjša ali enaka {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Vrednost mora biti večija ali enaka {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Niz je prevelik.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Zahtevano je veljavno število.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Vnesete lahko največ {max_digits} števk.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Vnesete lahko največ {max_decimal_places} decimalnih mest.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Vnesete lahko največ {max_whole_digits} števk pred decimalno piko.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datim in čas v napačnem formatu. Uporabite eno izmed naslednjih formatov: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Pričakovan datum in čas, prejet le datum.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datum je v napačnem formatu. Uporabnite enega izmed naslednjih: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Pričakovan datum vendar prejet datum in čas.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Čas je v napačnem formatu. Uporabite enega izmed naslednjih: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Trajanje je v napačnem formatu. Uporabite enega izmed naslednjih: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" ni veljavna izbira.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Več kot {count} elementov...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Pričakovan seznam elementov vendar prejet tip \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Ta izbria ne sme ostati prazna.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" ni veljavna izbira poti.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Datoteka ni bila oddana.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Oddani podatki niso datoteka. Preverite vrsto kodiranja na formi.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Imena datoteke ni bilo mogoče določiti.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Oddana datoteka je prazna.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Ime datoteke lahko vsebuje največ {max_length} znakov (ta jih ima {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Naložite veljavno sliko. Naložena datoteka ni bila slika ali pa je okvarjena.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Seznam ne sme biti prazen.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Pričakovan je slovar elementov, prejet element je tipa \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Vrednost mora biti veljaven JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Potrdi\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"naraščujoče\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"padajoče\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Neveljavna stran.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Neveljaven kazalec\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Neveljaven pk \\\"{pk_value}\\\" - objekt ne obstaja.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Neveljaven tip. Pričakovana vrednost pk, prejet {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Neveljavna povezava - Ni URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ni veljavna povezava - Napačen URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ni veljavna povezava - Objekt ne obstaja.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Napačen tip. Pričakovan URL niz, prejet {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt z {slug_name}={value} ne obstaja.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Neveljavna vrednost.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Napačni podatki. Pričakovan slovar, prejet {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtri\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Filter polj\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Razvrščanje\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Iskanje\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"None\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Ni elementov za izbiro.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"To polje mora biti unikatno.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Polja {field_names} morajo skupaj sestavljati unikaten niz.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Polje mora biti unikatno za \\\"{date_field}\\\" dan.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Polje mora biti unikatno za \\\"{date_field} mesec.\\\"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Polje mora biti unikatno za \\\"{date_field}\\\" leto.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Neveljavna verzija v \\\"Accept\\\" zaglavju.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Neveljavna različca v poti URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Neveljavna različica v poti URL. Se ne ujema z nobeno različico imenskega prostora.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Neveljavna različica v imenu gostitelja.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Neveljavna verzija v poizvedbenem parametru.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Dovoljenje zavrnjeno.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/sv/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Frank Wickström <frwickst@gmail.com>, 2015\n# Joakim Soderlund, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Joakim Soderlund\\n\"\n\"Language-Team: Swedish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/sv/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: sv\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Ogiltig \\\"basic\\\"-header. Inga användaruppgifter tillhandahölls.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Ogiltig \\\"basic\\\"-header. Strängen för användaruppgifterna ska inte innehålla mellanslag.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Ogiltig \\\"basic\\\"-header. Användaruppgifterna är inte korrekt base64-kodade.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Ogiltigt användarnamn/lösenord.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Användaren borttagen eller inaktiv.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Ogiltig \\\"token\\\"-header. Inga användaruppgifter tillhandahölls.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Ogiltig \\\"token\\\"-header. Strängen ska inte innehålla mellanslag.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Ogiltig \\\"token\\\"-header. Strängen ska inte innehålla ogiltiga tecken.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Ogiltig \\\"token\\\".\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Autentiseringstoken\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Nyckel\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Användare\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Skapad\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Token\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Tokens\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Användarnamn\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Lösenord\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Användarkontot är borttaget.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Kunde inte logga in med de angivna inloggningsuppgifterna.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Användarnamn och lösenord måste anges.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Ett serverfel inträffade.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Ogiltig förfrågan.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Ogiltiga inloggningsuppgifter. \"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Autentiseringsuppgifter ej tillhandahållna.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Du har inte tillåtelse att utföra denna förfrågan.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Hittades inte.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Metoden \\\"{method}\\\" tillåts inte.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Kunde inte tillfredsställa förfrågans \\\"Accept\\\"-header.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Medietypen \\\"{media_type}\\\" stöds inte.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Förfrågan stoppades eftersom du har skickat för många.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Det här fältet är obligatoriskt.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Det här fältet får inte vara null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" är inte ett giltigt booleskt värde.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Det här fältet får inte vara blankt.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Se till att detta fält inte har fler än {max_length} tecken.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Se till att detta fält har minst {min_length} tecken.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Ange en giltig mejladress.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Det här värdet matchar inte mallen.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Ange en giltig \\\"slug\\\" bestående av bokstäver, nummer, understreck eller bindestreck.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Ange en giltig URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value} är inte ett giltigt UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Ange en giltig IPv4- eller IPv6-adress.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Ett giltigt heltal krävs.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Se till att detta värde är mindre än eller lika med {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Se till att detta värde är större än eller lika med {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Textvärdet är för långt.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Ett giltigt nummer krävs.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Se till att det inte finns fler än totalt {max_digits} siffror.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Se till att det inte finns fler än {max_decimal_places} decimaler.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Se till att det inte finns fler än {max_whole_digits} siffror före decimalpunkten.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datumtiden har fel format. Använd ett av dessa format istället: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Förväntade en datumtid men fick ett datum.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datumet har fel format. Använde ett av dessa format istället: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Förväntade ett datum men fick en datumtid.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Tiden har fel format. Använd ett av dessa format istället: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Perioden har fel format. Använd ett av dessa format istället: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" är inte ett giltigt val.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Fler än {count} objekt...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Förväntade en lista med element men fick typen \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Det här valet får inte vara tomt.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" är inte ett giltigt val för en sökväg.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Ingen fil skickades.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Den skickade informationen var inte en fil. Kontrollera formulärets kodningstyp.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Inget filnamn kunde bestämmas.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Den skickade filen var tom.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Se till att det här filnamnet har högst {max_length} tecken (det har {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Ladda upp en giltig bild. Filen du laddade upp var antingen inte en bild eller en skadad bild.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Den här listan får inte vara tom.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Förväntade en \\\"dictionary\\\" med element men fick typen \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Värdet måste vara giltig JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Skicka\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"stigande\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"fallande\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Ogiltig sida.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Ogiltig cursor.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Ogiltigt pk \\\"{pk_value}\\\" - Objektet finns inte.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Felaktig typ. Förväntade pk-värde, fick {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Ogiltig hyperlänk - Ingen URL matchade.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Ogiltig hyperlänk - Felaktig URL-matching.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Ogiltig hyperlänk - Objektet finns inte.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Felaktig typ. Förväntade URL-sträng, fick {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Objekt med {slug_name}={value} finns inte.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Ogiltigt värde.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Ogiltig data. Förväntade en dictionary, men fick {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filter\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Fältfilter\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Ordning\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Sök\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Inget\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Inga valbara objekt.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Det här fältet måste vara unikt.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Fälten {field_names} måste skapa ett unikt set.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Det här fältet måste vara unikt för datumet \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Det här fältet måste vara unikt för månaden \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Det här fältet måste vara unikt för året \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Ogiltig version i \\\"Accept\\\"-headern.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Ogiltig version i URL-resursen.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"Ogiltig version i URL-resursen. Matchar inget versions-namespace.\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Ogiltig version i värdnamnet.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Ogiltig version i förfrågningsparametern.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Åtkomst nekad.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/tr/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Dogukan Tufekci <dogukan@creco.co>, 2015\n# Emrah BİLBAY <emrahbilbay@gmail.com>, 2015\n# Ertaç Paprat <epaprat@gmail.com>, 2015\n# José Luis <alagunajs@gmail.com>, 2016\n# Mesut Can Gürle <mesutcang@gmail.com>, 2015\n# Murat Çorlu <muratcorlu@gmail.com>, 2015\n# Recep KIRMIZI <rkirmizi@gmail.com>, 2015\n# Ülgen Sarıkavak <ulgensrkvk@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Turkish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/tr/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: tr\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Gerekli uygunluk kriterleri sağlanmamış.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Uygunluk kriterine ait veri boşluk karakteri içermemeli.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Uygunluk kriterleri base64 formatına uygun olarak kodlanmamış.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Geçersiz kullanıcı adı/parola\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Kullanıcı aktif değil ya da silinmiş.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Geçersiz token başlığı. Kimlik bilgileri eksik.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Geçersiz token başlığı. Token'da boşluk olmamalı.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Geçersiz token başlığı. Token geçersiz karakter içermemeli.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Geçersiz token.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Kimlik doğrulama belirteci\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Anahtar\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Kullanan\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Oluşturulan\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"İşaret\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"İşaretler\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Kullanıcı adı\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Şifre\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Kullanıcı hesabı devre dışı bırakılmış.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Verilen bilgiler ile giriş sağlanamadı.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"Kullanıcı Adı\\\" ve \\\"Parola\\\" eklenmeli.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Sunucu hatası oluştu.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Bozuk istek.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Giriş bilgileri hatalı.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Giriş bilgileri verilmedi.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Bu işlemi yapmak için izniniz bulunmuyor.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Bulunamadı.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\\\"{method}\\\" metoduna izin verilmiyor.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"İsteğe ait Accept başlık bilgisi yanıt verilecek başlık bilgileri arasında değil.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"İstekte desteklenmeyen medya tipi: \\\"{media_type}\\\".\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Üst üste çok fazla istek yapıldı.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Bu alan zorunlu.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Bu alan boş bırakılmamalı.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" geçerli bir boolean değil.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Bu alan boş bırakılmamalı.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Bu alanın {max_length} karakterden fazla karakter barındırmadığından emin olun.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Bu alanın en az {min_length} karakter barındırdığından emin olun.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Geçerli bir e-posta adresi girin.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Bu değer gereken düzenli ifade deseni ile uyuşmuyor.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Harf, rakam, altçizgi veya tireden oluşan geçerli bir \\\"slug\\\" giriniz.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Geçerli bir URL girin.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" geçerli bir UUID değil.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Geçerli bir IPv4 ya da IPv6 adresi girin.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Geçerli bir tam sayı girin.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Değerin {max_value} değerinden küçük ya da eşit olduğundan emin olun.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Değerin {min_value} değerinden büyük ya da eşit olduğundan emin olun.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"String değeri çok uzun.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Geçerli bir numara gerekiyor.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Toplamda {max_digits} haneden fazla hane olmadığından emin olun.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Ondalık basamak değerinin {max_decimal_places} haneden fazla olmadığından emin olun.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Ondalık ayracından önce {max_whole_digits} basamaktan fazla olmadığından emin olun.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime alanı yanlış biçimde. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Datetime değeri bekleniyor, ama date değeri geldi.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Tarih biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Date tipi beklenmekteydi, fakat datetime tipi geldi.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Time biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Duration biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" geçerli bir seçim değil.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"{count} elemandan daha fazla...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Elemanların listesi beklenirken \\\"{input_type}\\\" alındı.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Bu seçim boş bırakılmamalı.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" geçerli bir yol seçimi değil.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Hiçbir dosya verilmedi.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Gönderilen veri dosya değil. Formdaki kodlama tipini kontrol edin.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Hiçbir dosya adı belirlenemedi.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Gönderilen dosya boş.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Bu dosya adının en fazla {max_length} karakter uzunluğunda olduğundan emin olun. (şu anda {length} karakter).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Geçerli bir resim yükleyin. Yüklediğiniz dosya resim değil ya da bozuk.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Bu liste boş olmamalı.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Sözlük tipi bir değişken beklenirken \\\"{input_type}\\\" tipi bir değişken alındı.\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Değer geçerli bir JSON olmalı.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Gönder\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Geçersiz sayfa.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Sayfalandırma imleci geçersiz\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Geçersiz pk \\\"{pk_value}\\\" - obje bulunamadı.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Hatalı tip. Pk değeri beklenirken, alınan {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Geçersiz bağlantı - Hiçbir URL eşleşmedi.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Geçersiz bağlantı - Yanlış URL eşleşmesi.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Geçersiz bağlantı - Obje bulunamadı.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Hatalı tip. URL metni bekleniyor, {data_type} alındı.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"{slug_name}={value} değerini taşıyan obje bulunamadı.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Geçersiz değer.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Geçersiz veri. Sözlük bekleniyordu fakat {datatype} geldi. \"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtreler\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Alan filtreleri\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sıralama\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Arama\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Hiçbiri\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Seçenek yok.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Bu alan eşsiz olmalı.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"{field_names} hep birlikte eşsiz bir küme oluşturmalılar.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" tarihine göre eşsiz olmalı.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" ayına göre eşsiz olmalı.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" yılına göre eşsiz olmalı.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\\\"Accept\\\" başlığındaki sürüm geçersiz.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URL dizininde geçersiz versiyon.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Host adında geçersiz versiyon.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Sorgu parametresinde geçersiz versiyon.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Erişim engellendi.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/tr_TR/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# José Luis <alagunajs@gmail.com>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Turkish (Turkey) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/tr_TR/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: tr_TR\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Gerekli uygunluk kriterleri sağlanmamış.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Uygunluk kriterine ait veri boşluk karakteri içermemeli.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Geçersiz yetkilendirme başlığı. Uygunluk kriterleri base64 formatına uygun olarak kodlanmamış.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Geçersiz kullanıcı adı / şifre.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Kullanıcı aktif değil ya da silinmiş\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Geçersiz token başlığı. Kimlik bilgileri eksik.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Geçersiz token başlığı. Token'da boşluk olmamalı.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Geçersiz token başlığı. Token geçersiz karakter içermemeli.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Geçersiz simge.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Kimlik doğrulama belirteci\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Anahtar\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Kullanan\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Oluşturulan\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"İşaret\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"İşaretler\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Kullanıcı adı\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Şifre\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Kullanıcı hesabı devre dışı bırakılmış.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Verilen bilgiler ile giriş sağlanamadı.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\\\"Kullanıcı Adı\\\" ve \\\"Parola\\\" eklenmeli.\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Sunucu hatası oluştu.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Bozuk istek.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Giriş bilgileri hatalı.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Giriş bilgileri verilmedi.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"Bu işlemi yapmak için izniniz bulunmuyor.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Bulunamadı.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\\\"{method}\\\" metoduna izin verilmiyor.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"İsteğe ait Accept başlık bilgisi yanıt verilecek başlık bilgileri arasında değil.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"İstekte desteklenmeyen medya tipi: \\\"{media_type}\\\".\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Üst üste çok fazla istek yapıldı.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Bu alan zorunlu.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Bu alan boş bırakılmamalı.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" geçerli bir boolean değil.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Bu alan boş bırakılmamalı.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Bu alanın {max_length} karakterden fazla karakter barındırmadığından emin olun.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Bu alanın en az {min_length} karakter barındırdığından emin olun.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Geçerli bir e-posta adresi girin.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Bu değer gereken düzenli ifade deseni ile uyuşmuyor.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Harf, rakam, altçizgi veya tireden oluşan geçerli bir \\\"slug\\\" giriniz.\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Geçerli bir URL girin.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" geçerli bir UUID değil.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Geçerli bir IPv4 ya da IPv6 adresi girin.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Geçerli bir tam sayı girin.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Değerin {max_value} değerinden küçük ya da eşit olduğundan emin olun.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Değerin {min_value} değerinden büyük ya da eşit olduğundan emin olun.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"String değeri çok uzun.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Geçerli bir numara gerekiyor.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Toplamda {max_digits} haneden fazla hane olmadığından emin olun.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Ondalık basamak değerinin {max_decimal_places} haneden fazla olmadığından emin olun.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Ondalık ayracından önce {max_whole_digits} basamaktan fazla olmadığından emin olun.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Datetime alanı yanlış biçimde. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Datetime değeri bekleniyor, ama date değeri geldi.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Tarih biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Date tipi beklenmekteydi, fakat datetime tipi geldi.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Time biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Duration biçimi yanlış. {format} biçimlerinden birini kullanın.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" geçerli bir seçim değil.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"{count} elemandan daha fazla...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Elemanların listesi beklenirken \\\"{input_type}\\\" alındı.\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Bu seçim boş bırakılmamalı.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" geçerli bir yol seçimi değil.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Hiçbir dosya verilmedi.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Gönderilen veri dosya değil. Formdaki kodlama tipini kontrol edin.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Hiçbir dosya adı belirlenemedi.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Gönderilen dosya boş.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Bu dosya adının en fazla {max_length} karakter uzunluğunda olduğundan emin olun. (şu anda {length} karakter).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Geçerli bir resim yükleyin. Yüklediğiniz dosya resim değil ya da bozuk.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Bu liste boş olmamalı.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Sözlük tipi bir değişken beklenirken \\\"{input_type}\\\" tipi bir değişken alındı.\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Değer geçerli bir JSON olmalı.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Gönder\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Geçersiz sayfa.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Geçersiz imleç.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Geçersiz pk \\\"{pk_value}\\\" - obje bulunamadı.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Hatalı tip. Pk değeri beklenirken, alınan {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Geçersiz hyper link - URL maçı yok.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Geçersiz hyper link - Yanlış URL maçı.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Geçersiz hyper link - Nesne yok..\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Hatalı tip. URL metni bekleniyor, {data_type} alındı.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"{slug_name}={value} değerini taşıyan obje bulunamadı.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Geçersiz değer.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Geçersiz veri. Bir sözlük bekleniyor, ama var {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Filtreler\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Alan filtreleri\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Sıralama\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Arama\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Hiç kimse\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Seçenek yok.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Bu alan benzersiz olmalıdır.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"{field_names}  alanları benzersiz bir set yapmak gerekir.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" tarihine göre eşsiz olmalı.\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" ayına göre eşsiz olmalı.\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Bu alan \\\"{date_field}\\\" yılına göre eşsiz olmalı.\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\\\"Kabul et\\\" başlığında geçersiz sürümü.\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URL yolu geçersiz sürümü.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Hostname geçersiz sürümü.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Sorgu parametresi geçersiz sürümü.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"İzin reddedildi.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/uk/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# Денис Подлесный <haos616@gmail.com>, 2016\n# Illarion <khlyestovillarion@gmail.com>, 2016\n# Kirill Tarasenko, 2016\n# Victor Mireyev <greymouse2005@ya.ru>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Victor Mireyev <greymouse2005@ya.ru>\\n\"\n\"Language-Team: Ukrainian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/uk/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: uk\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"Недійсний основний заголовок. Облікові дані відсутні.\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"Недійсний основний заголовок. Облікові дані мають бути без пробілів.\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"Недійсний основний заголовок. Облікові дані невірно закодовані у Base64.\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"Недійсне iм'я користувача/пароль.\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"Користувач неактивний або видалений.\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"Недійсний заголовок токена. Облікові дані відсутні.\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"Недійсний заголовок токена. Значення токена не повинне містити пробіли.\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"Недійсний заголовок токена. Значення токена не повинне містити некоректні символи.\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"Недійсний токен.\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"Авторизаційний токен\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"Ключ\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"Користувач\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"Створено\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"Токен\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"Токени\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"Ім'я користувача\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"Пароль\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"Обліковий запис деактивований.\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"Неможливо зайти з введеними даними.\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"Має включати iм'я користувача та пароль\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"Помилка сервера.\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"Некоректний запит.\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"Некоректні реквізити перевірки достовірності.\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"Реквізити перевірки достовірності не надані.\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"У вас нема дозволу робити цю дію.\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"Не знайдено.\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"Метод \\\"{method}\\\" не дозволений.\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"Неможливо виконати запит прийняття заголовку.\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"Непідтримуваний тип даних \\\"{media_type}\\\" в запиті.\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"Запит було проігноровано.\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"Це поле обов'язкове.\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"Це поле не може бути null.\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\\\"{input}\\\" не є коректним бульовим значенням.\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"Це поле не може бути порожнім.\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"Переконайтесь, що кількість символів в цьому полі не перевищує {max_length}.\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"Переконайтесь, що в цьому полі мінімум {min_length} символів.\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"Введіть коректну адресу електронної пошти.\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"Значення не відповідає необхідному патерну.\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"Введіть коректний \\\"slug\\\", що складається із букв, цифр, нижніх підкреслень або дефісів. \"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"Введіть коректний URL.\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\\\"{value}\\\" не є коректним UUID.\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"Введіть дійсну IPv4 або IPv6 адресу.\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"Необхідне цілочисельне значення.\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"Переконайтесь, що значення менше або дорівнює {max_value}.\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"Переконайтесь, що значення більше або дорівнює {min_value}.\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"Строкове значення занадто велике.\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"Необхідне чисельне значення.\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"Переконайтесь, що в числі не більше {max_digits} знаків.\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"Переконайтесь, що в числі не більше {max_decimal_places} знаків у дробовій частині.\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"Переконайтесь, що в числі не більше {max_whole_digits} знаків у цілій частині.\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Невірний формат дата з часом. Використайте один з цих форматів: {format}.\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"Очікувалась дата з часом, але було отримано дату.\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Невірний формат дати. Використайте один з цих форматів: {format}.\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"Очікувалась дата, але було отримано дату з часом.\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Неправильний формат часу. Використайте один з цих форматів: {format}.\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"Невірний формат тривалості. Використайте один з цих форматів: {format}.\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\\\"{input}\\\" не є коректним вибором.\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"Елементів більше, ніж {count}...\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Очікувався список елементів, але було отримано \\\"{input_type}\\\".\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"Вибір не може бути порожнім.\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\" вибраний шлях не є коректним.\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"Файл не було відправленно.\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"Відправленні дані не є файл. Перевірте тип кодування у формі.\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"Неможливо визначити ім'я файлу.\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"Відправленний файл порожній.\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"Переконайтесь, що ім'я файлу становить менше {max_length} символів (зараз {length}).\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"Завантажте коректне зображення. Завантажений файл або не є зображенням, або пошкоджений.\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"Цей список не може бути порожнім.\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"Очікувався словник зі елементами, але було отримано \\\"{input_type}\\\".\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"Значення повинно бути коректним JSON.\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"Відправити\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"в порядку зростання\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"у порядку зменшення\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"Недійсна сторінка.\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"Недійсний курсор.\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"Недопустимий первинний ключ \\\"{pk_value}\\\" - об'єкт не існує.\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"Некоректний тип. Очікувалось значення первинного ключа, отримано {data_type}.\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"Недійсне посилання - немає збігу за URL.\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"Недійсне посилання - некоректний збіг за URL.\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"Недійсне посилання - об'єкт не існує.\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"Некоректний тип. Очікувався URL, отримано {data_type}.\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"Об'єкт із {slug_name}={value} не існує.\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"Недійсне значення.\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"Недопустимі дані. Очікувався словник, але було отримано {datatype}.\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"Фільтри\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"Фільтри поля\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"Впорядкування\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"Пошук\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"Нічого\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"Немає елементів для вибору.\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"Це поле повинне бути унікальним.\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"Поля {field_names} повинні створювати унікальний масив значень.\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"Це поле повинне бути унікальним для дати \\\"{date_field}\\\".\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"Це поле повинне бути унікальним для місяця \\\"{date_field}\\\".\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"Це поле повинне бути унікальним для року \\\"{date_field}\\\".\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"Недопустима версія в загаловку \\\"Accept\\\".\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"Недопустима версія в шляху URL.\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"Недопустима версія в імені хоста.\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"Недопустима версія в параметрі запиту.\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"Доступ заборонено.\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/vi/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Vietnamese (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/vi/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: vi\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/zh_CN/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# hunter007 <wentao79@gmail.com>, 2015\n# Lele Long <schemacs@gmail.com>, 2015,2017\n# Ming Chen <mockey.chen@gmail.com>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: Lele Long <schemacs@gmail.com>\\n\"\n\"Language-Team: Chinese (China) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/zh_CN/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: zh_CN\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"无效的Basic认证头，没有提供认证信息。\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"认证字符串不应该包含空格（基本认证HTTP头无效）。\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"认证字符串base64编码错误（基本认证HTTP头无效）。\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"用户名或者密码错误。\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"用户未激活或者已删除。\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"没有提供认证信息（认证令牌HTTP头无效）。\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"认证令牌字符串不应该包含空格（无效的认证令牌HTTP头）。\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"无效的Token。Token字符串不能包含非法的字符。\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"认证令牌无效。\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"认证令牌\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"键\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"用户\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"已创建\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"令牌\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"令牌\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"用户名\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"密码\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"用户账户已禁用。\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"无法使用提供的认证信息登录。\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"必须包含 “用户名” 和 “密码”。\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"服务器出现了错误。\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"错误的请求。\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"不正确的身份认证信息。\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"身份认证信息未提供。\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"您没有执行该操作的权限。\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"未找到。\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"方法 “{method}” 不被允许。\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"无法满足Accept HTTP头的请求。\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"不支持请求中的媒体类型 “{media_type}”。\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"请求超过了限速。\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"该字段是必填项。\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"该字段不能为 null。\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"“{input}” 不是合法的布尔值。\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"该字段不能为空。\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"请确保这个字段不能超过 {max_length} 个字符。\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"请确保这个字段至少包含 {min_length} 个字符。\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"请输入合法的邮件地址。\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"输入值不匹配要求的模式。\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"请输入合法的“短语“，只能包含字母，数字，下划线或者中划线。\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"请输入合法的URL。\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"“{value}”不是合法的UUID。\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"请输入一个有效的IPv4或IPv6地址。\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"请填写合法的整数值。\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"请确保该值小于或者等于 {max_value}。\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"请确保该值大于或者等于 {min_value}。\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"字符串值太长。\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"请填写合法的数字。\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"请确保总计不超过 {max_digits} 个数字。\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"请确保总计不超过 {max_decimal_places} 个小数位。\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"请确保小数点前不超过 {max_whole_digits} 个数字。\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日期时间格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"期望为日期时间，得到的是日期。\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日期格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"期望为日期，得到的是日期时间。\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"时间格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"持续时间的格式错误。使用这些格式中的一个：{format}。\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"“{input}” 不是合法选项。\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"多于{count}条记录。\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"期望为一个包含物件的列表，得到的类型是“{input_type}”。\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"这项选择不能为空。\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"“{input}” 不是\b有效路径选项。\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"没有提交任何文件。\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"提交的数据不是一个文件。请检查表单的编码类型。\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"无法检测到文件名。\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"提交的是空文件。\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"确保该文件名最多包含 {max_length} 个字符 ( 当前长度为{length} ) 。\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"请上传有效图片。您上传的该文件不是图片或者图片已经损坏。\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"列表字段不能为空值。\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"期望是包含类目的字典，得到类型为 “{input_type}”。\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"值必须是有效的 JSON 数据。\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"保存\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"升序\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"降序\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"无效页。\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"无效游标\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"无效主键 “{pk_value}” － 对象不存在。\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"类型错误。期望为主键，得到的类型为 {data_type}。\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"无效超链接 －没有匹配的URL。\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"无效超链接 －错误的URL匹配。\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"无效超链接 －对象不存在。\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"类型错误。期望为URL字符串，实际的类型是 {data_type}。\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"属性 {slug_name} 为 {value} 的对象不存在。\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"无效值。\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"无效数据。期待为字典类型，得到的是 {datatype} 。\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"过滤器\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"过滤器字段\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"排序\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"查找\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"无\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"没有可选项。\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"该字段必须唯一。\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"字段 {field_names} 必须能构成唯一集合。\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"该字段必须在日期 “{date_field}” 唯一。\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"该字段必须在月份 “{date_field}” 唯一。\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"该字段必须在年 “{date_field}” 唯一。\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"“Accept” HTTP头包含无效版本。\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URL路径包含无效版本。\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"URL路径中存在无效版本。版本空间中无法匹配上。\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"主机名包含无效版本。\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"请求参数里包含无效版本。\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"没有权限。\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/zh_Hans/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\n# cokky <cokkywu@gmail.com>, 2015\n# hunter007 <wentao79@gmail.com>, 2015\n# nypisces <loliandny@icloud.com>, 2015\n# ppppfly <mpang@gizwits.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2017-08-03 14:58+0000\\n\"\n\"Last-Translator: ppppfly <mpang@gizwits.com>\\n\"\n\"Language-Team: Chinese Simplified (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/zh-Hans/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: zh-Hans\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"无效的Basic认证头，没有提供认证信息。\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"认证字符串不应该包含空格（基本认证HTTP头无效）。\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"认证字符串base64编码错误（基本认证HTTP头无效）。\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"用户名或者密码错误。\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"用户未激活或者已删除。\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"没有提供认证信息（认证令牌HTTP头无效）。\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"认证令牌字符串不应该包含空格（无效的认证令牌HTTP头）。\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"无效的Token。Token字符串不能包含非法的字符。\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"认证令牌无效。\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"认证令牌\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"键\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"用户\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"已创建\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"令牌\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"令牌\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"用户名\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"密码\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"用户账户已禁用。\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"无法使用提供的认证信息登录。\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"必须包含 “用户名” 和 “密码”。\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"服务器出现了错误。\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"错误的请求。\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"不正确的身份认证信息。\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"身份认证信息未提供。\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"您没有执行该操作的权限。\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"未找到。\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"方法 “{method}” 不被允许。\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"无法满足Accept HTTP头的请求。\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"不支持请求中的媒体类型 “{media_type}”。\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"请求超过了限速。\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"该字段是必填项。\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"该字段不能为 null。\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"“{input}” 不是合法的布尔值。\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"该字段不能为空。\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"请确保这个字段不能超过 {max_length} 个字符。\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"请确保这个字段至少包含 {min_length} 个字符。\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"请输入合法的邮件地址。\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"输入值不匹配要求的模式。\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"请输入合法的“短语“，只能包含字母，数字，下划线或者中划线。\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"请输入合法的URL。\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"“{value}”不是合法的UUID。\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"请输入一个有效的IPv4或IPv6地址。\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"请填写合法的整数值。\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"请确保该值小于或者等于 {max_value}。\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"请确保该值大于或者等于 {min_value}。\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"字符串值太长。\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"请填写合法的数字。\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"请确保总计不超过 {max_digits} 个数字。\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"请确保总计不超过 {max_decimal_places} 个小数位。\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"请确保小数点前不超过 {max_whole_digits} 个数字。\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日期时间格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"期望为日期时间，获得的是日期。\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"日期格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"期望为日期，获得的是日期时间。\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"时间格式错误。请从这些格式中选择：{format}。\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"持续时间的格式错误。使用这些格式中的一个：{format}。\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"“{input}” 不是合法选项。\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"多于{count}条记录。\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"期望为一个包含物件的列表，得到的类型是“{input_type}”。\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"这项选择不能为空。\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\\\"{input}\\\"不是一个有效路径选项。\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"没有提交任何文件。\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"提交的数据不是一个文件。请检查表单的编码类型。\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"无法检测到文件名。\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"提交的是空文件。\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"确保该文件名最多包含 {max_length} 个字符 ( 当前长度为{length} ) 。\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"请上传有效图片。您上传的该文件不是图片或者图片已经损坏。\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"列表不能为空。\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"期望是包含类目的字典，得到类型为 “{input_type}”。\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"值必须是有效的 JSON 数据。\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"提交\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"正排序\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"倒排序\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"无效页面。\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"无效游标\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"无效主键 “{pk_value}” － 对象不存在。\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"类型错误。期望为主键，获得的类型为 {data_type}。\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"无效超链接 －没有匹配的URL。\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"无效超链接 －错误的URL匹配。\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"无效超链接 －对象不存在。\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"类型错误。期望为URL字符串，实际的类型是 {data_type}。\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"属性 {slug_name} 为 {value} 的对象不存在。\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"无效值。\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"无效数据。期待为字典类型，得到的是 {datatype} 。\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"过滤器\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"过滤器字段\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"排序\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \" 搜索\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"无\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"没有可选项。\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"该字段必须唯一。\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"字段 {field_names} 必须能构成唯一集合。\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"该字段必须在日期 “{date_field}” 唯一。\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"该字段必须在月份 “{date_field}” 唯一。\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"该字段必须在年 “{date_field}” 唯一。\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"“Accept” HTTP头包含无效版本。\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"URL路径包含无效版本。\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"在URL路径中发现无效的版本。无法匹配任何的版本命名空间。\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"主机名包含无效版本。\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"请求参数里包含无效版本。\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"没有权限。\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/zh_Hant/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Chinese Traditional (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/zh-Hant/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: zh-Hant\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/locale/zh_TW/LC_MESSAGES/django.po",
    "content": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n# \n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django REST framework\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-12 16:13+0100\\n\"\n\"PO-Revision-Date: 2016-07-12 15:14+0000\\n\"\n\"Last-Translator: Thomas Christie <tom@tomchristie.com>\\n\"\n\"Language-Team: Chinese (Taiwan) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/zh_TW/)\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Language: zh_TW\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\n#: authentication.py:73\nmsgid \"Invalid basic header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:76\nmsgid \"Invalid basic header. Credentials string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:82\nmsgid \"Invalid basic header. Credentials not correctly base64 encoded.\"\nmsgstr \"\"\n\n#: authentication.py:99\nmsgid \"Invalid username/password.\"\nmsgstr \"\"\n\n#: authentication.py:102 authentication.py:198\nmsgid \"User inactive or deleted.\"\nmsgstr \"\"\n\n#: authentication.py:176\nmsgid \"Invalid token header. No credentials provided.\"\nmsgstr \"\"\n\n#: authentication.py:179\nmsgid \"Invalid token header. Token string should not contain spaces.\"\nmsgstr \"\"\n\n#: authentication.py:185\nmsgid \"\"\n\"Invalid token header. Token string should not contain invalid characters.\"\nmsgstr \"\"\n\n#: authentication.py:195\nmsgid \"Invalid token.\"\nmsgstr \"\"\n\n#: authtoken/apps.py:7\nmsgid \"Auth Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:15\nmsgid \"Key\"\nmsgstr \"\"\n\n#: authtoken/models.py:18\nmsgid \"User\"\nmsgstr \"\"\n\n#: authtoken/models.py:20\nmsgid \"Created\"\nmsgstr \"\"\n\n#: authtoken/models.py:29\nmsgid \"Token\"\nmsgstr \"\"\n\n#: authtoken/models.py:30\nmsgid \"Tokens\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:8\nmsgid \"Username\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:9\nmsgid \"Password\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:20\nmsgid \"User account is disabled.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:23\nmsgid \"Unable to log in with provided credentials.\"\nmsgstr \"\"\n\n#: authtoken/serializers.py:26\nmsgid \"Must include \\\"username\\\" and \\\"password\\\".\"\nmsgstr \"\"\n\n#: exceptions.py:49\nmsgid \"A server error occurred.\"\nmsgstr \"\"\n\n#: exceptions.py:84\nmsgid \"Malformed request.\"\nmsgstr \"\"\n\n#: exceptions.py:89\nmsgid \"Incorrect authentication credentials.\"\nmsgstr \"\"\n\n#: exceptions.py:94\nmsgid \"Authentication credentials were not provided.\"\nmsgstr \"\"\n\n#: exceptions.py:99\nmsgid \"You do not have permission to perform this action.\"\nmsgstr \"\"\n\n#: exceptions.py:104 views.py:81\nmsgid \"Not found.\"\nmsgstr \"\"\n\n#: exceptions.py:109\nmsgid \"Method \\\"{method}\\\" not allowed.\"\nmsgstr \"\"\n\n#: exceptions.py:120\nmsgid \"Could not satisfy the request Accept header.\"\nmsgstr \"\"\n\n#: exceptions.py:132\nmsgid \"Unsupported media type \\\"{media_type}\\\" in request.\"\nmsgstr \"\"\n\n#: exceptions.py:145\nmsgid \"Request was throttled.\"\nmsgstr \"\"\n\n#: fields.py:269 relations.py:206 relations.py:239 validators.py:98\n#: validators.py:181\nmsgid \"This field is required.\"\nmsgstr \"\"\n\n#: fields.py:270\nmsgid \"This field may not be null.\"\nmsgstr \"\"\n\n#: fields.py:608 fields.py:639\nmsgid \"\\\"{input}\\\" is not a valid boolean.\"\nmsgstr \"\"\n\n#: fields.py:674\nmsgid \"This field may not be blank.\"\nmsgstr \"\"\n\n#: fields.py:675 fields.py:1675\nmsgid \"Ensure this field has no more than {max_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:676\nmsgid \"Ensure this field has at least {min_length} characters.\"\nmsgstr \"\"\n\n#: fields.py:713\nmsgid \"Enter a valid email address.\"\nmsgstr \"\"\n\n#: fields.py:724\nmsgid \"This value does not match the required pattern.\"\nmsgstr \"\"\n\n#: fields.py:735\nmsgid \"\"\n\"Enter a valid \\\"slug\\\" consisting of letters, numbers, underscores or \"\n\"hyphens.\"\nmsgstr \"\"\n\n#: fields.py:747\nmsgid \"Enter a valid URL.\"\nmsgstr \"\"\n\n#: fields.py:760\nmsgid \"\\\"{value}\\\" is not a valid UUID.\"\nmsgstr \"\"\n\n#: fields.py:796\nmsgid \"Enter a valid IPv4 or IPv6 address.\"\nmsgstr \"\"\n\n#: fields.py:821\nmsgid \"A valid integer is required.\"\nmsgstr \"\"\n\n#: fields.py:822 fields.py:857 fields.py:891\nmsgid \"Ensure this value is less than or equal to {max_value}.\"\nmsgstr \"\"\n\n#: fields.py:823 fields.py:858 fields.py:892\nmsgid \"Ensure this value is greater than or equal to {min_value}.\"\nmsgstr \"\"\n\n#: fields.py:824 fields.py:859 fields.py:896\nmsgid \"String value too large.\"\nmsgstr \"\"\n\n#: fields.py:856 fields.py:890\nmsgid \"A valid number is required.\"\nmsgstr \"\"\n\n#: fields.py:893\nmsgid \"Ensure that there are no more than {max_digits} digits in total.\"\nmsgstr \"\"\n\n#: fields.py:894\nmsgid \"\"\n\"Ensure that there are no more than {max_decimal_places} decimal places.\"\nmsgstr \"\"\n\n#: fields.py:895\nmsgid \"\"\n\"Ensure that there are no more than {max_whole_digits} digits before the \"\n\"decimal point.\"\nmsgstr \"\"\n\n#: fields.py:1025\nmsgid \"Datetime has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1026\nmsgid \"Expected a datetime but got a date.\"\nmsgstr \"\"\n\n#: fields.py:1103\nmsgid \"Date has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1104\nmsgid \"Expected a date but got a datetime.\"\nmsgstr \"\"\n\n#: fields.py:1170\nmsgid \"Time has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1232\nmsgid \"Duration has wrong format. Use one of these formats instead: {format}.\"\nmsgstr \"\"\n\n#: fields.py:1251 fields.py:1300\nmsgid \"\\\"{input}\\\" is not a valid choice.\"\nmsgstr \"\"\n\n#: fields.py:1254 relations.py:71 relations.py:441\nmsgid \"More than {count} items...\"\nmsgstr \"\"\n\n#: fields.py:1301 fields.py:1448 relations.py:437 serializers.py:524\nmsgid \"Expected a list of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1302\nmsgid \"This selection may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1339\nmsgid \"\\\"{input}\\\" is not a valid path choice.\"\nmsgstr \"\"\n\n#: fields.py:1358\nmsgid \"No file was submitted.\"\nmsgstr \"\"\n\n#: fields.py:1359\nmsgid \"\"\n\"The submitted data was not a file. Check the encoding type on the form.\"\nmsgstr \"\"\n\n#: fields.py:1360\nmsgid \"No filename could be determined.\"\nmsgstr \"\"\n\n#: fields.py:1361\nmsgid \"The submitted file is empty.\"\nmsgstr \"\"\n\n#: fields.py:1362\nmsgid \"\"\n\"Ensure this filename has at most {max_length} characters (it has {length}).\"\nmsgstr \"\"\n\n#: fields.py:1410\nmsgid \"\"\n\"Upload a valid image. The file you uploaded was either not an image or a \"\n\"corrupted image.\"\nmsgstr \"\"\n\n#: fields.py:1449 relations.py:438 serializers.py:525\nmsgid \"This list may not be empty.\"\nmsgstr \"\"\n\n#: fields.py:1502\nmsgid \"Expected a dictionary of items but got type \\\"{input_type}\\\".\"\nmsgstr \"\"\n\n#: fields.py:1549\nmsgid \"Value must be valid JSON.\"\nmsgstr \"\"\n\n#: filters.py:36 templates/jet_django.deps.rest_framework/filters/django_filter.html:5\nmsgid \"Submit\"\nmsgstr \"\"\n\n#: filters.py:336\nmsgid \"ascending\"\nmsgstr \"\"\n\n#: filters.py:337\nmsgid \"descending\"\nmsgstr \"\"\n\n#: pagination.py:193\nmsgid \"Invalid page.\"\nmsgstr \"\"\n\n#: pagination.py:427\nmsgid \"Invalid cursor\"\nmsgstr \"\"\n\n#: relations.py:207\nmsgid \"Invalid pk \\\"{pk_value}\\\" - object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:208\nmsgid \"Incorrect type. Expected pk value, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:240\nmsgid \"Invalid hyperlink - No URL match.\"\nmsgstr \"\"\n\n#: relations.py:241\nmsgid \"Invalid hyperlink - Incorrect URL match.\"\nmsgstr \"\"\n\n#: relations.py:242\nmsgid \"Invalid hyperlink - Object does not exist.\"\nmsgstr \"\"\n\n#: relations.py:243\nmsgid \"Incorrect type. Expected URL string, received {data_type}.\"\nmsgstr \"\"\n\n#: relations.py:401\nmsgid \"Object with {slug_name}={value} does not exist.\"\nmsgstr \"\"\n\n#: relations.py:402\nmsgid \"Invalid value.\"\nmsgstr \"\"\n\n#: serializers.py:326\nmsgid \"Invalid data. Expected a dictionary, but got {datatype}.\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/admin.html:116\n#: templates/jet_django.deps.rest_framework/base.html:128\nmsgid \"Filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/django_filter.html:2\n#: templates/jet_django.deps.rest_framework/filters/django_filter_crispyforms.html:4\nmsgid \"Field filters\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/ordering.html:3\nmsgid \"Ordering\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/filters/search.html:2\nmsgid \"Search\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/radio.html:2\n#: templates/jet_django.deps.rest_framework/inline/radio.html:2\n#: templates/jet_django.deps.rest_framework/vertical/radio.html:2\nmsgid \"None\"\nmsgstr \"\"\n\n#: templates/jet_django.deps.rest_framework/horizontal/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/inline/select_multiple.html:2\n#: templates/jet_django.deps.rest_framework/vertical/select_multiple.html:2\nmsgid \"No items to select.\"\nmsgstr \"\"\n\n#: validators.py:43\nmsgid \"This field must be unique.\"\nmsgstr \"\"\n\n#: validators.py:97\nmsgid \"The fields {field_names} must make a unique set.\"\nmsgstr \"\"\n\n#: validators.py:245\nmsgid \"This field must be unique for the \\\"{date_field}\\\" date.\"\nmsgstr \"\"\n\n#: validators.py:260\nmsgid \"This field must be unique for the \\\"{date_field}\\\" month.\"\nmsgstr \"\"\n\n#: validators.py:273\nmsgid \"This field must be unique for the \\\"{date_field}\\\" year.\"\nmsgstr \"\"\n\n#: versioning.py:42\nmsgid \"Invalid version in \\\"Accept\\\" header.\"\nmsgstr \"\"\n\n#: versioning.py:73\nmsgid \"Invalid version in URL path.\"\nmsgstr \"\"\n\n#: versioning.py:115\nmsgid \"Invalid version in URL path. Does not match any version namespace.\"\nmsgstr \"\"\n\n#: versioning.py:147\nmsgid \"Invalid version in hostname.\"\nmsgstr \"\"\n\n#: versioning.py:169\nmsgid \"Invalid version in query parameter.\"\nmsgstr \"\"\n\n#: views.py:88\nmsgid \"Permission denied.\"\nmsgstr \"\"\n"
  },
  {
    "path": "jet_django/deps/rest_framework/metadata.py",
    "content": "\"\"\"\nThe metadata API is used to allow customization of how `OPTIONS` requests\nare handled. We currently provide a single default implementation that returns\nsome fairly ad-hoc information about the view.\n\nFuture implementations might use JSON schema or other definitions in order\nto return this information in a more standardized way.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom collections import OrderedDict\n\nfrom django.core.exceptions import PermissionDenied\nfrom django.http import Http404\nfrom django.utils.encoding import force_text\n\nfrom jet_django.deps.rest_framework import exceptions, serializers\nfrom jet_django.deps.rest_framework.request import clone_request\nfrom jet_django.deps.rest_framework.utils.field_mapping import ClassLookupDict\n\n\nclass BaseMetadata(object):\n    def determine_metadata(self, request, view):\n        \"\"\"\n        Return a dictionary of metadata about the view.\n        Used to return responses for OPTIONS requests.\n        \"\"\"\n        raise NotImplementedError(\".determine_metadata() must be overridden.\")\n\n\nclass SimpleMetadata(BaseMetadata):\n    \"\"\"\n    This is the default metadata implementation.\n    It returns an ad-hoc set of information about the view.\n    There are not any formalized standards for `OPTIONS` responses\n    for us to base this on.\n    \"\"\"\n    label_lookup = ClassLookupDict({\n        serializers.Field: 'field',\n        serializers.BooleanField: 'boolean',\n        serializers.NullBooleanField: 'boolean',\n        serializers.CharField: 'string',\n        serializers.UUIDField: 'string',\n        serializers.URLField: 'url',\n        serializers.EmailField: 'email',\n        serializers.RegexField: 'regex',\n        serializers.SlugField: 'slug',\n        serializers.IntegerField: 'integer',\n        serializers.FloatField: 'float',\n        serializers.DecimalField: 'decimal',\n        serializers.DateField: 'date',\n        serializers.DateTimeField: 'datetime',\n        serializers.TimeField: 'time',\n        serializers.ChoiceField: 'choice',\n        serializers.MultipleChoiceField: 'multiple choice',\n        serializers.FileField: 'file upload',\n        serializers.ImageField: 'image upload',\n        serializers.ListField: 'list',\n        serializers.DictField: 'nested object',\n        serializers.Serializer: 'nested object',\n    })\n\n    def determine_metadata(self, request, view):\n        metadata = OrderedDict()\n        metadata['name'] = view.get_view_name()\n        metadata['description'] = view.get_view_description()\n        metadata['renders'] = [renderer.media_type for renderer in view.renderer_classes]\n        metadata['parses'] = [parser.media_type for parser in view.parser_classes]\n        if hasattr(view, 'get_serializer'):\n            actions = self.determine_actions(request, view)\n            if actions:\n                metadata['actions'] = actions\n        return metadata\n\n    def determine_actions(self, request, view):\n        \"\"\"\n        For generic class based views we return information about\n        the fields that are accepted for 'PUT' and 'POST' methods.\n        \"\"\"\n        actions = {}\n        for method in {'PUT', 'POST'} & set(view.allowed_methods):\n            view.request = clone_request(request, method)\n            try:\n                # Test global permissions\n                if hasattr(view, 'check_permissions'):\n                    view.check_permissions(view.request)\n                # Test object permissions\n                if method == 'PUT' and hasattr(view, 'get_object'):\n                    view.get_object()\n            except (exceptions.APIException, PermissionDenied, Http404):\n                pass\n            else:\n                # If user has appropriate permissions for the view, include\n                # appropriate metadata about the fields that should be supplied.\n                serializer = view.get_serializer()\n                actions[method] = self.get_serializer_info(serializer)\n            finally:\n                view.request = request\n\n        return actions\n\n    def get_serializer_info(self, serializer):\n        \"\"\"\n        Given an instance of a serializer, return a dictionary of metadata\n        about its fields.\n        \"\"\"\n        if hasattr(serializer, 'child'):\n            # If this is a `ListSerializer` then we want to examine the\n            # underlying child serializer instance instead.\n            serializer = serializer.child\n        return OrderedDict([\n            (field_name, self.get_field_info(field))\n            for field_name, field in serializer.fields.items()\n            if not isinstance(field, serializers.HiddenField)\n        ])\n\n    def get_field_info(self, field):\n        \"\"\"\n        Given an instance of a serializer field, return a dictionary\n        of metadata about it.\n        \"\"\"\n        field_info = OrderedDict()\n        field_info['type'] = self.label_lookup[field]\n        field_info['required'] = getattr(field, 'required', False)\n\n        attrs = [\n            'read_only', 'label', 'help_text',\n            'min_length', 'max_length',\n            'min_value', 'max_value'\n        ]\n\n        for attr in attrs:\n            value = getattr(field, attr, None)\n            if value is not None and value != '':\n                field_info[attr] = force_text(value, strings_only=True)\n\n        if getattr(field, 'child', None):\n            field_info['child'] = self.get_field_info(field.child)\n        elif getattr(field, 'fields', None):\n            field_info['children'] = self.get_serializer_info(field)\n\n        if (not field_info.get('read_only') and\n            not isinstance(field, (serializers.RelatedField, serializers.ManyRelatedField)) and\n                hasattr(field, 'choices')):\n            field_info['choices'] = [\n                {\n                    'value': choice_value,\n                    'display_name': force_text(choice_name, strings_only=True)\n                }\n                for choice_value, choice_name in field.choices.items()\n            ]\n\n        return field_info\n"
  },
  {
    "path": "jet_django/deps/rest_framework/mixins.py",
    "content": "\"\"\"\nBasic building blocks for generic class based views.\n\nWe don't bind behaviour to http method handlers yet,\nwhich allows mixin classes to be composed in interesting ways.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom jet_django.deps.rest_framework import status\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\nclass CreateModelMixin(object):\n    \"\"\"\n    Create a model instance.\n    \"\"\"\n    def create(self, request, *args, **kwargs):\n        serializer = self.get_serializer(data=request.data)\n        serializer.is_valid(raise_exception=True)\n        self.perform_create(serializer)\n        headers = self.get_success_headers(serializer.data)\n        return Response(serializer.data, status=status.HTTP_201_CREATED, headers=headers)\n\n    def perform_create(self, serializer):\n        serializer.save()\n\n    def get_success_headers(self, data):\n        try:\n            return {'Location': str(data[api_settings.URL_FIELD_NAME])}\n        except (TypeError, KeyError):\n            return {}\n\n\nclass ListModelMixin(object):\n    \"\"\"\n    List a queryset.\n    \"\"\"\n    def list(self, request, *args, **kwargs):\n        queryset = self.filter_queryset(self.get_queryset())\n\n        page = self.paginate_queryset(queryset)\n        if page is not None:\n            serializer = self.get_serializer(page, many=True)\n            return self.get_paginated_response(serializer.data)\n\n        serializer = self.get_serializer(queryset, many=True)\n        return Response(serializer.data)\n\n\nclass RetrieveModelMixin(object):\n    \"\"\"\n    Retrieve a model instance.\n    \"\"\"\n    def retrieve(self, request, *args, **kwargs):\n        instance = self.get_object()\n        serializer = self.get_serializer(instance)\n        return Response(serializer.data)\n\n\nclass UpdateModelMixin(object):\n    \"\"\"\n    Update a model instance.\n    \"\"\"\n    def update(self, request, *args, **kwargs):\n        partial = kwargs.pop('partial', False)\n        instance = self.get_object()\n        serializer = self.get_serializer(instance, data=request.data, partial=partial)\n        serializer.is_valid(raise_exception=True)\n        self.perform_update(serializer)\n\n        if getattr(instance, '_prefetched_objects_cache', None):\n            # If 'prefetch_related' has been applied to a queryset, we need to\n            # forcibly invalidate the prefetch cache on the instance.\n            instance._prefetched_objects_cache = {}\n\n        return Response(serializer.data)\n\n    def perform_update(self, serializer):\n        serializer.save()\n\n    def partial_update(self, request, *args, **kwargs):\n        kwargs['partial'] = True\n        return self.update(request, *args, **kwargs)\n\n\nclass DestroyModelMixin(object):\n    \"\"\"\n    Destroy a model instance.\n    \"\"\"\n    def destroy(self, request, *args, **kwargs):\n        instance = self.get_object()\n        self.perform_destroy(instance)\n        return Response(status=status.HTTP_204_NO_CONTENT)\n\n    def perform_destroy(self, instance):\n        instance.delete()\n"
  },
  {
    "path": "jet_django/deps/rest_framework/models.py",
    "content": "# Just to keep things like ./manage.py test happy\n"
  },
  {
    "path": "jet_django/deps/rest_framework/negotiation.py",
    "content": "\"\"\"\nContent negotiation deals with selecting an appropriate renderer given the\nincoming request.  Typically this will be based on the request's Accept header.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.http import Http404\n\nfrom jet_django.deps.rest_framework import HTTP_HEADER_ENCODING, exceptions\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils.mediatypes import (\n    _MediaType, media_type_matches, order_by_precedence\n)\n\n\nclass BaseContentNegotiation(object):\n    def select_parser(self, request, parsers):\n        raise NotImplementedError('.select_parser() must be implemented')\n\n    def select_renderer(self, request, renderers, format_suffix=None):\n        raise NotImplementedError('.select_renderer() must be implemented')\n\n\nclass DefaultContentNegotiation(BaseContentNegotiation):\n    settings = api_settings\n\n    def select_parser(self, request, parsers):\n        \"\"\"\n        Given a list of parsers and a media type, return the appropriate\n        parser to handle the incoming request.\n        \"\"\"\n        for parser in parsers:\n            if media_type_matches(parser.media_type, request.content_type):\n                return parser\n        return None\n\n    def select_renderer(self, request, renderers, format_suffix=None):\n        \"\"\"\n        Given a request and a list of renderers, return a two-tuple of:\n        (renderer, media type).\n        \"\"\"\n        # Allow URL style format override.  eg. \"?format=json\n        format_query_param = self.settings.URL_FORMAT_OVERRIDE\n        format = format_suffix or request.query_params.get(format_query_param)\n\n        if format:\n            renderers = self.filter_renderers(renderers, format)\n\n        accepts = self.get_accept_list(request)\n\n        # Check the acceptable media types against each renderer,\n        # attempting more specific media types first\n        # NB. The inner loop here isn't as bad as it first looks :)\n        #     Worst case is we're looping over len(accept_list) * len(self.renderers)\n        for media_type_set in order_by_precedence(accepts):\n            for renderer in renderers:\n                for media_type in media_type_set:\n                    if media_type_matches(renderer.media_type, media_type):\n                        # Return the most specific media type as accepted.\n                        media_type_wrapper = _MediaType(media_type)\n                        if (\n                            _MediaType(renderer.media_type).precedence >\n                            media_type_wrapper.precedence\n                        ):\n                            # Eg client requests '*/*'\n                            # Accepted media type is 'application/json'\n                            full_media_type = ';'.join(\n                                (renderer.media_type,) +\n                                tuple('{0}={1}'.format(\n                                    key, value.decode(HTTP_HEADER_ENCODING))\n                                    for key, value in media_type_wrapper.params.items()))\n                            return renderer, full_media_type\n                        else:\n                            # Eg client requests 'application/json; indent=8'\n                            # Accepted media type is 'application/json; indent=8'\n                            return renderer, media_type\n\n        raise exceptions.NotAcceptable(available_renderers=renderers)\n\n    def filter_renderers(self, renderers, format):\n        \"\"\"\n        If there is a '.json' style format suffix, filter the renderers\n        so that we only negotiation against those that accept that format.\n        \"\"\"\n        renderers = [renderer for renderer in renderers\n                     if renderer.format == format]\n        if not renderers:\n            raise Http404\n        return renderers\n\n    def get_accept_list(self, request):\n        \"\"\"\n        Given the incoming request, return a tokenized list of media\n        type strings.\n        \"\"\"\n        header = request.META.get('HTTP_ACCEPT', '*/*')\n        return [token.strip() for token in header.split(',')]\n"
  },
  {
    "path": "jet_django/deps/rest_framework/pagination.py",
    "content": "# coding: utf-8\n\"\"\"\nPagination serializers determine the structure of the output that should\nbe used for paginated responses.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom base64 import b64decode, b64encode\nfrom collections import OrderedDict, namedtuple\n\nfrom django.core.paginator import InvalidPage\nfrom django.core.paginator import Paginator as DjangoPaginator\nfrom django.template import loader\nfrom django.utils import six\nfrom django.utils.encoding import force_text\nfrom django.utils.six.moves.urllib import parse as urlparse\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework.compat import coreapi, coreschema\nfrom jet_django.deps.rest_framework.exceptions import NotFound\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils.urls import remove_query_param, replace_query_param\n\n\ndef _positive_int(integer_string, strict=False, cutoff=None):\n    \"\"\"\n    Cast a string to a strictly positive integer.\n    \"\"\"\n    ret = int(integer_string)\n    if ret < 0 or (ret == 0 and strict):\n        raise ValueError()\n    if cutoff:\n        return min(ret, cutoff)\n    return ret\n\n\ndef _divide_with_ceil(a, b):\n    \"\"\"\n    Returns 'a' divided by 'b', with any remainder rounded up.\n    \"\"\"\n    if a % b:\n        return (a // b) + 1\n\n    return a // b\n\n\ndef _get_displayed_page_numbers(current, final):\n    \"\"\"\n    This utility function determines a list of page numbers to display.\n    This gives us a nice contextually relevant set of page numbers.\n\n    For example:\n    current=14, final=16 -> [1, None, 13, 14, 15, 16]\n\n    This implementation gives one page to each side of the cursor,\n    or two pages to the side when the cursor is at the edge, then\n    ensures that any breaks between non-continuous page numbers never\n    remove only a single page.\n\n    For an alternative implementation which gives two pages to each side of\n    the cursor, eg. as in GitHub issue list pagination, see:\n\n    https://gist.github.com/tomchristie/321140cebb1c4a558b15\n    \"\"\"\n    assert current >= 1\n    assert final >= current\n\n    if final <= 5:\n        return list(range(1, final + 1))\n\n    # We always include the first two pages, last two pages, and\n    # two pages either side of the current page.\n    included = {1, current - 1, current, current + 1, final}\n\n    # If the break would only exclude a single page number then we\n    # may as well include the page number instead of the break.\n    if current <= 4:\n        included.add(2)\n        included.add(3)\n    if current >= final - 3:\n        included.add(final - 1)\n        included.add(final - 2)\n\n    # Now sort the page numbers and drop anything outside the limits.\n    included = [\n        idx for idx in sorted(list(included))\n        if 0 < idx <= final\n    ]\n\n    # Finally insert any `...` breaks\n    if current > 4:\n        included.insert(1, None)\n    if current < final - 3:\n        included.insert(len(included) - 1, None)\n    return included\n\n\ndef _get_page_links(page_numbers, current, url_func):\n    \"\"\"\n    Given a list of page numbers and `None` page breaks,\n    return a list of `PageLink` objects.\n    \"\"\"\n    page_links = []\n    for page_number in page_numbers:\n        if page_number is None:\n            page_link = PAGE_BREAK\n        else:\n            page_link = PageLink(\n                url=url_func(page_number),\n                number=page_number,\n                is_active=(page_number == current),\n                is_break=False\n            )\n        page_links.append(page_link)\n    return page_links\n\n\ndef _reverse_ordering(ordering_tuple):\n    \"\"\"\n    Given an order_by tuple such as `('-created', 'uuid')` reverse the\n    ordering and return a new tuple, eg. `('created', '-uuid')`.\n    \"\"\"\n    def invert(x):\n        return x[1:] if x.startswith('-') else '-' + x\n\n    return tuple([invert(item) for item in ordering_tuple])\n\n\nCursor = namedtuple('Cursor', ['offset', 'reverse', 'position'])\nPageLink = namedtuple('PageLink', ['url', 'number', 'is_active', 'is_break'])\n\nPAGE_BREAK = PageLink(url=None, number=None, is_active=False, is_break=True)\n\n\nclass BasePagination(object):\n    display_page_controls = False\n\n    def paginate_queryset(self, queryset, request, view=None):  # pragma: no cover\n        raise NotImplementedError('paginate_queryset() must be implemented.')\n\n    def get_paginated_response(self, data):  # pragma: no cover\n        raise NotImplementedError('get_paginated_response() must be implemented.')\n\n    def to_html(self):  # pragma: no cover\n        raise NotImplementedError('to_html() must be implemented to display page controls.')\n\n    def get_results(self, data):\n        return data['results']\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        return []\n\n\nclass PageNumberPagination(BasePagination):\n    \"\"\"\n    A simple page number based style that supports page numbers as\n    query parameters. For example:\n\n    http://api.example.org/accounts/?page=4\n    http://api.example.org/accounts/?page=4&page_size=100\n    \"\"\"\n    # The default page size.\n    # Defaults to `None`, meaning pagination is disabled.\n    page_size = api_settings.PAGE_SIZE\n\n    django_paginator_class = DjangoPaginator\n\n    # Client can control the page using this query parameter.\n    page_query_param = 'page'\n    page_query_description = _('A page number within the paginated result set.')\n\n    # Client can control the page size using this query parameter.\n    # Default is 'None'. Set to eg 'page_size' to enable usage.\n    page_size_query_param = None\n    page_size_query_description = _('Number of results to return per page.')\n\n    # Set to an integer to limit the maximum page size the client may request.\n    # Only relevant if 'page_size_query_param' has also been set.\n    max_page_size = None\n\n    last_page_strings = ('last',)\n\n    template = 'jet_django.deps.rest_framework/pagination/numbers.html'\n\n    invalid_page_message = _('Invalid page.')\n\n    def paginate_queryset(self, queryset, request, view=None):\n        \"\"\"\n        Paginate a queryset if required, either returning a\n        page object, or `None` if pagination is not configured for this view.\n        \"\"\"\n        page_size = self.get_page_size(request)\n        if not page_size:\n            return None\n\n        paginator = self.django_paginator_class(queryset, page_size)\n        page_number = request.query_params.get(self.page_query_param, 1)\n        if page_number in self.last_page_strings:\n            page_number = paginator.num_pages\n\n        try:\n            self.page = paginator.page(page_number)\n        except InvalidPage as exc:\n            msg = self.invalid_page_message.format(\n                page_number=page_number, message=six.text_type(exc)\n            )\n            raise NotFound(msg)\n\n        if paginator.num_pages > 1 and self.template is not None:\n            # The browsable API should display pagination controls.\n            self.display_page_controls = True\n\n        self.request = request\n        return list(self.page)\n\n    def get_paginated_response(self, data):\n        return Response(OrderedDict([\n            ('count', self.page.paginator.count),\n            ('next', self.get_next_link()),\n            ('previous', self.get_previous_link()),\n            ('results', data)\n        ]))\n\n    def get_page_size(self, request):\n        if self.page_size_query_param:\n            try:\n                return _positive_int(\n                    request.query_params[self.page_size_query_param],\n                    strict=True,\n                    cutoff=self.max_page_size\n                )\n            except (KeyError, ValueError):\n                pass\n\n        return self.page_size\n\n    def get_next_link(self):\n        if not self.page.has_next():\n            return None\n        url = self.request.build_absolute_uri()\n        page_number = self.page.next_page_number()\n        return replace_query_param(url, self.page_query_param, page_number)\n\n    def get_previous_link(self):\n        if not self.page.has_previous():\n            return None\n        url = self.request.build_absolute_uri()\n        page_number = self.page.previous_page_number()\n        if page_number == 1:\n            return remove_query_param(url, self.page_query_param)\n        return replace_query_param(url, self.page_query_param, page_number)\n\n    def get_html_context(self):\n        base_url = self.request.build_absolute_uri()\n\n        def page_number_to_url(page_number):\n            if page_number == 1:\n                return remove_query_param(base_url, self.page_query_param)\n            else:\n                return replace_query_param(base_url, self.page_query_param, page_number)\n\n        current = self.page.number\n        final = self.page.paginator.num_pages\n        page_numbers = _get_displayed_page_numbers(current, final)\n        page_links = _get_page_links(page_numbers, current, page_number_to_url)\n\n        return {\n            'previous_url': self.get_previous_link(),\n            'next_url': self.get_next_link(),\n            'page_links': page_links\n        }\n\n    def to_html(self):\n        template = loader.get_template(self.template)\n        context = self.get_html_context()\n        return template.render(context)\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        fields = [\n            coreapi.Field(\n                name=self.page_query_param,\n                required=False,\n                location='query',\n                schema=coreschema.Integer(\n                    title='Page',\n                    description=force_text(self.page_query_description)\n                )\n            )\n        ]\n        if self.page_size_query_param is not None:\n            fields.append(\n                coreapi.Field(\n                    name=self.page_size_query_param,\n                    required=False,\n                    location='query',\n                    schema=coreschema.Integer(\n                        title='Page size',\n                        description=force_text(self.page_size_query_description)\n                    )\n                )\n            )\n        return fields\n\n\nclass LimitOffsetPagination(BasePagination):\n    \"\"\"\n    A limit/offset based style. For example:\n\n    http://api.example.org/accounts/?limit=100\n    http://api.example.org/accounts/?offset=400&limit=100\n    \"\"\"\n    default_limit = api_settings.PAGE_SIZE\n    limit_query_param = 'limit'\n    limit_query_description = _('Number of results to return per page.')\n    offset_query_param = 'offset'\n    offset_query_description = _('The initial index from which to return the results.')\n    max_limit = None\n    template = 'jet_django.deps.rest_framework/pagination/numbers.html'\n\n    def paginate_queryset(self, queryset, request, view=None):\n        self.count = self.get_count(queryset)\n        self.limit = self.get_limit(request)\n        if self.limit is None:\n            return None\n\n        self.offset = self.get_offset(request)\n        self.request = request\n        if self.count > self.limit and self.template is not None:\n            self.display_page_controls = True\n\n        if self.count == 0 or self.offset > self.count:\n            return []\n        return list(queryset[self.offset:self.offset + self.limit])\n\n    def get_paginated_response(self, data):\n        return Response(OrderedDict([\n            ('count', self.count),\n            ('next', self.get_next_link()),\n            ('previous', self.get_previous_link()),\n            ('results', data)\n        ]))\n\n    def get_limit(self, request):\n        if self.limit_query_param:\n            try:\n                return _positive_int(\n                    request.query_params[self.limit_query_param],\n                    strict=True,\n                    cutoff=self.max_limit\n                )\n            except (KeyError, ValueError):\n                pass\n\n        return self.default_limit\n\n    def get_offset(self, request):\n        try:\n            return _positive_int(\n                request.query_params[self.offset_query_param],\n            )\n        except (KeyError, ValueError):\n            return 0\n\n    def get_next_link(self):\n        if self.offset + self.limit >= self.count:\n            return None\n\n        url = self.request.build_absolute_uri()\n        url = replace_query_param(url, self.limit_query_param, self.limit)\n\n        offset = self.offset + self.limit\n        return replace_query_param(url, self.offset_query_param, offset)\n\n    def get_previous_link(self):\n        if self.offset <= 0:\n            return None\n\n        url = self.request.build_absolute_uri()\n        url = replace_query_param(url, self.limit_query_param, self.limit)\n\n        if self.offset - self.limit <= 0:\n            return remove_query_param(url, self.offset_query_param)\n\n        offset = self.offset - self.limit\n        return replace_query_param(url, self.offset_query_param, offset)\n\n    def get_html_context(self):\n        base_url = self.request.build_absolute_uri()\n\n        if self.limit:\n            current = _divide_with_ceil(self.offset, self.limit) + 1\n\n            # The number of pages is a little bit fiddly.\n            # We need to sum both the number of pages from current offset to end\n            # plus the number of pages up to the current offset.\n            # When offset is not strictly divisible by the limit then we may\n            # end up introducing an extra page as an artifact.\n            final = (\n                _divide_with_ceil(self.count - self.offset, self.limit) +\n                _divide_with_ceil(self.offset, self.limit)\n            )\n\n            if final < 1:\n                final = 1\n        else:\n            current = 1\n            final = 1\n\n        if current > final:\n            current = final\n\n        def page_number_to_url(page_number):\n            if page_number == 1:\n                return remove_query_param(base_url, self.offset_query_param)\n            else:\n                offset = self.offset + ((page_number - current) * self.limit)\n                return replace_query_param(base_url, self.offset_query_param, offset)\n\n        page_numbers = _get_displayed_page_numbers(current, final)\n        page_links = _get_page_links(page_numbers, current, page_number_to_url)\n\n        return {\n            'previous_url': self.get_previous_link(),\n            'next_url': self.get_next_link(),\n            'page_links': page_links\n        }\n\n    def to_html(self):\n        template = loader.get_template(self.template)\n        context = self.get_html_context()\n        return template.render(context)\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        return [\n            coreapi.Field(\n                name=self.limit_query_param,\n                required=False,\n                location='query',\n                schema=coreschema.Integer(\n                    title='Limit',\n                    description=force_text(self.limit_query_description)\n                )\n            ),\n            coreapi.Field(\n                name=self.offset_query_param,\n                required=False,\n                location='query',\n                schema=coreschema.Integer(\n                    title='Offset',\n                    description=force_text(self.offset_query_description)\n                )\n            )\n        ]\n\n    def get_count(self, queryset):\n        \"\"\"\n        Determine an object count, supporting either querysets or regular lists.\n        \"\"\"\n        try:\n            return queryset.count()\n        except (AttributeError, TypeError):\n            return len(queryset)\n\n\nclass CursorPagination(BasePagination):\n    \"\"\"\n    The cursor pagination implementation is necessarily complex.\n    For an overview of the position/offset style we use, see this post:\n    http://cra.mr/2011/03/08/building-cursors-for-the-disqus-api\n    \"\"\"\n    cursor_query_param = 'cursor'\n    cursor_query_description = _('The pagination cursor value.')\n    page_size = api_settings.PAGE_SIZE\n    invalid_cursor_message = _('Invalid cursor')\n    ordering = '-created'\n    template = 'jet_django.deps.rest_framework/pagination/previous_and_next.html'\n\n    # Client can control the page size using this query parameter.\n    # Default is 'None'. Set to eg 'page_size' to enable usage.\n    page_size_query_param = None\n    page_size_query_description = _('Number of results to return per page.')\n\n    # Set to an integer to limit the maximum page size the client may request.\n    # Only relevant if 'page_size_query_param' has also been set.\n    max_page_size = None\n\n    # The offset in the cursor is used in situations where we have a\n    # nearly-unique index. (Eg millisecond precision creation timestamps)\n    # We guard against malicious users attempting to cause expensive database\n    # queries, by having a hard cap on the maximum possible size of the offset.\n    offset_cutoff = 1000\n\n    def paginate_queryset(self, queryset, request, view=None):\n        self.page_size = self.get_page_size(request)\n        if not self.page_size:\n            return None\n\n        self.base_url = request.build_absolute_uri()\n        self.ordering = self.get_ordering(request, queryset, view)\n\n        self.cursor = self.decode_cursor(request)\n        if self.cursor is None:\n            (offset, reverse, current_position) = (0, False, None)\n        else:\n            (offset, reverse, current_position) = self.cursor\n\n        # Cursor pagination always enforces an ordering.\n        if reverse:\n            queryset = queryset.order_by(*_reverse_ordering(self.ordering))\n        else:\n            queryset = queryset.order_by(*self.ordering)\n\n        # If we have a cursor with a fixed position then filter by that.\n        if current_position is not None:\n            order = self.ordering[0]\n            is_reversed = order.startswith('-')\n            order_attr = order.lstrip('-')\n\n            # Test for: (cursor reversed) XOR (queryset reversed)\n            if self.cursor.reverse != is_reversed:\n                kwargs = {order_attr + '__lt': current_position}\n            else:\n                kwargs = {order_attr + '__gt': current_position}\n\n            queryset = queryset.filter(**kwargs)\n\n        # If we have an offset cursor then offset the entire page by that amount.\n        # We also always fetch an extra item in order to determine if there is a\n        # page following on from this one.\n        results = list(queryset[offset:offset + self.page_size + 1])\n        self.page = list(results[:self.page_size])\n\n        # Determine the position of the final item following the page.\n        if len(results) > len(self.page):\n            has_following_position = True\n            following_position = self._get_position_from_instance(results[-1], self.ordering)\n        else:\n            has_following_position = False\n            following_position = None\n\n        # If we have a reverse queryset, then the query ordering was in reverse\n        # so we need to reverse the items again before returning them to the user.\n        if reverse:\n            self.page = list(reversed(self.page))\n\n        if reverse:\n            # Determine next and previous positions for reverse cursors.\n            self.has_next = (current_position is not None) or (offset > 0)\n            self.has_previous = has_following_position\n            if self.has_next:\n                self.next_position = current_position\n            if self.has_previous:\n                self.previous_position = following_position\n        else:\n            # Determine next and previous positions for forward cursors.\n            self.has_next = has_following_position\n            self.has_previous = (current_position is not None) or (offset > 0)\n            if self.has_next:\n                self.next_position = following_position\n            if self.has_previous:\n                self.previous_position = current_position\n\n        # Display page controls in the browsable API if there is more\n        # than one page.\n        if (self.has_previous or self.has_next) and self.template is not None:\n            self.display_page_controls = True\n\n        return self.page\n\n    def get_page_size(self, request):\n        if self.page_size_query_param:\n            try:\n                return _positive_int(\n                    request.query_params[self.page_size_query_param],\n                    strict=True,\n                    cutoff=self.max_page_size\n                )\n            except (KeyError, ValueError):\n                pass\n\n        return self.page_size\n\n    def get_next_link(self):\n        if not self.has_next:\n            return None\n\n        if self.cursor and self.cursor.reverse and self.cursor.offset != 0:\n            # If we're reversing direction and we have an offset cursor\n            # then we cannot use the first position we find as a marker.\n            compare = self._get_position_from_instance(self.page[-1], self.ordering)\n        else:\n            compare = self.next_position\n        offset = 0\n\n        for item in reversed(self.page):\n            position = self._get_position_from_instance(item, self.ordering)\n            if position != compare:\n                # The item in this position and the item following it\n                # have different positions. We can use this position as\n                # our marker.\n                break\n\n            # The item in this position has the same position as the item\n            # following it, we can't use it as a marker position, so increment\n            # the offset and keep seeking to the previous item.\n            compare = position\n            offset += 1\n\n        else:\n            # There were no unique positions in the page.\n            if not self.has_previous:\n                # We are on the first page.\n                # Our cursor will have an offset equal to the page size,\n                # but no position to filter against yet.\n                offset = self.page_size\n                position = None\n            elif self.cursor.reverse:\n                # The change in direction will introduce a paging artifact,\n                # where we end up skipping forward a few extra items.\n                offset = 0\n                position = self.previous_position\n            else:\n                # Use the position from the existing cursor and increment\n                # it's offset by the page size.\n                offset = self.cursor.offset + self.page_size\n                position = self.previous_position\n\n        cursor = Cursor(offset=offset, reverse=False, position=position)\n        return self.encode_cursor(cursor)\n\n    def get_previous_link(self):\n        if not self.has_previous:\n            return None\n\n        if self.cursor and not self.cursor.reverse and self.cursor.offset != 0:\n            # If we're reversing direction and we have an offset cursor\n            # then we cannot use the first position we find as a marker.\n            compare = self._get_position_from_instance(self.page[0], self.ordering)\n        else:\n            compare = self.previous_position\n        offset = 0\n\n        for item in self.page:\n            position = self._get_position_from_instance(item, self.ordering)\n            if position != compare:\n                # The item in this position and the item following it\n                # have different positions. We can use this position as\n                # our marker.\n                break\n\n            # The item in this position has the same position as the item\n            # following it, we can't use it as a marker position, so increment\n            # the offset and keep seeking to the previous item.\n            compare = position\n            offset += 1\n\n        else:\n            # There were no unique positions in the page.\n            if not self.has_next:\n                # We are on the final page.\n                # Our cursor will have an offset equal to the page size,\n                # but no position to filter against yet.\n                offset = self.page_size\n                position = None\n            elif self.cursor.reverse:\n                # Use the position from the existing cursor and increment\n                # it's offset by the page size.\n                offset = self.cursor.offset + self.page_size\n                position = self.next_position\n            else:\n                # The change in direction will introduce a paging artifact,\n                # where we end up skipping back a few extra items.\n                offset = 0\n                position = self.next_position\n\n        cursor = Cursor(offset=offset, reverse=True, position=position)\n        return self.encode_cursor(cursor)\n\n    def get_ordering(self, request, queryset, view):\n        \"\"\"\n        Return a tuple of strings, that may be used in an `order_by` method.\n        \"\"\"\n        ordering_filters = [\n            filter_cls for filter_cls in getattr(view, 'filter_backends', [])\n            if hasattr(filter_cls, 'get_ordering')\n        ]\n\n        if ordering_filters:\n            # If a filter exists on the view that implements `get_ordering`\n            # then we defer to that filter to determine the ordering.\n            filter_cls = ordering_filters[0]\n            filter_instance = filter_cls()\n            ordering = filter_instance.get_ordering(request, queryset, view)\n            assert ordering is not None, (\n                'Using cursor pagination, but filter class {filter_cls} '\n                'returned a `None` ordering.'.format(\n                    filter_cls=filter_cls.__name__\n                )\n            )\n        else:\n            # The default case is to check for an `ordering` attribute\n            # on this pagination instance.\n            ordering = self.ordering\n            assert ordering is not None, (\n                'Using cursor pagination, but no ordering attribute was declared '\n                'on the pagination class.'\n            )\n            assert '__' not in ordering, (\n                'Cursor pagination does not support double underscore lookups '\n                'for orderings. Orderings should be an unchanging, unique or '\n                'nearly-unique field on the model, such as \"-created\" or \"pk\".'\n            )\n\n        assert isinstance(ordering, (six.string_types, list, tuple)), (\n            'Invalid ordering. Expected string or tuple, but got {type}'.format(\n                type=type(ordering).__name__\n            )\n        )\n\n        if isinstance(ordering, six.string_types):\n            return (ordering,)\n        return tuple(ordering)\n\n    def decode_cursor(self, request):\n        \"\"\"\n        Given a request with a cursor, return a `Cursor` instance.\n        \"\"\"\n        # Determine if we have a cursor, and if so then decode it.\n        encoded = request.query_params.get(self.cursor_query_param)\n        if encoded is None:\n            return None\n\n        try:\n            querystring = b64decode(encoded.encode('ascii')).decode('ascii')\n            tokens = urlparse.parse_qs(querystring, keep_blank_values=True)\n\n            offset = tokens.get('o', ['0'])[0]\n            offset = _positive_int(offset, cutoff=self.offset_cutoff)\n\n            reverse = tokens.get('r', ['0'])[0]\n            reverse = bool(int(reverse))\n\n            position = tokens.get('p', [None])[0]\n        except (TypeError, ValueError):\n            raise NotFound(self.invalid_cursor_message)\n\n        return Cursor(offset=offset, reverse=reverse, position=position)\n\n    def encode_cursor(self, cursor):\n        \"\"\"\n        Given a Cursor instance, return an url with encoded cursor.\n        \"\"\"\n        tokens = {}\n        if cursor.offset != 0:\n            tokens['o'] = str(cursor.offset)\n        if cursor.reverse:\n            tokens['r'] = '1'\n        if cursor.position is not None:\n            tokens['p'] = cursor.position\n\n        querystring = urlparse.urlencode(tokens, doseq=True)\n        encoded = b64encode(querystring.encode('ascii')).decode('ascii')\n        return replace_query_param(self.base_url, self.cursor_query_param, encoded)\n\n    def _get_position_from_instance(self, instance, ordering):\n        field_name = ordering[0].lstrip('-')\n        if isinstance(instance, dict):\n            attr = instance[field_name]\n        else:\n            attr = getattr(instance, field_name)\n        return six.text_type(attr)\n\n    def get_paginated_response(self, data):\n        return Response(OrderedDict([\n            ('next', self.get_next_link()),\n            ('previous', self.get_previous_link()),\n            ('results', data)\n        ]))\n\n    def get_html_context(self):\n        return {\n            'previous_url': self.get_previous_link(),\n            'next_url': self.get_next_link()\n        }\n\n    def to_html(self):\n        template = loader.get_template(self.template)\n        context = self.get_html_context()\n        return template.render(context)\n\n    def get_schema_fields(self, view):\n        assert coreapi is not None, 'coreapi must be installed to use `get_schema_fields()`'\n        assert coreschema is not None, 'coreschema must be installed to use `get_schema_fields()`'\n        fields = [\n            coreapi.Field(\n                name=self.cursor_query_param,\n                required=False,\n                location='query',\n                schema=coreschema.String(\n                    title='Cursor',\n                    description=force_text(self.cursor_query_description)\n                )\n            )\n        ]\n        if self.page_size_query_param is not None:\n            fields.append(\n                coreapi.Field(\n                    name=self.page_size_query_param,\n                    required=False,\n                    location='query',\n                    schema=coreschema.Integer(\n                        title='Page size',\n                        description=force_text(self.page_size_query_description)\n                    )\n                )\n            )\n        return fields\n"
  },
  {
    "path": "jet_django/deps/rest_framework/parsers.py",
    "content": "\"\"\"\nParsers are used to parse the content of incoming HTTP requests.\n\nThey give us a generic way of being able to handle various media types\non the request, such as form content or json encoded data.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport codecs\n\nfrom django.conf import settings\nfrom django.core.files.uploadhandler import StopFutureHandlers\nfrom django.http import QueryDict\nfrom django.http.multipartparser import ChunkIter\nfrom django.http.multipartparser import \\\n    MultiPartParser as DjangoMultiPartParser\nfrom django.http.multipartparser import MultiPartParserError, parse_header\nfrom django.utils import six\nfrom django.utils.encoding import force_text\nfrom django.utils.six.moves.urllib import parse as urlparse\n\nfrom jet_django.deps.rest_framework import renderers\nfrom jet_django.deps.rest_framework.exceptions import ParseError\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import json\n\n\nclass DataAndFiles(object):\n    def __init__(self, data, files):\n        self.data = data\n        self.files = files\n\n\nclass BaseParser(object):\n    \"\"\"\n    All parsers should extend `BaseParser`, specifying a `media_type`\n    attribute, and overriding the `.parse()` method.\n    \"\"\"\n    media_type = None\n\n    def parse(self, stream, media_type=None, parser_context=None):\n        \"\"\"\n        Given a stream to read from, return the parsed representation.\n        Should return parsed data, or a `DataAndFiles` object consisting of the\n        parsed data and files.\n        \"\"\"\n        raise NotImplementedError(\".parse() must be overridden.\")\n\n\nclass JSONParser(BaseParser):\n    \"\"\"\n    Parses JSON-serialized data.\n    \"\"\"\n    media_type = 'application/json'\n    renderer_class = renderers.JSONRenderer\n    strict = api_settings.STRICT_JSON\n\n    def parse(self, stream, media_type=None, parser_context=None):\n        \"\"\"\n        Parses the incoming bytestream as JSON and returns the resulting data.\n        \"\"\"\n        parser_context = parser_context or {}\n        encoding = parser_context.get('encoding', settings.DEFAULT_CHARSET)\n\n        try:\n            decoded_stream = codecs.getreader(encoding)(stream)\n            parse_constant = json.strict_constant if self.strict else None\n            return json.load(decoded_stream, parse_constant=parse_constant)\n        except ValueError as exc:\n            raise ParseError('JSON parse error - %s' % six.text_type(exc))\n\n\nclass FormParser(BaseParser):\n    \"\"\"\n    Parser for form data.\n    \"\"\"\n    media_type = 'application/x-www-form-urlencoded'\n\n    def parse(self, stream, media_type=None, parser_context=None):\n        \"\"\"\n        Parses the incoming bytestream as a URL encoded form,\n        and returns the resulting QueryDict.\n        \"\"\"\n        parser_context = parser_context or {}\n        encoding = parser_context.get('encoding', settings.DEFAULT_CHARSET)\n        data = QueryDict(stream.read(), encoding=encoding)\n        return data\n\n\nclass MultiPartParser(BaseParser):\n    \"\"\"\n    Parser for multipart form data, which may include file data.\n    \"\"\"\n    media_type = 'multipart/form-data'\n\n    def parse(self, stream, media_type=None, parser_context=None):\n        \"\"\"\n        Parses the incoming bytestream as a multipart encoded form,\n        and returns a DataAndFiles object.\n\n        `.data` will be a `QueryDict` containing all the form parameters.\n        `.files` will be a `QueryDict` containing all the form files.\n        \"\"\"\n        parser_context = parser_context or {}\n        request = parser_context['request']\n        encoding = parser_context.get('encoding', settings.DEFAULT_CHARSET)\n        meta = request.META.copy()\n        meta['CONTENT_TYPE'] = media_type\n        upload_handlers = request.upload_handlers\n\n        try:\n            parser = DjangoMultiPartParser(meta, stream, upload_handlers, encoding)\n            data, files = parser.parse()\n            return DataAndFiles(data, files)\n        except MultiPartParserError as exc:\n            raise ParseError('Multipart form parse error - %s' % six.text_type(exc))\n\n\nclass FileUploadParser(BaseParser):\n    \"\"\"\n    Parser for file upload data.\n    \"\"\"\n    media_type = '*/*'\n    errors = {\n        'unhandled': 'FileUpload parse error - none of upload handlers can handle the stream',\n        'no_filename': 'Missing filename. Request should include a Content-Disposition header with a filename parameter.',\n    }\n\n    def parse(self, stream, media_type=None, parser_context=None):\n        \"\"\"\n        Treats the incoming bytestream as a raw file upload and returns\n        a `DataAndFiles` object.\n\n        `.data` will be None (we expect request body to be a file content).\n        `.files` will be a `QueryDict` containing one 'file' element.\n        \"\"\"\n        parser_context = parser_context or {}\n        request = parser_context['request']\n        encoding = parser_context.get('encoding', settings.DEFAULT_CHARSET)\n        meta = request.META\n        upload_handlers = request.upload_handlers\n        filename = self.get_filename(stream, media_type, parser_context)\n\n        if not filename:\n            raise ParseError(self.errors['no_filename'])\n\n        # Note that this code is extracted from Django's handling of\n        # file uploads in MultiPartParser.\n        content_type = meta.get('HTTP_CONTENT_TYPE',\n                                meta.get('CONTENT_TYPE', ''))\n        try:\n            content_length = int(meta.get('HTTP_CONTENT_LENGTH',\n                                          meta.get('CONTENT_LENGTH', 0)))\n        except (ValueError, TypeError):\n            content_length = None\n\n        # See if the handler will want to take care of the parsing.\n        for handler in upload_handlers:\n            result = handler.handle_raw_input(stream,\n                                              meta,\n                                              content_length,\n                                              None,\n                                              encoding)\n            if result is not None:\n                return DataAndFiles({}, {'file': result[1]})\n\n        # This is the standard case.\n        possible_sizes = [x.chunk_size for x in upload_handlers if x.chunk_size]\n        chunk_size = min([2 ** 31 - 4] + possible_sizes)\n        chunks = ChunkIter(stream, chunk_size)\n        counters = [0] * len(upload_handlers)\n\n        for index, handler in enumerate(upload_handlers):\n            try:\n                handler.new_file(None, filename, content_type,\n                                 content_length, encoding)\n            except StopFutureHandlers:\n                upload_handlers = upload_handlers[:index + 1]\n                break\n\n        for chunk in chunks:\n            for index, handler in enumerate(upload_handlers):\n                chunk_length = len(chunk)\n                chunk = handler.receive_data_chunk(chunk, counters[index])\n                counters[index] += chunk_length\n                if chunk is None:\n                    break\n\n        for index, handler in enumerate(upload_handlers):\n            file_obj = handler.file_complete(counters[index])\n            if file_obj is not None:\n                return DataAndFiles({}, {'file': file_obj})\n\n        raise ParseError(self.errors['unhandled'])\n\n    def get_filename(self, stream, media_type, parser_context):\n        \"\"\"\n        Detects the uploaded file name. First searches a 'filename' url kwarg.\n        Then tries to parse Content-Disposition header.\n        \"\"\"\n        try:\n            return parser_context['kwargs']['filename']\n        except KeyError:\n            pass\n\n        try:\n            meta = parser_context['request'].META\n            disposition = parse_header(meta['HTTP_CONTENT_DISPOSITION'].encode('utf-8'))\n            filename_parm = disposition[1]\n            if 'filename*' in filename_parm:\n                return self.get_encoded_filename(filename_parm)\n            return force_text(filename_parm['filename'])\n        except (AttributeError, KeyError, ValueError):\n            pass\n\n    def get_encoded_filename(self, filename_parm):\n        \"\"\"\n        Handle encoded filenames per RFC6266. See also:\n        https://tools.ietf.org/html/rfc2231#section-4\n        \"\"\"\n        encoded_filename = force_text(filename_parm['filename*'])\n        try:\n            charset, lang, filename = encoded_filename.split('\\'', 2)\n            filename = urlparse.unquote(filename)\n        except (ValueError, LookupError):\n            filename = force_text(filename_parm['filename'])\n        return filename\n"
  },
  {
    "path": "jet_django/deps/rest_framework/permissions.py",
    "content": "\"\"\"\nProvides a set of pluggable permission policies.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.http import Http404\n\nfrom jet_django.deps.rest_framework import exceptions\n\nSAFE_METHODS = ('GET', 'HEAD', 'OPTIONS')\n\n\nclass BasePermission(object):\n    \"\"\"\n    A base class from which all permission classes should inherit.\n    \"\"\"\n\n    def has_permission(self, request, view):\n        \"\"\"\n        Return `True` if permission is granted, `False` otherwise.\n        \"\"\"\n        return True\n\n    def has_object_permission(self, request, view, obj):\n        \"\"\"\n        Return `True` if permission is granted, `False` otherwise.\n        \"\"\"\n        return True\n\n\nclass AllowAny(BasePermission):\n    \"\"\"\n    Allow any access.\n    This isn't strictly required, since you could use an empty\n    permission_classes list, but it's useful because it makes the intention\n    more explicit.\n    \"\"\"\n\n    def has_permission(self, request, view):\n        return True\n\n\nclass IsAuthenticated(BasePermission):\n    \"\"\"\n    Allows access only to authenticated users.\n    \"\"\"\n\n    def has_permission(self, request, view):\n        return request.user and request.user.is_authenticated\n\n\nclass IsAdminUser(BasePermission):\n    \"\"\"\n    Allows access only to admin users.\n    \"\"\"\n\n    def has_permission(self, request, view):\n        return request.user and request.user.is_staff\n\n\nclass IsAuthenticatedOrReadOnly(BasePermission):\n    \"\"\"\n    The request is authenticated as a user, or is a read-only request.\n    \"\"\"\n\n    def has_permission(self, request, view):\n        return (\n            request.method in SAFE_METHODS or\n            request.user and\n            request.user.is_authenticated\n        )\n\n\nclass DjangoModelPermissions(BasePermission):\n    \"\"\"\n    The request is authenticated using `django.contrib.auth` permissions.\n    See: https://docs.djangoproject.com/en/dev/topics/auth/#permissions\n\n    It ensures that the user is authenticated, and has the appropriate\n    `add`/`change`/`delete` permissions on the model.\n\n    This permission can only be applied against view classes that\n    provide a `.queryset` attribute.\n    \"\"\"\n\n    # Map methods into required permission codes.\n    # Override this if you need to also provide 'view' permissions,\n    # or if you want to provide custom permission codes.\n    perms_map = {\n        'GET': [],\n        'OPTIONS': [],\n        'HEAD': [],\n        'POST': ['%(app_label)s.add_%(model_name)s'],\n        'PUT': ['%(app_label)s.change_%(model_name)s'],\n        'PATCH': ['%(app_label)s.change_%(model_name)s'],\n        'DELETE': ['%(app_label)s.delete_%(model_name)s'],\n    }\n\n    authenticated_users_only = True\n\n    def get_required_permissions(self, method, model_cls):\n        \"\"\"\n        Given a model and an HTTP method, return the list of permission\n        codes that the user is required to have.\n        \"\"\"\n        kwargs = {\n            'app_label': model_cls._meta.app_label,\n            'model_name': model_cls._meta.model_name\n        }\n\n        if method not in self.perms_map:\n            raise exceptions.MethodNotAllowed(method)\n\n        return [perm % kwargs for perm in self.perms_map[method]]\n\n    def _queryset(self, view):\n        assert hasattr(view, 'get_queryset') \\\n            or getattr(view, 'queryset', None) is not None, (\n            'Cannot apply {} on a view that does not set '\n            '`.queryset` or have a `.get_queryset()` method.'\n        ).format(self.__class__.__name__)\n\n        if hasattr(view, 'get_queryset'):\n            queryset = view.get_queryset()\n            assert queryset is not None, (\n                '{}.get_queryset() returned None'.format(view.__class__.__name__)\n            )\n            return queryset\n        return view.queryset\n\n    def has_permission(self, request, view):\n        # Workaround to ensure DjangoModelPermissions are not applied\n        # to the root view when using DefaultRouter.\n        if getattr(view, '_ignore_model_permissions', False):\n            return True\n\n        if not request.user or (\n           not request.user.is_authenticated and self.authenticated_users_only):\n            return False\n\n        queryset = self._queryset(view)\n        perms = self.get_required_permissions(request.method, queryset.model)\n\n        return request.user.has_perms(perms)\n\n\nclass DjangoModelPermissionsOrAnonReadOnly(DjangoModelPermissions):\n    \"\"\"\n    Similar to DjangoModelPermissions, except that anonymous users are\n    allowed read-only access.\n    \"\"\"\n    authenticated_users_only = False\n\n\nclass DjangoObjectPermissions(DjangoModelPermissions):\n    \"\"\"\n    The request is authenticated using Django's object-level permissions.\n    It requires an object-permissions-enabled backend, such as Django Guardian.\n\n    It ensures that the user is authenticated, and has the appropriate\n    `add`/`change`/`delete` permissions on the object using .has_perms.\n\n    This permission can only be applied against view classes that\n    provide a `.queryset` attribute.\n    \"\"\"\n    perms_map = {\n        'GET': [],\n        'OPTIONS': [],\n        'HEAD': [],\n        'POST': ['%(app_label)s.add_%(model_name)s'],\n        'PUT': ['%(app_label)s.change_%(model_name)s'],\n        'PATCH': ['%(app_label)s.change_%(model_name)s'],\n        'DELETE': ['%(app_label)s.delete_%(model_name)s'],\n    }\n\n    def get_required_object_permissions(self, method, model_cls):\n        kwargs = {\n            'app_label': model_cls._meta.app_label,\n            'model_name': model_cls._meta.model_name\n        }\n\n        if method not in self.perms_map:\n            raise exceptions.MethodNotAllowed(method)\n\n        return [perm % kwargs for perm in self.perms_map[method]]\n\n    def has_object_permission(self, request, view, obj):\n        # authentication checks have already executed via has_permission\n        queryset = self._queryset(view)\n        model_cls = queryset.model\n        user = request.user\n\n        perms = self.get_required_object_permissions(request.method, model_cls)\n\n        if not user.has_perms(perms, obj):\n            # If the user does not have permissions we need to determine if\n            # they have read permissions to see 403, or not, and simply see\n            # a 404 response.\n\n            if request.method in SAFE_METHODS:\n                # Read permissions already checked and failed, no need\n                # to make another lookup.\n                raise Http404\n\n            read_perms = self.get_required_object_permissions('GET', model_cls)\n            if not user.has_perms(read_perms, obj):\n                raise Http404\n\n            # Has read permissions.\n            return False\n\n        return True\n"
  },
  {
    "path": "jet_django/deps/rest_framework/relations.py",
    "content": "# coding: utf-8\nfrom __future__ import unicode_literals\n\nfrom collections import OrderedDict\n\nfrom django.core.exceptions import ImproperlyConfigured, ObjectDoesNotExist\nfrom django.db.models import Manager\nfrom django.db.models.query import QuerySet\nfrom django.urls import NoReverseMatch, Resolver404, get_script_prefix, resolve\nfrom django.utils import six\nfrom django.utils.encoding import (\n    python_2_unicode_compatible, smart_text, uri_to_iri\n)\nfrom django.utils.six.moves.urllib import parse as urlparse\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework.fields import (\n    Field, empty, get_attribute, is_simple_callable, iter_options\n)\nfrom jet_django.deps.rest_framework.reverse import reverse\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import html\n\n\ndef method_overridden(method_name, klass, instance):\n    \"\"\"\n    Determine if a method has been overridden.\n    \"\"\"\n    method = getattr(klass, method_name)\n    default_method = getattr(method, '__func__', method)  # Python 3 compat\n    return default_method is not getattr(instance, method_name).__func__\n\n\nclass Hyperlink(six.text_type):\n    \"\"\"\n    A string like object that additionally has an associated name.\n    We use this for hyperlinked URLs that may render as a named link\n    in some contexts, or render as a plain URL in others.\n    \"\"\"\n    def __new__(self, url, obj):\n        ret = six.text_type.__new__(self, url)\n        ret.obj = obj\n        return ret\n\n    def __getnewargs__(self):\n        return(str(self), self.name,)\n\n    @property\n    def name(self):\n        # This ensures that we only called `__str__` lazily,\n        # as in some cases calling __str__ on a model instances *might*\n        # involve a database lookup.\n        return six.text_type(self.obj)\n\n    is_hyperlink = True\n\n\n@python_2_unicode_compatible\nclass PKOnlyObject(object):\n    \"\"\"\n    This is a mock object, used for when we only need the pk of the object\n    instance, but still want to return an object with a .pk attribute,\n    in order to keep the same interface as a regular model instance.\n    \"\"\"\n    def __init__(self, pk):\n        self.pk = pk\n\n    def __str__(self):\n        return \"%s\" % self.pk\n\n\n# We assume that 'validators' are intended for the child serializer,\n# rather than the parent serializer.\nMANY_RELATION_KWARGS = (\n    'read_only', 'write_only', 'required', 'default', 'initial', 'source',\n    'label', 'help_text', 'style', 'error_messages', 'allow_empty',\n    'html_cutoff', 'html_cutoff_text'\n)\n\n\nclass RelatedField(Field):\n    queryset = None\n    html_cutoff = None\n    html_cutoff_text = None\n\n    def __init__(self, **kwargs):\n        self.queryset = kwargs.pop('queryset', self.queryset)\n\n        cutoff_from_settings = api_settings.HTML_SELECT_CUTOFF\n        if cutoff_from_settings is not None:\n            cutoff_from_settings = int(cutoff_from_settings)\n        self.html_cutoff = kwargs.pop('html_cutoff', cutoff_from_settings)\n\n        self.html_cutoff_text = kwargs.pop(\n            'html_cutoff_text',\n            self.html_cutoff_text or _(api_settings.HTML_SELECT_CUTOFF_TEXT)\n        )\n        if not method_overridden('get_queryset', RelatedField, self):\n            assert self.queryset is not None or kwargs.get('read_only', None), (\n                'Relational field must provide a `queryset` argument, '\n                'override `get_queryset`, or set read_only=`True`.'\n            )\n        assert not (self.queryset is not None and kwargs.get('read_only', None)), (\n            'Relational fields should not provide a `queryset` argument, '\n            'when setting read_only=`True`.'\n        )\n        kwargs.pop('many', None)\n        kwargs.pop('allow_empty', None)\n        super(RelatedField, self).__init__(**kwargs)\n\n    def __new__(cls, *args, **kwargs):\n        # We override this method in order to automagically create\n        # `ManyRelatedField` classes instead when `many=True` is set.\n        if kwargs.pop('many', False):\n            return cls.many_init(*args, **kwargs)\n        return super(RelatedField, cls).__new__(cls, *args, **kwargs)\n\n    @classmethod\n    def many_init(cls, *args, **kwargs):\n        \"\"\"\n        This method handles creating a parent `ManyRelatedField` instance\n        when the `many=True` keyword argument is passed.\n\n        Typically you won't need to override this method.\n\n        Note that we're over-cautious in passing most arguments to both parent\n        and child classes in order to try to cover the general case. If you're\n        overriding this method you'll probably want something much simpler, eg:\n\n        @classmethod\n        def many_init(cls, *args, **kwargs):\n            kwargs['child'] = cls()\n            return CustomManyRelatedField(*args, **kwargs)\n        \"\"\"\n        list_kwargs = {'child_relation': cls(*args, **kwargs)}\n        for key in kwargs:\n            if key in MANY_RELATION_KWARGS:\n                list_kwargs[key] = kwargs[key]\n        return ManyRelatedField(**list_kwargs)\n\n    def run_validation(self, data=empty):\n        # We force empty strings to None values for relational fields.\n        if data == '':\n            data = None\n        return super(RelatedField, self).run_validation(data)\n\n    def get_queryset(self):\n        queryset = self.queryset\n        if isinstance(queryset, (QuerySet, Manager)):\n            # Ensure queryset is re-evaluated whenever used.\n            # Note that actually a `Manager` class may also be used as the\n            # queryset argument. This occurs on ModelSerializer fields,\n            # as it allows us to generate a more expressive 'repr' output\n            # for the field.\n            # Eg: 'MyRelationship(queryset=ExampleModel.objects.all())'\n            queryset = queryset.all()\n        return queryset\n\n    def use_pk_only_optimization(self):\n        return False\n\n    def get_attribute(self, instance):\n        if self.use_pk_only_optimization() and self.source_attrs:\n            # Optimized case, return a mock object only containing the pk attribute.\n            try:\n                instance = get_attribute(instance, self.source_attrs[:-1])\n                value = instance.serializable_value(self.source_attrs[-1])\n                if is_simple_callable(value):\n                    # Handle edge case where the relationship `source` argument\n                    # points to a `get_relationship()` method on the model\n                    value = value().pk\n                return PKOnlyObject(pk=value)\n            except AttributeError:\n                pass\n\n        # Standard case, return the object instance.\n        return super(RelatedField, self).get_attribute(instance)\n\n    def get_choices(self, cutoff=None):\n        queryset = self.get_queryset()\n        if queryset is None:\n            # Ensure that field.choices returns something sensible\n            # even when accessed with a read-only field.\n            return {}\n\n        if cutoff is not None:\n            queryset = queryset[:cutoff]\n\n        return OrderedDict([\n            (\n                self.to_representation(item),\n                self.display_value(item)\n            )\n            for item in queryset\n        ])\n\n    @property\n    def choices(self):\n        return self.get_choices()\n\n    @property\n    def grouped_choices(self):\n        return self.choices\n\n    def iter_options(self):\n        return iter_options(\n            self.get_choices(cutoff=self.html_cutoff),\n            cutoff=self.html_cutoff,\n            cutoff_text=self.html_cutoff_text\n        )\n\n    def display_value(self, instance):\n        return six.text_type(instance)\n\n\nclass StringRelatedField(RelatedField):\n    \"\"\"\n    A read only field that represents its targets using their\n    plain string representation.\n    \"\"\"\n\n    def __init__(self, **kwargs):\n        kwargs['read_only'] = True\n        super(StringRelatedField, self).__init__(**kwargs)\n\n    def to_representation(self, value):\n        return six.text_type(value)\n\n\nclass PrimaryKeyRelatedField(RelatedField):\n    default_error_messages = {\n        'required': _('This field is required.'),\n        'does_not_exist': _('Invalid pk \"{pk_value}\" - object does not exist.'),\n        'incorrect_type': _('Incorrect type. Expected pk value, received {data_type}.'),\n    }\n\n    def __init__(self, **kwargs):\n        self.pk_field = kwargs.pop('pk_field', None)\n        super(PrimaryKeyRelatedField, self).__init__(**kwargs)\n\n    def use_pk_only_optimization(self):\n        return True\n\n    def to_internal_value(self, data):\n        if self.pk_field is not None:\n            data = self.pk_field.to_internal_value(data)\n        try:\n            return self.get_queryset().get(pk=data)\n        except ObjectDoesNotExist:\n            self.fail('does_not_exist', pk_value=data)\n        except (TypeError, ValueError):\n            self.fail('incorrect_type', data_type=type(data).__name__)\n\n    def to_representation(self, value):\n        if self.pk_field is not None:\n            return self.pk_field.to_representation(value.pk)\n        return value.pk\n\n\nclass HyperlinkedRelatedField(RelatedField):\n    lookup_field = 'pk'\n    view_name = None\n\n    default_error_messages = {\n        'required': _('This field is required.'),\n        'no_match': _('Invalid hyperlink - No URL match.'),\n        'incorrect_match': _('Invalid hyperlink - Incorrect URL match.'),\n        'does_not_exist': _('Invalid hyperlink - Object does not exist.'),\n        'incorrect_type': _('Incorrect type. Expected URL string, received {data_type}.'),\n    }\n\n    def __init__(self, view_name=None, **kwargs):\n        if view_name is not None:\n            self.view_name = view_name\n        assert self.view_name is not None, 'The `view_name` argument is required.'\n        self.lookup_field = kwargs.pop('lookup_field', self.lookup_field)\n        self.lookup_url_kwarg = kwargs.pop('lookup_url_kwarg', self.lookup_field)\n        self.format = kwargs.pop('format', None)\n\n        # We include this simply for dependency injection in tests.\n        # We can't add it as a class attributes or it would expect an\n        # implicit `self` argument to be passed.\n        self.reverse = reverse\n\n        super(HyperlinkedRelatedField, self).__init__(**kwargs)\n\n    def use_pk_only_optimization(self):\n        return self.lookup_field == 'pk'\n\n    def get_object(self, view_name, view_args, view_kwargs):\n        \"\"\"\n        Return the object corresponding to a matched URL.\n\n        Takes the matched URL conf arguments, and should return an\n        object instance, or raise an `ObjectDoesNotExist` exception.\n        \"\"\"\n        lookup_value = view_kwargs[self.lookup_url_kwarg]\n        lookup_kwargs = {self.lookup_field: lookup_value}\n        return self.get_queryset().get(**lookup_kwargs)\n\n    def get_url(self, obj, view_name, request, format):\n        \"\"\"\n        Given an object, return the URL that hyperlinks to the object.\n\n        May raise a `NoReverseMatch` if the `view_name` and `lookup_field`\n        attributes are not configured to correctly match the URL conf.\n        \"\"\"\n        # Unsaved objects will not yet have a valid URL.\n        if hasattr(obj, 'pk') and obj.pk in (None, ''):\n            return None\n\n        lookup_value = getattr(obj, self.lookup_field)\n        kwargs = {self.lookup_url_kwarg: lookup_value}\n        return self.reverse(view_name, kwargs=kwargs, request=request, format=format)\n\n    def to_internal_value(self, data):\n        request = self.context.get('request', None)\n        try:\n            http_prefix = data.startswith(('http:', 'https:'))\n        except AttributeError:\n            self.fail('incorrect_type', data_type=type(data).__name__)\n\n        if http_prefix:\n            # If needed convert absolute URLs to relative path\n            data = urlparse.urlparse(data).path\n            prefix = get_script_prefix()\n            if data.startswith(prefix):\n                data = '/' + data[len(prefix):]\n\n        data = uri_to_iri(data)\n\n        try:\n            match = resolve(data)\n        except Resolver404:\n            self.fail('no_match')\n\n        try:\n            expected_viewname = request.versioning_scheme.get_versioned_viewname(\n                self.view_name, request\n            )\n        except AttributeError:\n            expected_viewname = self.view_name\n\n        if match.view_name != expected_viewname:\n            self.fail('incorrect_match')\n\n        try:\n            return self.get_object(match.view_name, match.args, match.kwargs)\n        except (ObjectDoesNotExist, TypeError, ValueError):\n            self.fail('does_not_exist')\n\n    def to_representation(self, value):\n        assert 'request' in self.context, (\n            \"`%s` requires the request in the serializer\"\n            \" context. Add `context={'request': request}` when instantiating \"\n            \"the serializer.\" % self.__class__.__name__\n        )\n\n        request = self.context['request']\n        format = self.context.get('format', None)\n\n        # By default use whatever format is given for the current context\n        # unless the target is a different type to the source.\n        #\n        # Eg. Consider a HyperlinkedIdentityField pointing from a json\n        # representation to an html property of that representation...\n        #\n        # '/snippets/1/' should link to '/snippets/1/highlight/'\n        # ...but...\n        # '/snippets/1/.json' should link to '/snippets/1/highlight/.html'\n        if format and self.format and self.format != format:\n            format = self.format\n\n        # Return the hyperlink, or error if incorrectly configured.\n        try:\n            url = self.get_url(value, self.view_name, request, format)\n        except NoReverseMatch:\n            msg = (\n                'Could not resolve URL for hyperlinked relationship using '\n                'view name \"%s\". You may have failed to include the related '\n                'model in your API, or incorrectly configured the '\n                '`lookup_field` attribute on this field.'\n            )\n            if value in ('', None):\n                value_string = {'': 'the empty string', None: 'None'}[value]\n                msg += (\n                    \" WARNING: The value of the field on the model instance \"\n                    \"was %s, which may be why it didn't match any \"\n                    \"entries in your URL conf.\" % value_string\n                )\n            raise ImproperlyConfigured(msg % self.view_name)\n\n        if url is None:\n            return None\n\n        return Hyperlink(url, value)\n\n\nclass HyperlinkedIdentityField(HyperlinkedRelatedField):\n    \"\"\"\n    A read-only field that represents the identity URL for an object, itself.\n\n    This is in contrast to `HyperlinkedRelatedField` which represents the\n    URL of relationships to other objects.\n    \"\"\"\n\n    def __init__(self, view_name=None, **kwargs):\n        assert view_name is not None, 'The `view_name` argument is required.'\n        kwargs['read_only'] = True\n        kwargs['source'] = '*'\n        super(HyperlinkedIdentityField, self).__init__(view_name, **kwargs)\n\n    def use_pk_only_optimization(self):\n        # We have the complete object instance already. We don't need\n        # to run the 'only get the pk for this relationship' code.\n        return False\n\n\nclass SlugRelatedField(RelatedField):\n    \"\"\"\n    A read-write field that represents the target of the relationship\n    by a unique 'slug' attribute.\n    \"\"\"\n    default_error_messages = {\n        'does_not_exist': _('Object with {slug_name}={value} does not exist.'),\n        'invalid': _('Invalid value.'),\n    }\n\n    def __init__(self, slug_field=None, **kwargs):\n        assert slug_field is not None, 'The `slug_field` argument is required.'\n        self.slug_field = slug_field\n        super(SlugRelatedField, self).__init__(**kwargs)\n\n    def to_internal_value(self, data):\n        try:\n            return self.get_queryset().get(**{self.slug_field: data})\n        except ObjectDoesNotExist:\n            self.fail('does_not_exist', slug_name=self.slug_field, value=smart_text(data))\n        except (TypeError, ValueError):\n            self.fail('invalid')\n\n    def to_representation(self, obj):\n        return getattr(obj, self.slug_field)\n\n\nclass ManyRelatedField(Field):\n    \"\"\"\n    Relationships with `many=True` transparently get coerced into instead being\n    a ManyRelatedField with a child relationship.\n\n    The `ManyRelatedField` class is responsible for handling iterating through\n    the values and passing each one to the child relationship.\n\n    This class is treated as private API.\n    You shouldn't generally need to be using this class directly yourself,\n    and should instead simply set 'many=True' on the relationship.\n    \"\"\"\n    initial = []\n    default_empty_html = []\n    default_error_messages = {\n        'not_a_list': _('Expected a list of items but got type \"{input_type}\".'),\n        'empty': _('This list may not be empty.')\n    }\n    html_cutoff = None\n    html_cutoff_text = None\n\n    def __init__(self, child_relation=None, *args, **kwargs):\n        self.child_relation = child_relation\n        self.allow_empty = kwargs.pop('allow_empty', True)\n\n        cutoff_from_settings = api_settings.HTML_SELECT_CUTOFF\n        if cutoff_from_settings is not None:\n            cutoff_from_settings = int(cutoff_from_settings)\n        self.html_cutoff = kwargs.pop('html_cutoff', cutoff_from_settings)\n\n        self.html_cutoff_text = kwargs.pop(\n            'html_cutoff_text',\n            self.html_cutoff_text or _(api_settings.HTML_SELECT_CUTOFF_TEXT)\n        )\n        assert child_relation is not None, '`child_relation` is a required argument.'\n        super(ManyRelatedField, self).__init__(*args, **kwargs)\n        self.child_relation.bind(field_name='', parent=self)\n\n    def get_value(self, dictionary):\n        # We override the default field access in order to support\n        # lists in HTML forms.\n        if html.is_html_input(dictionary):\n            # Don't return [] if the update is partial\n            if self.field_name not in dictionary:\n                if getattr(self.root, 'partial', False):\n                    return empty\n            return dictionary.getlist(self.field_name)\n\n        return dictionary.get(self.field_name, empty)\n\n    def to_internal_value(self, data):\n        if isinstance(data, type('')) or not hasattr(data, '__iter__'):\n            self.fail('not_a_list', input_type=type(data).__name__)\n        if not self.allow_empty and len(data) == 0:\n            self.fail('empty')\n\n        return [\n            self.child_relation.to_internal_value(item)\n            for item in data\n        ]\n\n    def get_attribute(self, instance):\n        # Can't have any relationships if not created\n        if hasattr(instance, 'pk') and instance.pk is None:\n            return []\n\n        relationship = get_attribute(instance, self.source_attrs)\n        return relationship.all() if hasattr(relationship, 'all') else relationship\n\n    def to_representation(self, iterable):\n        return [\n            self.child_relation.to_representation(value)\n            for value in iterable\n        ]\n\n    def get_choices(self, cutoff=None):\n        return self.child_relation.get_choices(cutoff)\n\n    @property\n    def choices(self):\n        return self.get_choices()\n\n    @property\n    def grouped_choices(self):\n        return self.choices\n\n    def iter_options(self):\n        return iter_options(\n            self.get_choices(cutoff=self.html_cutoff),\n            cutoff=self.html_cutoff,\n            cutoff_text=self.html_cutoff_text\n        )\n"
  },
  {
    "path": "jet_django/deps/rest_framework/renderers.py",
    "content": "\"\"\"\nRenderers are used to serialize a response into specific media types.\n\nThey give us a generic way of being able to handle various media types\non the response, such as JSON encoded data or HTML output.\n\nREST framework also provides an HTML renderer that renders the browsable API.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport base64\nfrom collections import OrderedDict\n\nfrom django import forms\nfrom django.conf import settings\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.paginator import Page\nfrom django.http.multipartparser import parse_header\nfrom django.template import engines, loader\nfrom django.test.client import encode_multipart\nfrom django.utils import six\nfrom django.utils.html import mark_safe\n\nfrom jet_django.deps.rest_framework import VERSION, exceptions, serializers, status\nfrom jet_django.deps.rest_framework.compat import (\n    INDENT_SEPARATORS, LONG_SEPARATORS, SHORT_SEPARATORS, coreapi,\n    pygments_css\n)\nfrom jet_django.deps.rest_framework.exceptions import ParseError\nfrom jet_django.deps.rest_framework.request import is_form_media_type, override_method\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import encoders, json\nfrom jet_django.deps.rest_framework.utils.breadcrumbs import get_breadcrumbs\nfrom jet_django.deps.rest_framework.utils.field_mapping import ClassLookupDict\n\n\ndef zero_as_none(value):\n    return None if value == 0 else value\n\n\nclass BaseRenderer(object):\n    \"\"\"\n    All renderers should extend this class, setting the `media_type`\n    and `format` attributes, and override the `.render()` method.\n    \"\"\"\n    media_type = None\n    format = None\n    charset = 'utf-8'\n    render_style = 'text'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        raise NotImplementedError('Renderer class requires .render() to be implemented')\n\n\nclass JSONRenderer(BaseRenderer):\n    \"\"\"\n    Renderer which serializes to JSON.\n    \"\"\"\n    media_type = 'application/json'\n    format = 'json'\n    encoder_class = encoders.JSONEncoder\n    ensure_ascii = not api_settings.UNICODE_JSON\n    compact = api_settings.COMPACT_JSON\n    strict = api_settings.STRICT_JSON\n\n    # We don't set a charset because JSON is a binary encoding,\n    # that can be encoded as utf-8, utf-16 or utf-32.\n    # See: https://www.ietf.org/rfc/rfc4627.txt\n    # Also: http://lucumr.pocoo.org/2013/7/19/application-mimetypes-and-encodings/\n    charset = None\n\n    def get_indent(self, accepted_media_type, renderer_context):\n        if accepted_media_type:\n            # If the media type looks like 'application/json; indent=4',\n            # then pretty print the result.\n            # Note that we coerce `indent=0` into `indent=None`.\n            base_media_type, params = parse_header(accepted_media_type.encode('ascii'))\n            try:\n                return zero_as_none(max(min(int(params['indent']), 8), 0))\n            except (KeyError, ValueError, TypeError):\n                pass\n\n        # If 'indent' is provided in the context, then pretty print the result.\n        # E.g. If we're being called by the BrowsableAPIRenderer.\n        return renderer_context.get('indent', None)\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        \"\"\"\n        Render `data` into JSON, returning a bytestring.\n        \"\"\"\n        if data is None:\n            return bytes()\n\n        renderer_context = renderer_context or {}\n        indent = self.get_indent(accepted_media_type, renderer_context)\n\n        if indent is None:\n            separators = SHORT_SEPARATORS if self.compact else LONG_SEPARATORS\n        else:\n            separators = INDENT_SEPARATORS\n\n        ret = json.dumps(\n            data, cls=self.encoder_class,\n            indent=indent, ensure_ascii=self.ensure_ascii,\n            allow_nan=not self.strict, separators=separators\n        )\n\n        # On python 2.x json.dumps() returns bytestrings if ensure_ascii=True,\n        # but if ensure_ascii=False, the return type is underspecified,\n        # and may (or may not) be unicode.\n        # On python 3.x json.dumps() returns unicode strings.\n        if isinstance(ret, six.text_type):\n            # We always fully escape \\u2028 and \\u2029 to ensure we output JSON\n            # that is a strict javascript subset. If bytes were returned\n            # by json.dumps() then we don't have these characters in any case.\n            # See: http://timelessrepo.com/json-isnt-a-javascript-subset\n            ret = ret.replace('\\u2028', '\\\\u2028').replace('\\u2029', '\\\\u2029')\n            return bytes(ret.encode('utf-8'))\n        return ret\n\n\nclass TemplateHTMLRenderer(BaseRenderer):\n    \"\"\"\n    An HTML renderer for use with templates.\n\n    The data supplied to the Response object should be a dictionary that will\n    be used as context for the template.\n\n    The template name is determined by (in order of preference):\n\n    1. An explicit `.template_name` attribute set on the response.\n    2. An explicit `.template_name` attribute set on this class.\n    3. The return result of calling `view.get_template_names()`.\n\n    For example:\n        data = {'users': User.objects.all()}\n        return Response(data, template_name='users.html')\n\n    For pre-rendered HTML, see StaticHTMLRenderer.\n    \"\"\"\n    media_type = 'text/html'\n    format = 'html'\n    template_name = None\n    exception_template_names = [\n        '%(status_code)s.html',\n        'api_exception.html'\n    ]\n    charset = 'utf-8'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        \"\"\"\n        Renders data to HTML, using Django's standard template rendering.\n\n        The template name is determined by (in order of preference):\n\n        1. An explicit .template_name set on the response.\n        2. An explicit .template_name set on this class.\n        3. The return result of calling view.get_template_names().\n        \"\"\"\n        renderer_context = renderer_context or {}\n        view = renderer_context['view']\n        request = renderer_context['request']\n        response = renderer_context['response']\n\n        if response.exception:\n            template = self.get_exception_template(response)\n        else:\n            template_names = self.get_template_names(response, view)\n            template = self.resolve_template(template_names)\n\n        if hasattr(self, 'resolve_context'):\n            # Fallback for older versions.\n            context = self.resolve_context(data, request, response)\n        else:\n            context = self.get_template_context(data, renderer_context)\n        return template.render(context, request=request)\n\n    def resolve_template(self, template_names):\n        return loader.select_template(template_names)\n\n    def get_template_context(self, data, renderer_context):\n        response = renderer_context['response']\n        if response.exception:\n            data['status_code'] = response.status_code\n        return data\n\n    def get_template_names(self, response, view):\n        if response.template_name:\n            return [response.template_name]\n        elif self.template_name:\n            return [self.template_name]\n        elif hasattr(view, 'get_template_names'):\n            return view.get_template_names()\n        elif hasattr(view, 'template_name'):\n            return [view.template_name]\n        raise ImproperlyConfigured(\n            'Returned a template response with no `template_name` attribute set on either the view or response'\n        )\n\n    def get_exception_template(self, response):\n        template_names = [name % {'status_code': response.status_code}\n                          for name in self.exception_template_names]\n\n        try:\n            # Try to find an appropriate error template\n            return self.resolve_template(template_names)\n        except Exception:\n            # Fall back to using eg '404 Not Found'\n            body = '%d %s' % (response.status_code, response.status_text.title())\n            template = engines['django'].from_string(body)\n            return template\n\n\n# Note, subclass TemplateHTMLRenderer simply for the exception behavior\nclass StaticHTMLRenderer(TemplateHTMLRenderer):\n    \"\"\"\n    An HTML renderer class that simply returns pre-rendered HTML.\n\n    The data supplied to the Response object should be a string representing\n    the pre-rendered HTML content.\n\n    For example:\n        data = '<html><body>example</body></html>'\n        return Response(data)\n\n    For template rendered HTML, see TemplateHTMLRenderer.\n    \"\"\"\n    media_type = 'text/html'\n    format = 'html'\n    charset = 'utf-8'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        renderer_context = renderer_context or {}\n        response = renderer_context.get('response')\n\n        if response and response.exception:\n            request = renderer_context['request']\n            template = self.get_exception_template(response)\n            if hasattr(self, 'resolve_context'):\n                context = self.resolve_context(data, request, response)\n            else:\n                context = self.get_template_context(data, renderer_context)\n            return template.render(context, request=request)\n\n        return data\n\n\nclass HTMLFormRenderer(BaseRenderer):\n    \"\"\"\n    Renderers serializer data into an HTML form.\n\n    If the serializer was instantiated without an object then this will\n    return an HTML form not bound to any object,\n    otherwise it will return an HTML form with the appropriate initial data\n    populated from the object.\n\n    Note that rendering of field and form errors is not currently supported.\n    \"\"\"\n    media_type = 'text/html'\n    format = 'form'\n    charset = 'utf-8'\n    template_pack = 'jet_django.deps.rest_framework/vertical/'\n    base_template = 'form.html'\n\n    default_style = ClassLookupDict({\n        serializers.Field: {\n            'base_template': 'input.html',\n            'input_type': 'text'\n        },\n        serializers.EmailField: {\n            'base_template': 'input.html',\n            'input_type': 'email'\n        },\n        serializers.URLField: {\n            'base_template': 'input.html',\n            'input_type': 'url'\n        },\n        serializers.IntegerField: {\n            'base_template': 'input.html',\n            'input_type': 'number'\n        },\n        serializers.FloatField: {\n            'base_template': 'input.html',\n            'input_type': 'number'\n        },\n        serializers.DateTimeField: {\n            'base_template': 'input.html',\n            'input_type': 'datetime-local'\n        },\n        serializers.DateField: {\n            'base_template': 'input.html',\n            'input_type': 'date'\n        },\n        serializers.TimeField: {\n            'base_template': 'input.html',\n            'input_type': 'time'\n        },\n        serializers.FileField: {\n            'base_template': 'input.html',\n            'input_type': 'file'\n        },\n        serializers.BooleanField: {\n            'base_template': 'checkbox.html'\n        },\n        serializers.ChoiceField: {\n            'base_template': 'select.html',  # Also valid: 'radio.html'\n        },\n        serializers.MultipleChoiceField: {\n            'base_template': 'select_multiple.html',  # Also valid: 'checkbox_multiple.html'\n        },\n        serializers.RelatedField: {\n            'base_template': 'select.html',  # Also valid: 'radio.html'\n        },\n        serializers.ManyRelatedField: {\n            'base_template': 'select_multiple.html',  # Also valid: 'checkbox_multiple.html'\n        },\n        serializers.Serializer: {\n            'base_template': 'fieldset.html'\n        },\n        serializers.ListSerializer: {\n            'base_template': 'list_fieldset.html'\n        },\n        serializers.ListField: {\n            'base_template': 'list_field.html'\n        },\n        serializers.DictField: {\n            'base_template': 'dict_field.html'\n        },\n        serializers.FilePathField: {\n            'base_template': 'select.html',\n        },\n        serializers.JSONField: {\n            'base_template': 'textarea.html',\n        },\n    })\n\n    def render_field(self, field, parent_style):\n        if isinstance(field._field, serializers.HiddenField):\n            return ''\n\n        style = dict(self.default_style[field])\n        style.update(field.style)\n        if 'template_pack' not in style:\n            style['template_pack'] = parent_style.get('template_pack', self.template_pack)\n        style['renderer'] = self\n\n        # Get a clone of the field with text-only value representation.\n        field = field.as_form_field()\n\n        if style.get('input_type') == 'datetime-local' and isinstance(field.value, six.text_type):\n            field.value = field.value.rstrip('Z')\n\n        if 'template' in style:\n            template_name = style['template']\n        else:\n            template_name = style['template_pack'].strip('/') + '/' + style['base_template']\n\n        template = loader.get_template(template_name)\n        context = {'field': field, 'style': style}\n        return template.render(context)\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        \"\"\"\n        Render serializer data and return an HTML form, as a string.\n        \"\"\"\n        renderer_context = renderer_context or {}\n        form = data.serializer\n\n        style = renderer_context.get('style', {})\n        if 'template_pack' not in style:\n            style['template_pack'] = self.template_pack\n        style['renderer'] = self\n\n        template_pack = style['template_pack'].strip('/')\n        template_name = template_pack + '/' + self.base_template\n        template = loader.get_template(template_name)\n        context = {\n            'form': form,\n            'style': style\n        }\n        return template.render(context)\n\n\nclass BrowsableAPIRenderer(BaseRenderer):\n    \"\"\"\n    HTML renderer used to self-document the API.\n    \"\"\"\n    media_type = 'text/html'\n    format = 'api'\n    template = 'jet_django.deps.rest_framework/api.html'\n    filter_template = 'jet_django.deps.rest_framework/filters/base.html'\n    code_style = 'emacs'\n    charset = 'utf-8'\n    form_renderer_class = HTMLFormRenderer\n\n    def get_default_renderer(self, view):\n        \"\"\"\n        Return an instance of the first valid renderer.\n        (Don't use another documenting renderer.)\n        \"\"\"\n        renderers = [renderer for renderer in view.renderer_classes\n                     if not issubclass(renderer, BrowsableAPIRenderer)]\n        non_template_renderers = [renderer for renderer in renderers\n                                  if not hasattr(renderer, 'get_template_names')]\n\n        if not renderers:\n            return None\n        elif non_template_renderers:\n            return non_template_renderers[0]()\n        return renderers[0]()\n\n    def get_content(self, renderer, data,\n                    accepted_media_type, renderer_context):\n        \"\"\"\n        Get the content as if it had been rendered by the default\n        non-documenting renderer.\n        \"\"\"\n        if not renderer:\n            return '[No renderers were found]'\n\n        renderer_context['indent'] = 4\n        content = renderer.render(data, accepted_media_type, renderer_context)\n\n        render_style = getattr(renderer, 'render_style', 'text')\n        assert render_style in ['text', 'binary'], 'Expected .render_style ' \\\n            '\"text\" or \"binary\", but got \"%s\"' % render_style\n        if render_style == 'binary':\n            return '[%d bytes of binary content]' % len(content)\n\n        return content\n\n    def show_form_for_method(self, view, method, request, obj):\n        \"\"\"\n        Returns True if a form should be shown for this method.\n        \"\"\"\n        if method not in view.allowed_methods:\n            return  # Not a valid method\n\n        try:\n            view.check_permissions(request)\n            if obj is not None:\n                view.check_object_permissions(request, obj)\n        except exceptions.APIException:\n            return False  # Doesn't have permissions\n        return True\n\n    def _get_serializer(self, serializer_class, view_instance, request, *args, **kwargs):\n        kwargs['context'] = {\n            'request': request,\n            'format': self.format,\n            'view': view_instance\n        }\n        return serializer_class(*args, **kwargs)\n\n    def get_rendered_html_form(self, data, view, method, request):\n        \"\"\"\n        Return a string representing a rendered HTML form, possibly bound to\n        either the input or output data.\n\n        In the absence of the View having an associated form then return None.\n        \"\"\"\n        # See issue #2089 for refactoring this.\n        serializer = getattr(data, 'serializer', None)\n        if serializer and not getattr(serializer, 'many', False):\n            instance = getattr(serializer, 'instance', None)\n            if isinstance(instance, Page):\n                instance = None\n        else:\n            instance = None\n\n        # If this is valid serializer data, and the form is for the same\n        # HTTP method as was used in the request then use the existing\n        # serializer instance, rather than dynamically creating a new one.\n        if request.method == method and serializer is not None:\n            try:\n                kwargs = {'data': request.data}\n            except ParseError:\n                kwargs = {}\n            existing_serializer = serializer\n        else:\n            kwargs = {}\n            existing_serializer = None\n\n        with override_method(view, request, method) as request:\n            if not self.show_form_for_method(view, method, request, instance):\n                return\n\n            if method in ('DELETE', 'OPTIONS'):\n                return True  # Don't actually need to return a form\n\n            has_serializer = getattr(view, 'get_serializer', None)\n            has_serializer_class = getattr(view, 'serializer_class', None)\n\n            if (\n                (not has_serializer and not has_serializer_class) or\n                not any(is_form_media_type(parser.media_type) for parser in view.parser_classes)\n            ):\n                return\n\n            if existing_serializer is not None:\n                try:\n                    return self.render_form_for_serializer(existing_serializer)\n                except TypeError:\n                    pass\n\n            if has_serializer:\n                if method in ('PUT', 'PATCH'):\n                    serializer = view.get_serializer(instance=instance, **kwargs)\n                else:\n                    serializer = view.get_serializer(**kwargs)\n            else:\n                # at this point we must have a serializer_class\n                if method in ('PUT', 'PATCH'):\n                    serializer = self._get_serializer(view.serializer_class, view,\n                                                      request, instance=instance, **kwargs)\n                else:\n                    serializer = self._get_serializer(view.serializer_class, view,\n                                                      request, **kwargs)\n\n            return self.render_form_for_serializer(serializer)\n\n    def render_form_for_serializer(self, serializer):\n        if hasattr(serializer, 'initial_data'):\n            serializer.is_valid()\n\n        form_renderer = self.form_renderer_class()\n        return form_renderer.render(\n            serializer.data,\n            self.accepted_media_type,\n            {'style': {'template_pack': 'jet_django.deps.rest_framework/horizontal'}}\n        )\n\n    def get_raw_data_form(self, data, view, method, request):\n        \"\"\"\n        Returns a form that allows for arbitrary content types to be tunneled\n        via standard HTML forms.\n        (Which are typically application/x-www-form-urlencoded)\n        \"\"\"\n        # See issue #2089 for refactoring this.\n        serializer = getattr(data, 'serializer', None)\n        if serializer and not getattr(serializer, 'many', False):\n            instance = getattr(serializer, 'instance', None)\n            if isinstance(instance, Page):\n                instance = None\n        else:\n            instance = None\n\n        with override_method(view, request, method) as request:\n            # Check permissions\n            if not self.show_form_for_method(view, method, request, instance):\n                return\n\n            # If possible, serialize the initial content for the generic form\n            default_parser = view.parser_classes[0]\n            renderer_class = getattr(default_parser, 'renderer_class', None)\n            if hasattr(view, 'get_serializer') and renderer_class:\n                # View has a serializer defined and parser class has a\n                # corresponding renderer that can be used to render the data.\n\n                if method in ('PUT', 'PATCH'):\n                    serializer = view.get_serializer(instance=instance)\n                else:\n                    serializer = view.get_serializer()\n\n                # Render the raw data content\n                renderer = renderer_class()\n                accepted = self.accepted_media_type\n                context = self.renderer_context.copy()\n                context['indent'] = 4\n\n                # strip HiddenField from output\n                data = serializer.data.copy()\n                for name, field in serializer.fields.items():\n                    if isinstance(field, serializers.HiddenField):\n                        data.pop(name, None)\n                content = renderer.render(data, accepted, context)\n                # Renders returns bytes, but CharField expects a str.\n                content = content.decode('utf-8')\n            else:\n                content = None\n\n            # Generate a generic form that includes a content type field,\n            # and a content field.\n            media_types = [parser.media_type for parser in view.parser_classes]\n            choices = [(media_type, media_type) for media_type in media_types]\n            initial = media_types[0]\n\n            class GenericContentForm(forms.Form):\n                _content_type = forms.ChoiceField(\n                    label='Media type',\n                    choices=choices,\n                    initial=initial,\n                    widget=forms.Select(attrs={'data-override': 'content-type'})\n                )\n                _content = forms.CharField(\n                    label='Content',\n                    widget=forms.Textarea(attrs={'data-override': 'content'}),\n                    initial=content,\n                    required=False\n                )\n\n            return GenericContentForm()\n\n    def get_name(self, view):\n        return view.get_view_name()\n\n    def get_description(self, view, status_code):\n        if status_code in (status.HTTP_401_UNAUTHORIZED, status.HTTP_403_FORBIDDEN):\n            return ''\n        return view.get_view_description(html=True)\n\n    def get_breadcrumbs(self, request):\n        return get_breadcrumbs(request.path, request)\n\n    def get_filter_form(self, data, view, request):\n        if not hasattr(view, 'get_queryset') or not hasattr(view, 'filter_backends'):\n            return\n\n        # Infer if this is a list view or not.\n        paginator = getattr(view, 'paginator', None)\n        if isinstance(data, list):\n            pass\n        elif paginator is not None and data is not None:\n            try:\n                paginator.get_results(data)\n            except (TypeError, KeyError):\n                return\n        elif not isinstance(data, list):\n            return\n\n        queryset = view.get_queryset()\n        elements = []\n        for backend in view.filter_backends:\n            if hasattr(backend, 'to_html'):\n                html = backend().to_html(request, queryset, view)\n                if html:\n                    elements.append(html)\n\n        if not elements:\n            return\n\n        template = loader.get_template(self.filter_template)\n        context = {'elements': elements}\n        return template.render(context)\n\n    def get_context(self, data, accepted_media_type, renderer_context):\n        \"\"\"\n        Returns the context used to render.\n        \"\"\"\n        view = renderer_context['view']\n        request = renderer_context['request']\n        response = renderer_context['response']\n\n        renderer = self.get_default_renderer(view)\n\n        raw_data_post_form = self.get_raw_data_form(data, view, 'POST', request)\n        raw_data_put_form = self.get_raw_data_form(data, view, 'PUT', request)\n        raw_data_patch_form = self.get_raw_data_form(data, view, 'PATCH', request)\n        raw_data_put_or_patch_form = raw_data_put_form or raw_data_patch_form\n\n        response_headers = OrderedDict(sorted(response.items()))\n        renderer_content_type = ''\n        if renderer:\n            renderer_content_type = '%s' % renderer.media_type\n            if renderer.charset:\n                renderer_content_type += ' ;%s' % renderer.charset\n        response_headers['Content-Type'] = renderer_content_type\n\n        if getattr(view, 'paginator', None) and view.paginator.display_page_controls:\n            paginator = view.paginator\n        else:\n            paginator = None\n\n        csrf_cookie_name = settings.CSRF_COOKIE_NAME\n        csrf_header_name = settings.CSRF_HEADER_NAME\n        if csrf_header_name.startswith('HTTP_'):\n            csrf_header_name = csrf_header_name[5:]\n        csrf_header_name = csrf_header_name.replace('_', '-')\n\n        context = {\n            'content': self.get_content(renderer, data, accepted_media_type, renderer_context),\n            'code_style': pygments_css(self.code_style),\n            'view': view,\n            'request': request,\n            'response': response,\n            'user': request.user,\n            'description': self.get_description(view, response.status_code),\n            'name': self.get_name(view),\n            'version': VERSION,\n            'paginator': paginator,\n            'breadcrumblist': self.get_breadcrumbs(request),\n            'allowed_methods': view.allowed_methods,\n            'available_formats': [renderer_cls.format for renderer_cls in view.renderer_classes],\n            'response_headers': response_headers,\n\n            'put_form': self.get_rendered_html_form(data, view, 'PUT', request),\n            'post_form': self.get_rendered_html_form(data, view, 'POST', request),\n            'delete_form': self.get_rendered_html_form(data, view, 'DELETE', request),\n            'options_form': self.get_rendered_html_form(data, view, 'OPTIONS', request),\n\n            'filter_form': self.get_filter_form(data, view, request),\n\n            'raw_data_put_form': raw_data_put_form,\n            'raw_data_post_form': raw_data_post_form,\n            'raw_data_patch_form': raw_data_patch_form,\n            'raw_data_put_or_patch_form': raw_data_put_or_patch_form,\n\n            'display_edit_forms': bool(response.status_code != 403),\n\n            'api_settings': api_settings,\n            'csrf_cookie_name': csrf_cookie_name,\n            'csrf_header_name': csrf_header_name\n        }\n        return context\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        \"\"\"\n        Render the HTML for the browsable API representation.\n        \"\"\"\n        self.accepted_media_type = accepted_media_type or ''\n        self.renderer_context = renderer_context or {}\n\n        template = loader.get_template(self.template)\n        context = self.get_context(data, accepted_media_type, renderer_context)\n        ret = template.render(context, request=renderer_context['request'])\n\n        # Munge DELETE Response code to allow us to return content\n        # (Do this *after* we've rendered the template so that we include\n        # the normal deletion response code in the output)\n        response = renderer_context['response']\n        if response.status_code == status.HTTP_204_NO_CONTENT:\n            response.status_code = status.HTTP_200_OK\n\n        return ret\n\n\nclass AdminRenderer(BrowsableAPIRenderer):\n    template = 'jet_django.deps.rest_framework/admin.html'\n    format = 'admin'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        self.accepted_media_type = accepted_media_type or ''\n        self.renderer_context = renderer_context or {}\n\n        response = renderer_context['response']\n        request = renderer_context['request']\n        view = self.renderer_context['view']\n\n        if response.status_code == status.HTTP_400_BAD_REQUEST:\n            # Errors still need to display the list or detail information.\n            # The only way we can get at that is to simulate a GET request.\n            self.error_form = self.get_rendered_html_form(data, view, request.method, request)\n            self.error_title = {'POST': 'Create', 'PUT': 'Edit'}.get(request.method, 'Errors')\n\n            with override_method(view, request, 'GET') as request:\n                response = view.get(request, *view.args, **view.kwargs)\n            data = response.data\n\n        template = loader.get_template(self.template)\n        context = self.get_context(data, accepted_media_type, renderer_context)\n        ret = template.render(context, request=renderer_context['request'])\n\n        # Creation and deletion should use redirects in the admin style.\n        if response.status_code == status.HTTP_201_CREATED and 'Location' in response:\n            response.status_code = status.HTTP_303_SEE_OTHER\n            response['Location'] = request.build_absolute_uri()\n            ret = ''\n\n        if response.status_code == status.HTTP_204_NO_CONTENT:\n            response.status_code = status.HTTP_303_SEE_OTHER\n            try:\n                # Attempt to get the parent breadcrumb URL.\n                response['Location'] = self.get_breadcrumbs(request)[-2][1]\n            except KeyError:\n                # Otherwise reload current URL to get a 'Not Found' page.\n                response['Location'] = request.full_path\n            ret = ''\n\n        return ret\n\n    def get_context(self, data, accepted_media_type, renderer_context):\n        \"\"\"\n        Render the HTML for the browsable API representation.\n        \"\"\"\n        context = super(AdminRenderer, self).get_context(\n            data, accepted_media_type, renderer_context\n        )\n\n        paginator = getattr(context['view'], 'paginator', None)\n        if paginator is not None and data is not None:\n            try:\n                results = paginator.get_results(data)\n            except (TypeError, KeyError):\n                results = data\n        else:\n            results = data\n\n        if results is None:\n            header = {}\n            style = 'detail'\n        elif isinstance(results, list):\n            header = results[0] if results else {}\n            style = 'list'\n        else:\n            header = results\n            style = 'detail'\n\n        columns = [key for key in header if key != 'url']\n        details = [key for key in header if key != 'url']\n\n        context['style'] = style\n        context['columns'] = columns\n        context['details'] = details\n        context['results'] = results\n        context['error_form'] = getattr(self, 'error_form', None)\n        context['error_title'] = getattr(self, 'error_title', None)\n        return context\n\n\nclass DocumentationRenderer(BaseRenderer):\n    media_type = 'text/html'\n    format = 'html'\n    charset = 'utf-8'\n    template = 'jet_django.deps.rest_framework/docs/index.html'\n    error_template = 'jet_django.deps.rest_framework/docs/error.html'\n    code_style = 'emacs'\n    languages = ['shell', 'javascript', 'python']\n\n    def get_context(self, data, request):\n        return {\n            'document': data,\n            'langs': self.languages,\n            'lang_htmls': [\"rest_framework/docs/langs/%s.html\" % l for l in self.languages],\n            'lang_intro_htmls': [\"rest_framework/docs/langs/%s-intro.html\" % l for l in self.languages],\n            'code_style': pygments_css(self.code_style),\n            'request': request\n        }\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        if isinstance(data, coreapi.Document):\n            template = loader.get_template(self.template)\n            context = self.get_context(data, renderer_context['request'])\n            return template.render(context, request=renderer_context['request'])\n        else:\n            template = loader.get_template(self.error_template)\n            context = {\n                \"data\": data,\n                \"request\": renderer_context['request'],\n                \"response\": renderer_context['response'],\n                \"debug\": settings.DEBUG,\n            }\n            return template.render(context, request=renderer_context['request'])\n\n\nclass SchemaJSRenderer(BaseRenderer):\n    media_type = 'application/javascript'\n    format = 'javascript'\n    charset = 'utf-8'\n    template = 'jet_django.deps.rest_framework/schema.js'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        codec = coreapi.codecs.CoreJSONCodec()\n        schema = base64.b64encode(codec.encode(data)).decode('ascii')\n\n        template = loader.get_template(self.template)\n        context = {'schema': mark_safe(schema)}\n        request = renderer_context['request']\n        return template.render(context, request=request)\n\n\nclass MultiPartRenderer(BaseRenderer):\n    media_type = 'multipart/form-data; boundary=BoUnDaRyStRiNg'\n    format = 'multipart'\n    charset = 'utf-8'\n    BOUNDARY = 'BoUnDaRyStRiNg'\n\n    def render(self, data, accepted_media_type=None, renderer_context=None):\n        if hasattr(data, 'items'):\n            for key, value in data.items():\n                assert not isinstance(value, dict), (\n                    \"Test data contained a dictionary value for key '%s', \"\n                    \"but multipart uploads do not support nested data. \"\n                    \"You may want to consider using format='json' in this \"\n                    \"test case.\" % key\n                )\n        return encode_multipart(self.BOUNDARY, data)\n\n\nclass CoreJSONRenderer(BaseRenderer):\n    media_type = 'application/coreapi+json'\n    charset = None\n    format = 'corejson'\n\n    def __init__(self):\n        assert coreapi, 'Using CoreJSONRenderer, but `coreapi` is not installed.'\n\n    def render(self, data, media_type=None, renderer_context=None):\n        indent = bool(renderer_context.get('indent', 0))\n        codec = coreapi.codecs.CoreJSONCodec()\n        return codec.dump(data, indent=indent)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/request.py",
    "content": "\"\"\"\nThe Request class is used as a wrapper around the standard request object.\n\nThe wrapped request then offers a richer API, in particular :\n\n    - content automatically parsed according to `Content-Type` header,\n      and available as `request.data`\n    - full support of PUT method, including support for file uploads\n    - form overloading of HTTP method, content type and content\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport sys\nfrom contextlib import contextmanager\n\nfrom django.conf import settings\nfrom django.http import HttpRequest, QueryDict\nfrom django.http.multipartparser import parse_header\nfrom django.http.request import RawPostDataException\nfrom django.utils import six\nfrom django.utils.datastructures import MultiValueDict\n\nfrom jet_django.deps.rest_framework import HTTP_HEADER_ENCODING, exceptions\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\ndef is_form_media_type(media_type):\n    \"\"\"\n    Return True if the media type is a valid form media type.\n    \"\"\"\n    base_media_type, params = parse_header(media_type.encode(HTTP_HEADER_ENCODING))\n    return (base_media_type == 'application/x-www-form-urlencoded' or\n            base_media_type == 'multipart/form-data')\n\n\nclass override_method(object):\n    \"\"\"\n    A context manager that temporarily overrides the method on a request,\n    additionally setting the `view.request` attribute.\n\n    Usage:\n\n        with override_method(view, request, 'POST') as request:\n            ... # Do stuff with `view` and `request`\n    \"\"\"\n\n    def __init__(self, view, request, method):\n        self.view = view\n        self.request = request\n        self.method = method\n        self.action = getattr(view, 'action', None)\n\n    def __enter__(self):\n        self.view.request = clone_request(self.request, self.method)\n        # For viewsets we also set the `.action` attribute.\n        action_map = getattr(self.view, 'action_map', {})\n        self.view.action = action_map.get(self.method.lower())\n        return self.view.request\n\n    def __exit__(self, *args, **kwarg):\n        self.view.request = self.request\n        self.view.action = self.action\n\n\nclass WrappedAttributeError(Exception):\n    pass\n\n\n@contextmanager\ndef wrap_attributeerrors():\n    \"\"\"\n    Used to re-raise AttributeErrors caught during authentication, preventing\n    these errors from otherwise being handled by the attribute access protocol.\n    \"\"\"\n    try:\n        yield\n    except AttributeError:\n        info = sys.exc_info()\n        exc = WrappedAttributeError(str(info[1]))\n        six.reraise(type(exc), exc, info[2])\n\n\nclass Empty(object):\n    \"\"\"\n    Placeholder for unset attributes.\n    Cannot use `None`, as that may be a valid value.\n    \"\"\"\n    pass\n\n\ndef _hasattr(obj, name):\n    return not getattr(obj, name) is Empty\n\n\ndef clone_request(request, method):\n    \"\"\"\n    Internal helper method to clone a request, replacing with a different\n    HTTP method.  Used for checking permissions against other methods.\n    \"\"\"\n    ret = Request(request=request._request,\n                  parsers=request.parsers,\n                  authenticators=request.authenticators,\n                  negotiator=request.negotiator,\n                  parser_context=request.parser_context)\n    ret._data = request._data\n    ret._files = request._files\n    ret._full_data = request._full_data\n    ret._content_type = request._content_type\n    ret._stream = request._stream\n    ret.method = method\n    if hasattr(request, '_user'):\n        ret._user = request._user\n    if hasattr(request, '_auth'):\n        ret._auth = request._auth\n    if hasattr(request, '_authenticator'):\n        ret._authenticator = request._authenticator\n    if hasattr(request, 'accepted_renderer'):\n        ret.accepted_renderer = request.accepted_renderer\n    if hasattr(request, 'accepted_media_type'):\n        ret.accepted_media_type = request.accepted_media_type\n    if hasattr(request, 'version'):\n        ret.version = request.version\n    if hasattr(request, 'versioning_scheme'):\n        ret.versioning_scheme = request.versioning_scheme\n    return ret\n\n\nclass ForcedAuthentication(object):\n    \"\"\"\n    This authentication class is used if the test client or request factory\n    forcibly authenticated the request.\n    \"\"\"\n\n    def __init__(self, force_user, force_token):\n        self.force_user = force_user\n        self.force_token = force_token\n\n    def authenticate(self, request):\n        return (self.force_user, self.force_token)\n\n\nclass Request(object):\n    \"\"\"\n    Wrapper allowing to enhance a standard `HttpRequest` instance.\n\n    Kwargs:\n        - request(HttpRequest). The original request instance.\n        - parsers_classes(list/tuple). The parsers to use for parsing the\n          request content.\n        - authentication_classes(list/tuple). The authentications used to try\n          authenticating the request's user.\n    \"\"\"\n\n    def __init__(self, request, parsers=None, authenticators=None,\n                 negotiator=None, parser_context=None):\n        assert isinstance(request, HttpRequest), (\n            'The `request` argument must be an instance of '\n            '`django.http.HttpRequest`, not `{}.{}`.'\n            .format(request.__class__.__module__, request.__class__.__name__)\n        )\n\n        self._request = request\n        self.parsers = parsers or ()\n        self.authenticators = authenticators or ()\n        self.negotiator = negotiator or self._default_negotiator()\n        self.parser_context = parser_context\n        self._data = Empty\n        self._files = Empty\n        self._full_data = Empty\n        self._content_type = Empty\n        self._stream = Empty\n\n        if self.parser_context is None:\n            self.parser_context = {}\n        self.parser_context['request'] = self\n        self.parser_context['encoding'] = request.encoding or settings.DEFAULT_CHARSET\n\n        force_user = getattr(request, '_force_auth_user', None)\n        force_token = getattr(request, '_force_auth_token', None)\n        if force_user is not None or force_token is not None:\n            forced_auth = ForcedAuthentication(force_user, force_token)\n            self.authenticators = (forced_auth,)\n\n    def _default_negotiator(self):\n        return api_settings.DEFAULT_CONTENT_NEGOTIATION_CLASS()\n\n    @property\n    def content_type(self):\n        meta = self._request.META\n        return meta.get('CONTENT_TYPE', meta.get('HTTP_CONTENT_TYPE', ''))\n\n    @property\n    def stream(self):\n        \"\"\"\n        Returns an object that may be used to stream the request content.\n        \"\"\"\n        if not _hasattr(self, '_stream'):\n            self._load_stream()\n        return self._stream\n\n    @property\n    def query_params(self):\n        \"\"\"\n        More semantically correct name for request.GET.\n        \"\"\"\n        return self._request.GET\n\n    @property\n    def data(self):\n        if not _hasattr(self, '_full_data'):\n            self._load_data_and_files()\n        return self._full_data\n\n    @property\n    def user(self):\n        \"\"\"\n        Returns the user associated with the current request, as authenticated\n        by the authentication classes provided to the request.\n        \"\"\"\n        if not hasattr(self, '_user'):\n            with wrap_attributeerrors():\n                self._authenticate()\n        return self._user\n\n    @user.setter\n    def user(self, value):\n        \"\"\"\n        Sets the user on the current request. This is necessary to maintain\n        compatibility with django.contrib.auth where the user property is\n        set in the login and logout functions.\n\n        Note that we also set the user on Django's underlying `HttpRequest`\n        instance, ensuring that it is available to any middleware in the stack.\n        \"\"\"\n        self._user = value\n        self._request.user = value\n\n    @property\n    def auth(self):\n        \"\"\"\n        Returns any non-user authentication information associated with the\n        request, such as an authentication token.\n        \"\"\"\n        if not hasattr(self, '_auth'):\n            with wrap_attributeerrors():\n                self._authenticate()\n        return self._auth\n\n    @auth.setter\n    def auth(self, value):\n        \"\"\"\n        Sets any non-user authentication information associated with the\n        request, such as an authentication token.\n        \"\"\"\n        self._auth = value\n        self._request.auth = value\n\n    @property\n    def successful_authenticator(self):\n        \"\"\"\n        Return the instance of the authentication instance class that was used\n        to authenticate the request, or `None`.\n        \"\"\"\n        if not hasattr(self, '_authenticator'):\n            with wrap_attributeerrors():\n                self._authenticate()\n        return self._authenticator\n\n    def _load_data_and_files(self):\n        \"\"\"\n        Parses the request content into `self.data`.\n        \"\"\"\n        if not _hasattr(self, '_data'):\n            self._data, self._files = self._parse()\n            if self._files:\n                self._full_data = self._data.copy()\n                self._full_data.update(self._files)\n            else:\n                self._full_data = self._data\n\n            # if a form media type, copy data & files refs to the underlying\n            # http request so that closable objects are handled appropriately.\n            if is_form_media_type(self.content_type):\n                self._request._post = self.POST\n                self._request._files = self.FILES\n\n    def _load_stream(self):\n        \"\"\"\n        Return the content body of the request, as a stream.\n        \"\"\"\n        meta = self._request.META\n        try:\n            content_length = int(\n                meta.get('CONTENT_LENGTH', meta.get('HTTP_CONTENT_LENGTH', 0))\n            )\n        except (ValueError, TypeError):\n            content_length = 0\n\n        if content_length == 0:\n            self._stream = None\n        elif not self._request._read_started:\n            self._stream = self._request\n        else:\n            self._stream = six.BytesIO(self.body)\n\n    def _supports_form_parsing(self):\n        \"\"\"\n        Return True if this requests supports parsing form data.\n        \"\"\"\n        form_media = (\n            'application/x-www-form-urlencoded',\n            'multipart/form-data'\n        )\n        return any([parser.media_type in form_media for parser in self.parsers])\n\n    def _parse(self):\n        \"\"\"\n        Parse the request content, returning a two-tuple of (data, files)\n\n        May raise an `UnsupportedMediaType`, or `ParseError` exception.\n        \"\"\"\n        media_type = self.content_type\n        try:\n            stream = self.stream\n        except RawPostDataException:\n            if not hasattr(self._request, '_post'):\n                raise\n            # If request.POST has been accessed in middleware, and a method='POST'\n            # request was made with 'multipart/form-data', then the request stream\n            # will already have been exhausted.\n            if self._supports_form_parsing():\n                return (self._request.POST, self._request.FILES)\n            stream = None\n\n        if stream is None or media_type is None:\n            if media_type and is_form_media_type(media_type):\n                empty_data = QueryDict('', encoding=self._request._encoding)\n            else:\n                empty_data = {}\n            empty_files = MultiValueDict()\n            return (empty_data, empty_files)\n\n        parser = self.negotiator.select_parser(self, self.parsers)\n\n        if not parser:\n            raise exceptions.UnsupportedMediaType(media_type)\n\n        try:\n            parsed = parser.parse(stream, media_type, self.parser_context)\n        except Exception:\n            # If we get an exception during parsing, fill in empty data and\n            # re-raise.  Ensures we don't simply repeat the error when\n            # attempting to render the browsable renderer response, or when\n            # logging the request or similar.\n            self._data = QueryDict('', encoding=self._request._encoding)\n            self._files = MultiValueDict()\n            self._full_data = self._data\n            raise\n\n        # Parser classes may return the raw data, or a\n        # DataAndFiles object.  Unpack the result as required.\n        try:\n            return (parsed.data, parsed.files)\n        except AttributeError:\n            empty_files = MultiValueDict()\n            return (parsed, empty_files)\n\n    def _authenticate(self):\n        \"\"\"\n        Attempt to authenticate the request using each authentication instance\n        in turn.\n        \"\"\"\n        for authenticator in self.authenticators:\n            try:\n                user_auth_tuple = authenticator.authenticate(self)\n            except exceptions.APIException:\n                self._not_authenticated()\n                raise\n\n            if user_auth_tuple is not None:\n                self._authenticator = authenticator\n                self.user, self.auth = user_auth_tuple\n                return\n\n        self._not_authenticated()\n\n    def _not_authenticated(self):\n        \"\"\"\n        Set authenticator, user & authtoken representing an unauthenticated request.\n\n        Defaults are None, AnonymousUser & None.\n        \"\"\"\n        self._authenticator = None\n\n        if api_settings.UNAUTHENTICATED_USER:\n            self.user = api_settings.UNAUTHENTICATED_USER()\n        else:\n            self.user = None\n\n        if api_settings.UNAUTHENTICATED_TOKEN:\n            self.auth = api_settings.UNAUTHENTICATED_TOKEN()\n        else:\n            self.auth = None\n\n    def __getattr__(self, attr):\n        \"\"\"\n        If an attribute does not exist on this instance, then we also attempt\n        to proxy it to the underlying HttpRequest object.\n        \"\"\"\n        try:\n            return getattr(self._request, attr)\n        except AttributeError:\n            return self.__getattribute__(attr)\n\n    @property\n    def DATA(self):\n        raise NotImplementedError(\n            '`request.DATA` has been deprecated in favor of `request.data` '\n            'since version 3.0, and has been fully removed as of version 3.2.'\n        )\n\n    @property\n    def POST(self):\n        # Ensure that request.POST uses our request parsing.\n        if not _hasattr(self, '_data'):\n            self._load_data_and_files()\n        if is_form_media_type(self.content_type):\n            return self._data\n        return QueryDict('', encoding=self._request._encoding)\n\n    @property\n    def FILES(self):\n        # Leave this one alone for backwards compat with Django's request.FILES\n        # Different from the other two cases, which are not valid property\n        # names on the WSGIRequest class.\n        if not _hasattr(self, '_files'):\n            self._load_data_and_files()\n        return self._files\n\n    @property\n    def QUERY_PARAMS(self):\n        raise NotImplementedError(\n            '`request.QUERY_PARAMS` has been deprecated in favor of `request.query_params` '\n            'since version 3.0, and has been fully removed as of version 3.2.'\n        )\n\n    def force_plaintext_errors(self, value):\n        # Hack to allow our exception handler to force choice of\n        # plaintext or html error responses.\n        self._request.is_ajax = lambda: value\n"
  },
  {
    "path": "jet_django/deps/rest_framework/response.py",
    "content": "\"\"\"\nThe Response class in REST framework is similar to HTTPResponse, except that\nit is initialized with unrendered data, instead of a pre-rendered string.\n\nThe appropriate renderer is called during Django's template response rendering.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.template.response import SimpleTemplateResponse\nfrom django.utils import six\nfrom django.utils.six.moves.http_client import responses\n\nfrom jet_django.deps.rest_framework.serializers import Serializer\n\n\nclass Response(SimpleTemplateResponse):\n    \"\"\"\n    An HttpResponse that allows its data to be rendered into\n    arbitrary media types.\n    \"\"\"\n\n    def __init__(self, data=None, status=None,\n                 template_name=None, headers=None,\n                 exception=False, content_type=None):\n        \"\"\"\n        Alters the init arguments slightly.\n        For example, drop 'template_name', and instead use 'data'.\n\n        Setting 'renderer' and 'media_type' will typically be deferred,\n        For example being set automatically by the `APIView`.\n        \"\"\"\n        super(Response, self).__init__(None, status=status)\n\n        if isinstance(data, Serializer):\n            msg = (\n                'You passed a Serializer instance as data, but '\n                'probably meant to pass serialized `.data` or '\n                '`.error`. representation.'\n            )\n            raise AssertionError(msg)\n\n        self.data = data\n        self.template_name = template_name\n        self.exception = exception\n        self.content_type = content_type\n\n        if headers:\n            for name, value in six.iteritems(headers):\n                self[name] = value\n\n    @property\n    def rendered_content(self):\n        renderer = getattr(self, 'accepted_renderer', None)\n        accepted_media_type = getattr(self, 'accepted_media_type', None)\n        context = getattr(self, 'renderer_context', None)\n\n        assert renderer, \".accepted_renderer not set on Response\"\n        assert accepted_media_type, \".accepted_media_type not set on Response\"\n        assert context is not None, \".renderer_context not set on Response\"\n        context['response'] = self\n\n        media_type = renderer.media_type\n        charset = renderer.charset\n        content_type = self.content_type\n\n        if content_type is None and charset is not None:\n            content_type = \"{0}; charset={1}\".format(media_type, charset)\n        elif content_type is None:\n            content_type = media_type\n        self['Content-Type'] = content_type\n\n        ret = renderer.render(self.data, accepted_media_type, context)\n        if isinstance(ret, six.text_type):\n            assert charset, (\n                'renderer returned unicode, and did not specify '\n                'a charset value.'\n            )\n            return bytes(ret.encode(charset))\n\n        if not ret:\n            del self['Content-Type']\n\n        return ret\n\n    @property\n    def status_text(self):\n        \"\"\"\n        Returns reason text corresponding to our HTTP response status code.\n        Provided for convenience.\n        \"\"\"\n        return responses.get(self.status_code, '')\n\n    def __getstate__(self):\n        \"\"\"\n        Remove attributes from the response that shouldn't be cached.\n        \"\"\"\n        state = super(Response, self).__getstate__()\n        for key in (\n            'accepted_renderer', 'renderer_context', 'resolver_match',\n            'client', 'request', 'json', 'wsgi_request'\n        ):\n            if key in state:\n                del state[key]\n        state['_closable_objects'] = []\n        return state\n"
  },
  {
    "path": "jet_django/deps/rest_framework/reverse.py",
    "content": "\"\"\"\nProvide urlresolver functions that return fully qualified URLs or view names\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.urls import NoReverseMatch\nfrom django.urls import reverse as django_reverse\nfrom django.utils import six\nfrom django.utils.functional import lazy\n\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils.urls import replace_query_param\n\n\ndef preserve_builtin_query_params(url, request=None):\n    \"\"\"\n    Given an incoming request, and an outgoing URL representation,\n    append the value of any built-in query parameters.\n    \"\"\"\n    if request is None:\n        return url\n\n    overrides = [\n        api_settings.URL_FORMAT_OVERRIDE,\n    ]\n\n    for param in overrides:\n        if param and (param in request.GET):\n            value = request.GET[param]\n            url = replace_query_param(url, param, value)\n\n    return url\n\n\ndef reverse(viewname, args=None, kwargs=None, request=None, format=None, **extra):\n    \"\"\"\n    If versioning is being used then we pass any `reverse` calls through\n    to the versioning scheme instance, so that the resulting URL\n    can be modified if needed.\n    \"\"\"\n    scheme = getattr(request, 'versioning_scheme', None)\n    if scheme is not None:\n        try:\n            url = scheme.reverse(viewname, args, kwargs, request, format, **extra)\n        except NoReverseMatch:\n            # In case the versioning scheme reversal fails, fallback to the\n            # default implementation\n            url = _reverse(viewname, args, kwargs, request, format, **extra)\n    else:\n        url = _reverse(viewname, args, kwargs, request, format, **extra)\n\n    return preserve_builtin_query_params(url, request)\n\n\ndef _reverse(viewname, args=None, kwargs=None, request=None, format=None, **extra):\n    \"\"\"\n    Same as `django.urls.reverse`, but optionally takes a request\n    and returns a fully qualified URL, using the request to get the base URL.\n    \"\"\"\n    if format is not None:\n        kwargs = kwargs or {}\n        kwargs['format'] = format\n    url = django_reverse(viewname, args=args, kwargs=kwargs, **extra)\n    if request:\n        return request.build_absolute_uri(url)\n    return url\n\n\nreverse_lazy = lazy(reverse, six.text_type)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/routers.py",
    "content": "\"\"\"\nRouters provide a convenient and consistent way of automatically\ndetermining the URL conf for your API.\n\nThey are used by simply instantiating a Router class, and then registering\nall the required ViewSets with that router.\n\nFor example, you might have a `urls.py` that looks something like this:\n\n    router = routers.DefaultRouter()\n    router.register('users', UserViewSet, 'user')\n    router.register('accounts', AccountViewSet, 'account')\n\n    urlpatterns = router.urls\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport itertools\nimport warnings\nfrom collections import OrderedDict, namedtuple\n\nfrom django.conf.urls import url\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.urls import NoReverseMatch\n\nfrom jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.reverse import reverse\nfrom jet_django.deps.rest_framework.schemas import SchemaGenerator\nfrom jet_django.deps.rest_framework.schemas.views import SchemaView\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.urlpatterns import format_suffix_patterns\n\nRoute = namedtuple('Route', ['url', 'mapping', 'name', 'detail', 'initkwargs'])\nDynamicRoute = namedtuple('DynamicRoute', ['url', 'name', 'detail', 'initkwargs'])\n\n\nclass DynamicDetailRoute(object):\n    def __new__(cls, url, name, initkwargs):\n        warnings.warn(\n            \"`DynamicDetailRoute` is pending deprecation and will be removed in 3.10 \"\n            \"in favor of `DynamicRoute`, which accepts a `detail` boolean. Use \"\n            \"`DynamicRoute(url, name, True, initkwargs)` instead.\",\n            PendingDeprecationWarning, stacklevel=2\n        )\n        return DynamicRoute(url, name, True, initkwargs)\n\n\nclass DynamicListRoute(object):\n    def __new__(cls, url, name, initkwargs):\n        warnings.warn(\n            \"`DynamicListRoute` is pending deprecation and will be removed in 3.10 in \"\n            \"favor of `DynamicRoute`, which accepts a `detail` boolean. Use \"\n            \"`DynamicRoute(url, name, False, initkwargs)` instead.\",\n            PendingDeprecationWarning, stacklevel=2\n        )\n        return DynamicRoute(url, name, False, initkwargs)\n\n\ndef escape_curly_brackets(url_path):\n    \"\"\"\n    Double brackets in regex of url_path for escape string formatting\n    \"\"\"\n    if ('{' and '}') in url_path:\n        url_path = url_path.replace('{', '{{').replace('}', '}}')\n    return url_path\n\n\ndef flatten(list_of_lists):\n    \"\"\"\n    Takes an iterable of iterables, returns a single iterable containing all items\n    \"\"\"\n    return itertools.chain(*list_of_lists)\n\n\nclass BaseRouter(object):\n    def __init__(self):\n        self.registry = []\n\n    def register(self, prefix, viewset, base_name=None):\n        if base_name is None:\n            base_name = self.get_default_base_name(viewset)\n        self.registry.append((prefix, viewset, base_name))\n\n    def get_default_base_name(self, viewset):\n        \"\"\"\n        If `base_name` is not specified, attempt to automatically determine\n        it from the viewset.\n        \"\"\"\n        raise NotImplementedError('get_default_base_name must be overridden')\n\n    def get_urls(self):\n        \"\"\"\n        Return a list of URL patterns, given the registered viewsets.\n        \"\"\"\n        raise NotImplementedError('get_urls must be overridden')\n\n    @property\n    def urls(self):\n        if not hasattr(self, '_urls'):\n            self._urls = self.get_urls()\n        return self._urls\n\n\nclass SimpleRouter(BaseRouter):\n\n    routes = [\n        # List route.\n        Route(\n            url=r'^{prefix}{trailing_slash}$',\n            mapping={\n                'get': 'list',\n                'post': 'create'\n            },\n            name='{basename}-list',\n            detail=False,\n            initkwargs={'suffix': 'List'}\n        ),\n        # Dynamically generated list routes. Generated using\n        # @action(detail=False) decorator on methods of the viewset.\n        DynamicRoute(\n            url=r'^{prefix}/{url_path}{trailing_slash}$',\n            name='{basename}-{url_name}',\n            detail=False,\n            initkwargs={}\n        ),\n        # Detail route.\n        Route(\n            url=r'^{prefix}/{lookup}{trailing_slash}$',\n            mapping={\n                'get': 'retrieve',\n                'put': 'update',\n                'patch': 'partial_update',\n                'delete': 'destroy'\n            },\n            name='{basename}-detail',\n            detail=True,\n            initkwargs={'suffix': 'Instance'}\n        ),\n        # Dynamically generated detail routes. Generated using\n        # @action(detail=True) decorator on methods of the viewset.\n        DynamicRoute(\n            url=r'^{prefix}/{lookup}/{url_path}{trailing_slash}$',\n            name='{basename}-{url_name}',\n            detail=True,\n            initkwargs={}\n        ),\n    ]\n\n    def __init__(self, trailing_slash=True):\n        self.trailing_slash = '/' if trailing_slash else ''\n        super(SimpleRouter, self).__init__()\n\n    def get_default_base_name(self, viewset):\n        \"\"\"\n        If `base_name` is not specified, attempt to automatically determine\n        it from the viewset.\n        \"\"\"\n        queryset = getattr(viewset, 'queryset', None)\n\n        assert queryset is not None, '`base_name` argument not specified, and could ' \\\n            'not automatically determine the name from the viewset, as ' \\\n            'it does not have a `.queryset` attribute.'\n\n        return queryset.model._meta.object_name.lower()\n\n    def get_routes(self, viewset):\n        \"\"\"\n        Augment `self.routes` with any dynamically generated routes.\n\n        Returns a list of the Route namedtuple.\n        \"\"\"\n        # converting to list as iterables are good for one pass, known host needs to be checked again and again for\n        # different functions.\n        known_actions = list(flatten([route.mapping.values() for route in self.routes if isinstance(route, Route)]))\n        extra_actions = viewset.get_extra_actions()\n\n        # checking action names against the known actions list\n        not_allowed = [\n            action.__name__ for action in extra_actions\n            if action.__name__ in known_actions\n        ]\n        if not_allowed:\n            msg = ('Cannot use the @action decorator on the following '\n                   'methods, as they are existing routes: %s')\n            raise ImproperlyConfigured(msg % ', '.join(not_allowed))\n\n        # partition detail and list actions\n        detail_actions = [action for action in extra_actions if action.detail]\n        list_actions = [action for action in extra_actions if not action.detail]\n\n        routes = []\n        for route in self.routes:\n            if isinstance(route, DynamicRoute) and route.detail:\n                routes += [self._get_dynamic_route(route, action) for action in detail_actions]\n            elif isinstance(route, DynamicRoute) and not route.detail:\n                routes += [self._get_dynamic_route(route, action) for action in list_actions]\n            else:\n                routes.append(route)\n\n        return routes\n\n    def _get_dynamic_route(self, route, action):\n        initkwargs = route.initkwargs.copy()\n        initkwargs.update(action.kwargs)\n\n        url_path = escape_curly_brackets(action.url_path)\n\n        return Route(\n            url=route.url.replace('{url_path}', url_path),\n            mapping={http_method: action.__name__\n                     for http_method in action.bind_to_methods},\n            name=route.name.replace('{url_name}', action.url_name),\n            detail=route.detail,\n            initkwargs=initkwargs,\n        )\n\n    def get_method_map(self, viewset, method_map):\n        \"\"\"\n        Given a viewset, and a mapping of http methods to actions,\n        return a new mapping which only includes any mappings that\n        are actually implemented by the viewset.\n        \"\"\"\n        bound_methods = {}\n        for method, action in method_map.items():\n            if hasattr(viewset, action):\n                bound_methods[method] = action\n        return bound_methods\n\n    def get_lookup_regex(self, viewset, lookup_prefix=''):\n        \"\"\"\n        Given a viewset, return the portion of URL regex that is used\n        to match against a single instance.\n\n        Note that lookup_prefix is not used directly inside REST rest_framework\n        itself, but is required in order to nicely support nested router\n        implementations, such as drf-nested-routers.\n\n        https://github.com/alanjds/drf-nested-routers\n        \"\"\"\n        base_regex = '(?P<{lookup_prefix}{lookup_url_kwarg}>{lookup_value})'\n        # Use `pk` as default field, unset set.  Default regex should not\n        # consume `.json` style suffixes and should break at '/' boundaries.\n        lookup_field = getattr(viewset, 'lookup_field', 'pk')\n        lookup_url_kwarg = getattr(viewset, 'lookup_url_kwarg', None) or lookup_field\n        lookup_value = getattr(viewset, 'lookup_value_regex', '[^/.]+')\n        return base_regex.format(\n            lookup_prefix=lookup_prefix,\n            lookup_url_kwarg=lookup_url_kwarg,\n            lookup_value=lookup_value\n        )\n\n    def get_urls(self):\n        \"\"\"\n        Use the registered viewsets to generate a list of URL patterns.\n        \"\"\"\n        ret = []\n\n        for prefix, viewset, basename in self.registry:\n            lookup = self.get_lookup_regex(viewset)\n            routes = self.get_routes(viewset)\n\n            for route in routes:\n\n                # Only actions which actually exist on the viewset will be bound\n                mapping = self.get_method_map(viewset, route.mapping)\n                if not mapping:\n                    continue\n\n                # Build the url pattern\n                regex = route.url.format(\n                    prefix=prefix,\n                    lookup=lookup,\n                    trailing_slash=self.trailing_slash\n                )\n\n                # If there is no prefix, the first part of the url is probably\n                #   controlled by project's urls.py and the router is in an app,\n                #   so a slash in the beginning will (A) cause Django to give\n                #   warnings and (B) generate URLS that will require using '//'.\n                if not prefix and regex[:2] == '^/':\n                    regex = '^' + regex[2:]\n\n                initkwargs = route.initkwargs.copy()\n                initkwargs.update({\n                    'basename': basename,\n                    'detail': route.detail,\n                })\n\n                view = viewset.as_view(mapping, **initkwargs)\n                name = route.name.format(basename=basename)\n                ret.append(url(regex, view, name=name))\n\n        return ret\n\n\nclass APIRootView(views.APIView):\n    \"\"\"\n    The default basic root view for DefaultRouter\n    \"\"\"\n    _ignore_model_permissions = True\n    schema = None  # exclude from schema\n    api_root_dict = None\n\n    def get(self, request, *args, **kwargs):\n        # Return a plain {\"name\": \"hyperlink\"} response.\n        ret = OrderedDict()\n        namespace = request.resolver_match.namespace\n        for key, url_name in self.api_root_dict.items():\n            if namespace:\n                url_name = namespace + ':' + url_name\n            try:\n                ret[key] = reverse(\n                    url_name,\n                    args=args,\n                    kwargs=kwargs,\n                    request=request,\n                    format=kwargs.get('format', None)\n                )\n            except NoReverseMatch:\n                # Don't bail out if eg. no list routes exist, only detail routes.\n                continue\n\n        return Response(ret)\n\n\nclass DefaultRouter(SimpleRouter):\n    \"\"\"\n    The default router extends the SimpleRouter, but also adds in a default\n    API root view, and adds format suffix patterns to the URLs.\n    \"\"\"\n    include_root_view = True\n    include_format_suffixes = True\n    root_view_name = 'api-root'\n    default_schema_renderers = None\n    APIRootView = APIRootView\n    APISchemaView = SchemaView\n    SchemaGenerator = SchemaGenerator\n\n    def __init__(self, *args, **kwargs):\n        if 'root_renderers' in kwargs:\n            self.root_renderers = kwargs.pop('root_renderers')\n        else:\n            self.root_renderers = list(api_settings.DEFAULT_RENDERER_CLASSES)\n        super(DefaultRouter, self).__init__(*args, **kwargs)\n\n    def get_api_root_view(self, api_urls=None):\n        \"\"\"\n        Return a basic root view.\n        \"\"\"\n        api_root_dict = OrderedDict()\n        list_name = self.routes[0].name\n        for prefix, viewset, basename in self.registry:\n            api_root_dict[prefix] = list_name.format(basename=basename)\n\n        return self.APIRootView.as_view(api_root_dict=api_root_dict)\n\n    def get_urls(self):\n        \"\"\"\n        Generate the list of URL patterns, including a default root view\n        for the API, and appending `.json` style format suffixes.\n        \"\"\"\n        urls = super(DefaultRouter, self).get_urls()\n\n        if self.include_root_view:\n            view = self.get_api_root_view(api_urls=urls)\n            root_url = url(r'^$', view, name=self.root_view_name)\n            urls.append(root_url)\n\n        if self.include_format_suffixes:\n            urls = format_suffix_patterns(urls)\n\n        return urls\n"
  },
  {
    "path": "jet_django/deps/rest_framework/schemas/__init__.py",
    "content": "\"\"\"\nrest_framework.schemas\n\nschemas:\n    __init__.py\n    generators.py   # Top-down schema generation\n    inspectors.py   # Per-endpoint view introspection\n    utils.py        # Shared helper functions\n    views.py        # Houses `SchemaView`, `APIView` subclass.\n\nWe expose a minimal \"public\" API directly from `schemas`. This covers the\nbasic use-cases:\n\n    from jet_django.deps.rest_framework.schemas import (\n        AutoSchema,\n        ManualSchema,\n        get_schema_view,\n        SchemaGenerator,\n    )\n\nOther access should target the submodules directly\n\"\"\"\nfrom jet_django.deps.rest_framework.settings import api_settings\n\nfrom .generators import SchemaGenerator\nfrom .inspectors import AutoSchema, DefaultSchema, ManualSchema  # noqa\n\n\ndef get_schema_view(\n        title=None, url=None, description=None, urlconf=None, renderer_classes=None,\n        public=False, patterns=None, generator_class=SchemaGenerator,\n        authentication_classes=api_settings.DEFAULT_AUTHENTICATION_CLASSES,\n        permission_classes=api_settings.DEFAULT_PERMISSION_CLASSES):\n    \"\"\"\n    Return a schema view.\n    \"\"\"\n    # Avoid import cycle on APIView\n    from .views import SchemaView\n    generator = generator_class(\n        title=title, url=url, description=description,\n        urlconf=urlconf, patterns=patterns,\n    )\n    return SchemaView.as_view(\n        renderer_classes=renderer_classes,\n        schema_generator=generator,\n        public=public,\n        authentication_classes=authentication_classes,\n        permission_classes=permission_classes,\n    )\n"
  },
  {
    "path": "jet_django/deps/rest_framework/schemas/generators.py",
    "content": "\"\"\"\ngenerators.py   # Top-down schema generation\n\nSee schemas.__init__.py for package overview.\n\"\"\"\nimport re\nimport warnings\nfrom collections import Counter, OrderedDict\nfrom importlib import import_module\n\nfrom django.conf import settings\nfrom django.contrib.admindocs.views import simplify_regex\nfrom django.core.exceptions import PermissionDenied\nfrom django.http import Http404\nfrom django.utils import six\n\nfrom jet_django.deps.rest_framework import exceptions\nfrom jet_django.deps.rest_framework.compat import (\n    URLPattern, URLResolver, coreapi, coreschema, get_original_route\n)\nfrom jet_django.deps.rest_framework.request import clone_request\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils.model_meta import _get_pk\n\nfrom .utils import is_list_view\n\n\ndef common_path(paths):\n    split_paths = [path.strip('/').split('/') for path in paths]\n    s1 = min(split_paths)\n    s2 = max(split_paths)\n    common = s1\n    for i, c in enumerate(s1):\n        if c != s2[i]:\n            common = s1[:i]\n            break\n    return '/' + '/'.join(common)\n\n\ndef get_pk_name(model):\n    meta = model._meta.concrete_model._meta\n    return _get_pk(meta).name\n\n\ndef is_api_view(callback):\n    \"\"\"\n    Return `True` if the given view callback is a REST framework view/viewset.\n    \"\"\"\n    # Avoid import cycle on APIView\n    from jet_django.deps.rest_framework.views import APIView\n    cls = getattr(callback, 'cls', None)\n    return (cls is not None) and issubclass(cls, APIView)\n\n\nINSERT_INTO_COLLISION_FMT = \"\"\"\nSchema Naming Collision.\n\ncoreapi.Link for URL path {value_url} cannot be inserted into schema.\nPosition conflicts with coreapi.Link for URL path {target_url}.\n\nAttemped to insert link with keys: {keys}.\n\nAdjust URLs to avoid naming collision or override `SchemaGenerator.get_keys()`\nto customise schema structure.\n\"\"\"\n\n\nclass LinkNode(OrderedDict):\n    def __init__(self):\n        self.links = []\n        self.methods_counter = Counter()\n        super(LinkNode, self).__init__()\n\n    def get_available_key(self, preferred_key):\n        if preferred_key not in self:\n            return preferred_key\n\n        while True:\n            current_val = self.methods_counter[preferred_key]\n            self.methods_counter[preferred_key] += 1\n\n            key = '{}_{}'.format(preferred_key, current_val)\n            if key not in self:\n                return key\n\n\ndef insert_into(target, keys, value):\n    \"\"\"\n    Nested dictionary insertion.\n\n    >>> example = {}\n    >>> insert_into(example, ['a', 'b', 'c'], 123)\n    >>> example\n    LinkNode({'a': LinkNode({'b': LinkNode({'c': LinkNode(links=[123])}}})))\n    \"\"\"\n    for key in keys[:-1]:\n        if key not in target:\n            target[key] = LinkNode()\n        target = target[key]\n\n    try:\n        target.links.append((keys[-1], value))\n    except TypeError:\n        msg = INSERT_INTO_COLLISION_FMT.format(\n            value_url=value.url,\n            target_url=target.url,\n            keys=keys\n        )\n        raise ValueError(msg)\n\n\ndef distribute_links(obj):\n    for key, value in obj.items():\n        distribute_links(value)\n\n    for preferred_key, link in obj.links:\n        key = obj.get_available_key(preferred_key)\n        obj[key] = link\n\n\ndef is_custom_action(action):\n    return action not in {\n        'retrieve', 'list', 'create', 'update', 'partial_update', 'destroy'\n    }\n\n\ndef endpoint_ordering(endpoint):\n    path, method, callback = endpoint\n    method_priority = {\n        'GET': 0,\n        'POST': 1,\n        'PUT': 2,\n        'PATCH': 3,\n        'DELETE': 4\n    }.get(method, 5)\n    return (path, method_priority)\n\n\n_PATH_PARAMETER_COMPONENT_RE = re.compile(\n    r'<(?:(?P<converter>[^>:]+):)?(?P<parameter>\\w+)>'\n)\n\n\nclass EndpointEnumerator(object):\n    \"\"\"\n    A class to determine the available API endpoints that a project exposes.\n    \"\"\"\n    def __init__(self, patterns=None, urlconf=None):\n        if patterns is None:\n            if urlconf is None:\n                # Use the default Django URL conf\n                urlconf = settings.ROOT_URLCONF\n\n            # Load the given URLconf module\n            if isinstance(urlconf, six.string_types):\n                urls = import_module(urlconf)\n            else:\n                urls = urlconf\n            patterns = urls.urlpatterns\n\n        self.patterns = patterns\n\n    def get_api_endpoints(self, patterns=None, prefix=''):\n        \"\"\"\n        Return a list of all available API endpoints by inspecting the URL conf.\n        \"\"\"\n        if patterns is None:\n            patterns = self.patterns\n\n        api_endpoints = []\n\n        for pattern in patterns:\n            path_regex = prefix + get_original_route(pattern)\n            if isinstance(pattern, URLPattern):\n                path = self.get_path_from_regex(path_regex)\n                callback = pattern.callback\n                if self.should_include_endpoint(path, callback):\n                    for method in self.get_allowed_methods(callback):\n                        endpoint = (path, method, callback)\n                        api_endpoints.append(endpoint)\n\n            elif isinstance(pattern, URLResolver):\n                nested_endpoints = self.get_api_endpoints(\n                    patterns=pattern.url_patterns,\n                    prefix=path_regex\n                )\n                api_endpoints.extend(nested_endpoints)\n\n        api_endpoints = sorted(api_endpoints, key=endpoint_ordering)\n\n        return api_endpoints\n\n    def get_path_from_regex(self, path_regex):\n        \"\"\"\n        Given a URL conf regex, return a URI template string.\n        \"\"\"\n        path = simplify_regex(path_regex)\n\n        # Strip Django 2.0 convertors as they are incompatible with uritemplate format\n        path = re.sub(_PATH_PARAMETER_COMPONENT_RE, r'{\\g<parameter>}', path)\n        return path\n\n    def should_include_endpoint(self, path, callback):\n        \"\"\"\n        Return `True` if the given endpoint should be included.\n        \"\"\"\n        if not is_api_view(callback):\n            return False  # Ignore anything except REST framework views.\n\n        if hasattr(callback.cls, 'exclude_from_schema'):\n            fmt = (\"The `{}.exclude_from_schema` attribute is deprecated. \"\n                   \"Set `schema = None` instead.\")\n            msg = fmt.format(callback.cls.__name__)\n            warnings.warn(msg, DeprecationWarning)\n            if getattr(callback.cls, 'exclude_from_schema', False):\n                return False\n\n        if callback.cls.schema is None:\n            return False\n\n        if path.endswith('.{format}') or path.endswith('.{format}/'):\n            return False  # Ignore .json style URLs.\n\n        return True\n\n    def get_allowed_methods(self, callback):\n        \"\"\"\n        Return a list of the valid HTTP methods for this endpoint.\n        \"\"\"\n        if hasattr(callback, 'actions'):\n            actions = set(callback.actions)\n            http_method_names = set(callback.cls.http_method_names)\n            methods = [method.upper() for method in actions & http_method_names]\n        else:\n            methods = callback.cls().allowed_methods\n\n        return [method for method in methods if method not in ('OPTIONS', 'HEAD')]\n\n\nclass SchemaGenerator(object):\n    # Map HTTP methods onto actions.\n    default_mapping = {\n        'get': 'retrieve',\n        'post': 'create',\n        'put': 'update',\n        'patch': 'partial_update',\n        'delete': 'destroy',\n    }\n    endpoint_inspector_cls = EndpointEnumerator\n\n    # Map the method names we use for viewset actions onto external schema names.\n    # These give us names that are more suitable for the external representation.\n    # Set by 'SCHEMA_COERCE_METHOD_NAMES'.\n    coerce_method_names = None\n\n    # 'pk' isn't great as an externally exposed name for an identifier,\n    # so by default we prefer to use the actual model field name for schemas.\n    # Set by 'SCHEMA_COERCE_PATH_PK'.\n    coerce_path_pk = None\n\n    def __init__(self, title=None, url=None, description=None, patterns=None, urlconf=None):\n        assert coreapi, '`coreapi` must be installed for schema support.'\n        assert coreschema, '`coreschema` must be installed for schema support.'\n\n        if url and not url.endswith('/'):\n            url += '/'\n\n        self.coerce_method_names = api_settings.SCHEMA_COERCE_METHOD_NAMES\n        self.coerce_path_pk = api_settings.SCHEMA_COERCE_PATH_PK\n\n        self.patterns = patterns\n        self.urlconf = urlconf\n        self.title = title\n        self.description = description\n        self.url = url\n        self.endpoints = None\n\n    def get_schema(self, request=None, public=False):\n        \"\"\"\n        Generate a `coreapi.Document` representing the API schema.\n        \"\"\"\n        if self.endpoints is None:\n            inspector = self.endpoint_inspector_cls(self.patterns, self.urlconf)\n            self.endpoints = inspector.get_api_endpoints()\n\n        links = self.get_links(None if public else request)\n        if not links:\n            return None\n\n        url = self.url\n        if not url and request is not None:\n            url = request.build_absolute_uri()\n\n        distribute_links(links)\n        return coreapi.Document(\n            title=self.title, description=self.description,\n            url=url, content=links\n        )\n\n    def get_links(self, request=None):\n        \"\"\"\n        Return a dictionary containing all the links that should be\n        included in the API schema.\n        \"\"\"\n        links = LinkNode()\n\n        # Generate (path, method, view) given (path, method, callback).\n        paths = []\n        view_endpoints = []\n        for path, method, callback in self.endpoints:\n            view = self.create_view(callback, method, request)\n            path = self.coerce_path(path, method, view)\n            paths.append(path)\n            view_endpoints.append((path, method, view))\n\n        # Only generate the path prefix for paths that will be included\n        if not paths:\n            return None\n        prefix = self.determine_path_prefix(paths)\n\n        for path, method, view in view_endpoints:\n            if not self.has_view_permissions(path, method, view):\n                continue\n            link = view.schema.get_link(path, method, base_url=self.url)\n            subpath = path[len(prefix):]\n            keys = self.get_keys(subpath, method, view)\n            insert_into(links, keys, link)\n\n        return links\n\n    # Methods used when we generate a view instance from the raw callback...\n\n    def determine_path_prefix(self, paths):\n        \"\"\"\n        Given a list of all paths, return the common prefix which should be\n        discounted when generating a schema structure.\n\n        This will be the longest common string that does not include that last\n        component of the URL, or the last component before a path parameter.\n\n        For example:\n\n        /api/v1/users/\n        /api/v1/users/{pk}/\n\n        The path prefix is '/api/v1/'\n        \"\"\"\n        prefixes = []\n        for path in paths:\n            components = path.strip('/').split('/')\n            initial_components = []\n            for component in components:\n                if '{' in component:\n                    break\n                initial_components.append(component)\n            prefix = '/'.join(initial_components[:-1])\n            if not prefix:\n                # We can just break early in the case that there's at least\n                # one URL that doesn't have a path prefix.\n                return '/'\n            prefixes.append('/' + prefix + '/')\n        return common_path(prefixes)\n\n    def create_view(self, callback, method, request=None):\n        \"\"\"\n        Given a callback, return an actual view instance.\n        \"\"\"\n        view = callback.cls()\n        for attr, val in getattr(callback, 'initkwargs', {}).items():\n            setattr(view, attr, val)\n        view.args = ()\n        view.kwargs = {}\n        view.format_kwarg = None\n        view.request = None\n        view.action_map = getattr(callback, 'actions', None)\n\n        actions = getattr(callback, 'actions', None)\n        if actions is not None:\n            if method == 'OPTIONS':\n                view.action = 'metadata'\n            else:\n                view.action = actions.get(method.lower())\n\n        if request is not None:\n            view.request = clone_request(request, method)\n\n        return view\n\n    def has_view_permissions(self, path, method, view):\n        \"\"\"\n        Return `True` if the incoming request has the correct view permissions.\n        \"\"\"\n        if view.request is None:\n            return True\n\n        try:\n            view.check_permissions(view.request)\n        except (exceptions.APIException, Http404, PermissionDenied):\n            return False\n        return True\n\n    def coerce_path(self, path, method, view):\n        \"\"\"\n        Coerce {pk} path arguments into the name of the model field,\n        where possible. This is cleaner for an external representation.\n        (Ie. \"this is an identifier\", not \"this is a database primary key\")\n        \"\"\"\n        if not self.coerce_path_pk or '{pk}' not in path:\n            return path\n        model = getattr(getattr(view, 'queryset', None), 'model', None)\n        if model:\n            field_name = get_pk_name(model)\n        else:\n            field_name = 'id'\n        return path.replace('{pk}', '{%s}' % field_name)\n\n    # Method for generating the link layout....\n\n    def get_keys(self, subpath, method, view):\n        \"\"\"\n        Return a list of keys that should be used to layout a link within\n        the schema document.\n\n        /users/                   (\"users\", \"list\"), (\"users\", \"create\")\n        /users/{pk}/              (\"users\", \"read\"), (\"users\", \"update\"), (\"users\", \"delete\")\n        /users/enabled/           (\"users\", \"enabled\")  # custom viewset list action\n        /users/{pk}/star/         (\"users\", \"star\")     # custom viewset detail action\n        /users/{pk}/groups/       (\"users\", \"groups\", \"list\"), (\"users\", \"groups\", \"create\")\n        /users/{pk}/groups/{pk}/  (\"users\", \"groups\", \"read\"), (\"users\", \"groups\", \"update\"), (\"users\", \"groups\", \"delete\")\n        \"\"\"\n        if hasattr(view, 'action'):\n            # Viewsets have explicitly named actions.\n            action = view.action\n        else:\n            # Views have no associated action, so we determine one from the method.\n            if is_list_view(subpath, method, view):\n                action = 'list'\n            else:\n                action = self.default_mapping[method.lower()]\n\n        named_path_components = [\n            component for component\n            in subpath.strip('/').split('/')\n            if '{' not in component\n        ]\n\n        if is_custom_action(action):\n            # Custom action, eg \"/users/{pk}/activate/\", \"/users/active/\"\n            if len(view.action_map) > 1:\n                action = self.default_mapping[method.lower()]\n                if action in self.coerce_method_names:\n                    action = self.coerce_method_names[action]\n                return named_path_components + [action]\n            else:\n                return named_path_components[:-1] + [action]\n\n        if action in self.coerce_method_names:\n            action = self.coerce_method_names[action]\n\n        # Default action, eg \"/users/\", \"/users/{pk}/\"\n        return named_path_components + [action]\n"
  },
  {
    "path": "jet_django/deps/rest_framework/schemas/inspectors.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"\ninspectors.py   # Per-endpoint view introspection\n\nSee schemas.__init__.py for package overview.\n\"\"\"\nimport re\nimport warnings\nfrom collections import OrderedDict\n\nfrom django.db import models\nfrom django.utils.encoding import force_text, smart_text\nfrom django.utils.six.moves.urllib import parse as urlparse\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import exceptions, serializers\nfrom jet_django.deps.rest_framework.compat import coreapi, coreschema, uritemplate\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import formatting\n\nfrom .utils import is_list_view\n\nheader_regex = re.compile('^[a-zA-Z][0-9A-Za-z_]*:')\n\n\ndef field_to_schema(field):\n    title = force_text(field.label) if field.label else ''\n    description = force_text(field.help_text) if field.help_text else ''\n\n    if isinstance(field, (serializers.ListSerializer, serializers.ListField)):\n        child_schema = field_to_schema(field.child)\n        return coreschema.Array(\n            items=child_schema,\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.DictField):\n        return coreschema.Object(\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.Serializer):\n        return coreschema.Object(\n            properties=OrderedDict([\n                (key, field_to_schema(value))\n                for key, value\n                in field.fields.items()\n            ]),\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.ManyRelatedField):\n        return coreschema.Array(\n            items=coreschema.String(),\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.PrimaryKeyRelatedField):\n        schema_cls = coreschema.String\n        model = getattr(field.queryset, 'model', None)\n        if model is not None:\n            model_field = model._meta.pk\n            if isinstance(model_field, models.AutoField):\n                schema_cls = coreschema.Integer\n        return schema_cls(title=title, description=description)\n    elif isinstance(field, serializers.RelatedField):\n        return coreschema.String(title=title, description=description)\n    elif isinstance(field, serializers.MultipleChoiceField):\n        return coreschema.Array(\n            items=coreschema.Enum(enum=list(field.choices)),\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.ChoiceField):\n        return coreschema.Enum(\n            enum=list(field.choices),\n            title=title,\n            description=description\n        )\n    elif isinstance(field, serializers.BooleanField):\n        return coreschema.Boolean(title=title, description=description)\n    elif isinstance(field, (serializers.DecimalField, serializers.FloatField)):\n        return coreschema.Number(title=title, description=description)\n    elif isinstance(field, serializers.IntegerField):\n        return coreschema.Integer(title=title, description=description)\n    elif isinstance(field, serializers.DateField):\n        return coreschema.String(\n            title=title,\n            description=description,\n            format='date'\n        )\n    elif isinstance(field, serializers.DateTimeField):\n        return coreschema.String(\n            title=title,\n            description=description,\n            format='date-time'\n        )\n\n    if field.style.get('base_template') == 'textarea.html':\n        return coreschema.String(\n            title=title,\n            description=description,\n            format='textarea'\n        )\n    return coreschema.String(title=title, description=description)\n\n\ndef get_pk_description(model, model_field):\n    if isinstance(model_field, models.AutoField):\n        value_type = _('unique integer value')\n    elif isinstance(model_field, models.UUIDField):\n        value_type = _('UUID string')\n    else:\n        value_type = _('unique value')\n\n    return _('A {value_type} identifying this {name}.').format(\n        value_type=value_type,\n        name=model._meta.verbose_name,\n    )\n\n\nclass ViewInspector(object):\n    \"\"\"\n    Descriptor class on APIView.\n\n    Provide subclass for per-view schema generation\n    \"\"\"\n    def __get__(self, instance, owner):\n        \"\"\"\n        Enables `ViewInspector` as a Python _Descriptor_.\n\n        This is how `view.schema` knows about `view`.\n\n        `__get__` is called when the descriptor is accessed on the owner.\n        (That will be when view.schema is called in our case.)\n\n        `owner` is always the owner class. (An APIView, or subclass for us.)\n        `instance` is the view instance or `None` if accessed from the class,\n        rather than an instance.\n\n        See: https://docs.python.org/3/howto/descriptor.html for info on\n        descriptor usage.\n        \"\"\"\n        self.view = instance\n        return self\n\n    @property\n    def view(self):\n        \"\"\"View property.\"\"\"\n        assert self._view is not None, \"Schema generation REQUIRES a view instance. (Hint: you accessed `schema` from the view class rather than an instance.)\"\n        return self._view\n\n    @view.setter\n    def view(self, value):\n        self._view = value\n\n    @view.deleter\n    def view(self):\n        self._view = None\n\n    def get_link(self, path, method, base_url):\n        \"\"\"\n        Generate `coreapi.Link` for self.view, path and method.\n\n        This is the main _public_ access point.\n\n        Parameters:\n\n        * path: Route path for view from URLConf.\n        * method: The HTTP request method.\n        * base_url: The project \"mount point\" as given to SchemaGenerator\n        \"\"\"\n        raise NotImplementedError(\".get_link() must be overridden.\")\n\n\nclass AutoSchema(ViewInspector):\n    \"\"\"\n    Default inspector for APIView\n\n    Responsible for per-view instrospection and schema generation.\n    \"\"\"\n    def __init__(self, manual_fields=None):\n        \"\"\"\n        Parameters:\n\n        * `manual_fields`: list of `coreapi.Field` instances that\n            will be added to auto-generated fields, overwriting on `Field.name`\n        \"\"\"\n        if manual_fields is None:\n            manual_fields = []\n        self._manual_fields = manual_fields\n\n    def get_link(self, path, method, base_url):\n        fields = self.get_path_fields(path, method)\n        fields += self.get_serializer_fields(path, method)\n        fields += self.get_pagination_fields(path, method)\n        fields += self.get_filter_fields(path, method)\n\n        manual_fields = self.get_manual_fields(path, method)\n        fields = self.update_fields(fields, manual_fields)\n\n        if fields and any([field.location in ('form', 'body') for field in fields]):\n            encoding = self.get_encoding(path, method)\n        else:\n            encoding = None\n\n        description = self.get_description(path, method)\n\n        if base_url and path.startswith('/'):\n            path = path[1:]\n\n        return coreapi.Link(\n            url=urlparse.urljoin(base_url, path),\n            action=method.lower(),\n            encoding=encoding,\n            fields=fields,\n            description=description\n        )\n\n    def get_description(self, path, method):\n        \"\"\"\n        Determine a link description.\n\n        This will be based on the method docstring if one exists,\n        or else the class docstring.\n        \"\"\"\n        view = self.view\n\n        method_name = getattr(view, 'action', method.lower())\n        method_docstring = getattr(view, method_name, None).__doc__\n        if method_docstring:\n            # An explicit docstring on the method or action.\n            return formatting.dedent(smart_text(method_docstring))\n\n        description = view.get_view_description()\n        lines = [line for line in description.splitlines()]\n        current_section = ''\n        sections = {'': ''}\n\n        for line in lines:\n            if header_regex.match(line):\n                current_section, seperator, lead = line.partition(':')\n                sections[current_section] = lead.strip()\n            else:\n                sections[current_section] += '\\n' + line\n\n        # TODO: SCHEMA_COERCE_METHOD_NAMES appears here and in `SchemaGenerator.get_keys`\n        coerce_method_names = api_settings.SCHEMA_COERCE_METHOD_NAMES\n        header = getattr(view, 'action', method.lower())\n        if header in sections:\n            return sections[header].strip()\n        if header in coerce_method_names:\n            if coerce_method_names[header] in sections:\n                return sections[coerce_method_names[header]].strip()\n        return sections[''].strip()\n\n    def get_path_fields(self, path, method):\n        \"\"\"\n        Return a list of `coreapi.Field` instances corresponding to any\n        templated path variables.\n        \"\"\"\n        view = self.view\n        model = getattr(getattr(view, 'queryset', None), 'model', None)\n        fields = []\n\n        for variable in uritemplate.variables(path):\n            title = ''\n            description = ''\n            schema_cls = coreschema.String\n            kwargs = {}\n            if model is not None:\n                # Attempt to infer a field description if possible.\n                try:\n                    model_field = model._meta.get_field(variable)\n                except Exception:\n                    model_field = None\n\n                if model_field is not None and model_field.verbose_name:\n                    title = force_text(model_field.verbose_name)\n\n                if model_field is not None and model_field.help_text:\n                    description = force_text(model_field.help_text)\n                elif model_field is not None and model_field.primary_key:\n                    description = get_pk_description(model, model_field)\n\n                if hasattr(view, 'lookup_value_regex') and view.lookup_field == variable:\n                    kwargs['pattern'] = view.lookup_value_regex\n                elif isinstance(model_field, models.AutoField):\n                    schema_cls = coreschema.Integer\n\n            field = coreapi.Field(\n                name=variable,\n                location='path',\n                required=True,\n                schema=schema_cls(title=title, description=description, **kwargs)\n            )\n            fields.append(field)\n\n        return fields\n\n    def get_serializer_fields(self, path, method):\n        \"\"\"\n        Return a list of `coreapi.Field` instances corresponding to any\n        request body input, as determined by the serializer class.\n        \"\"\"\n        view = self.view\n\n        if method not in ('PUT', 'PATCH', 'POST'):\n            return []\n\n        if not hasattr(view, 'get_serializer'):\n            return []\n\n        try:\n            serializer = view.get_serializer()\n        except exceptions.APIException:\n            serializer = None\n            warnings.warn('{}.get_serializer() raised an exception during '\n                          'schema generation. Serializer fields will not be '\n                          'generated for {} {}.'\n                          .format(view.__class__.__name__, method, path))\n\n        if isinstance(serializer, serializers.ListSerializer):\n            return [\n                coreapi.Field(\n                    name='data',\n                    location='body',\n                    required=True,\n                    schema=coreschema.Array()\n                )\n            ]\n\n        if not isinstance(serializer, serializers.Serializer):\n            return []\n\n        fields = []\n        for field in serializer.fields.values():\n            if field.read_only or isinstance(field, serializers.HiddenField):\n                continue\n\n            required = field.required and method != 'PATCH'\n            field = coreapi.Field(\n                name=field.field_name,\n                location='form',\n                required=required,\n                schema=field_to_schema(field)\n            )\n            fields.append(field)\n\n        return fields\n\n    def get_pagination_fields(self, path, method):\n        view = self.view\n\n        if not is_list_view(path, method, view):\n            return []\n\n        pagination = getattr(view, 'pagination_class', None)\n        if not pagination:\n            return []\n\n        paginator = view.pagination_class()\n        return paginator.get_schema_fields(view)\n\n    def _allows_filters(self, path, method):\n        \"\"\"\n        Determine whether to include filter Fields in schema.\n\n        Default implementation looks for ModelViewSet or GenericAPIView\n        actions/methods that cause filtering on the default implementation.\n\n        Override to adjust behaviour for your view.\n\n        Note: Introduced in v3.7: Initially \"private\" (i.e. with leading underscore)\n            to allow changes based on user experience.\n        \"\"\"\n        if getattr(self.view, 'filter_backends', None) is None:\n            return False\n\n        if hasattr(self.view, 'action'):\n            return self.view.action in [\"list\", \"retrieve\", \"update\", \"partial_update\", \"destroy\"]\n\n        return method.lower() in [\"get\", \"put\", \"patch\", \"delete\"]\n\n    def get_filter_fields(self, path, method):\n        if not self._allows_filters(path, method):\n            return []\n\n        fields = []\n        for filter_backend in self.view.filter_backends:\n            fields += filter_backend().get_schema_fields(self.view)\n        return fields\n\n    def get_manual_fields(self, path, method):\n        return self._manual_fields\n\n    @staticmethod\n    def update_fields(fields, update_with):\n        \"\"\"\n        Update list of coreapi.Field instances, overwriting on `Field.name`.\n\n        Utility function to handle replacing coreapi.Field fields\n        from a list by name. Used to handle `manual_fields`.\n\n        Parameters:\n\n        * `fields`: list of `coreapi.Field` instances to update\n        * `update_with: list of `coreapi.Field` instances to add or replace.\n        \"\"\"\n        if not update_with:\n            return fields\n\n        by_name = OrderedDict((f.name, f) for f in fields)\n        for f in update_with:\n            by_name[f.name] = f\n        fields = list(by_name.values())\n        return fields\n\n    def get_encoding(self, path, method):\n        \"\"\"\n        Return the 'encoding' parameter to use for a given endpoint.\n        \"\"\"\n        view = self.view\n\n        # Core API supports the following request encodings over HTTP...\n        supported_media_types = {\n            'application/json',\n            'application/x-www-form-urlencoded',\n            'multipart/form-data',\n        }\n        parser_classes = getattr(view, 'parser_classes', [])\n        for parser_class in parser_classes:\n            media_type = getattr(parser_class, 'media_type', None)\n            if media_type in supported_media_types:\n                return media_type\n            # Raw binary uploads are supported with \"application/octet-stream\"\n            if media_type == '*/*':\n                return 'application/octet-stream'\n\n        return None\n\n\nclass ManualSchema(ViewInspector):\n    \"\"\"\n    Allows providing a list of coreapi.Fields,\n    plus an optional description.\n    \"\"\"\n    def __init__(self, fields, description='', encoding=None):\n        \"\"\"\n        Parameters:\n\n        * `fields`: list of `coreapi.Field` instances.\n        * `descripton`: String description for view. Optional.\n        \"\"\"\n        assert all(isinstance(f, coreapi.Field) for f in fields), \"`fields` must be a list of coreapi.Field instances\"\n        self._fields = fields\n        self._description = description\n        self._encoding = encoding\n\n    def get_link(self, path, method, base_url):\n\n        if base_url and path.startswith('/'):\n            path = path[1:]\n\n        return coreapi.Link(\n            url=urlparse.urljoin(base_url, path),\n            action=method.lower(),\n            encoding=self._encoding,\n            fields=self._fields,\n            description=self._description\n        )\n\n\nclass DefaultSchema(object):\n    \"\"\"Allows overriding AutoSchema using DEFAULT_SCHEMA_CLASS setting\"\"\"\n    def __get__(self, instance, owner):\n        inspector_class = api_settings.DEFAULT_SCHEMA_CLASS\n        assert issubclass(inspector_class, ViewInspector), \"DEFAULT_SCHEMA_CLASS must be set to a ViewInspector (usually an AutoSchema) subclass\"\n        inspector = inspector_class()\n        inspector.view = instance\n        return inspector\n"
  },
  {
    "path": "jet_django/deps/rest_framework/schemas/utils.py",
    "content": "\"\"\"\nutils.py        # Shared helper functions\n\nSee schemas.__init__.py for package overview.\n\"\"\"\nfrom jet_django.deps.rest_framework.mixins import RetrieveModelMixin\n\n\ndef is_list_view(path, method, view):\n    \"\"\"\n    Return True if the given path/method appears to represent a list view.\n    \"\"\"\n    if hasattr(view, 'action'):\n        # Viewsets have an explicitly defined action, which we can inspect.\n        return view.action == 'list'\n\n    if method.lower() != 'get':\n        return False\n    if isinstance(view, RetrieveModelMixin):\n        return False\n    path_components = path.strip('/').split('/')\n    if path_components and '{' in path_components[-1]:\n        return False\n    return True\n"
  },
  {
    "path": "jet_django/deps/rest_framework/schemas/views.py",
    "content": "\"\"\"\nviews.py        # Houses `SchemaView`, `APIView` subclass.\n\nSee schemas.__init__.py for package overview.\n\"\"\"\nfrom jet_django.deps.rest_framework import exceptions, renderers\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.views import APIView\n\n\nclass SchemaView(APIView):\n    _ignore_model_permissions = True\n    schema = None  # exclude from schema\n    renderer_classes = None\n    schema_generator = None\n    public = False\n\n    def __init__(self, *args, **kwargs):\n        super(SchemaView, self).__init__(*args, **kwargs)\n        if self.renderer_classes is None:\n            if renderers.BrowsableAPIRenderer in api_settings.DEFAULT_RENDERER_CLASSES:\n                self.renderer_classes = [\n                    renderers.CoreJSONRenderer,\n                    renderers.BrowsableAPIRenderer,\n                ]\n            else:\n                self.renderer_classes = [renderers.CoreJSONRenderer]\n\n    def get(self, request, *args, **kwargs):\n        schema = self.schema_generator.get_schema(request, self.public)\n        if schema is None:\n            raise exceptions.PermissionDenied()\n        return Response(schema)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/serializers.py",
    "content": "\"\"\"\nSerializers and ModelSerializers are similar to Forms and ModelForms.\nUnlike forms, they are not constrained to dealing with HTML output, and\nform encoded input.\n\nSerialization in REST framework is a two-phase process:\n\n1. Serializers marshal between complex types like model instances, and\npython primitives.\n2. The process of marshalling between python primitives and request and\nresponse content is handled by parsers and renderers.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport copy\nimport inspect\nimport traceback\nfrom collections import Mapping, OrderedDict\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.exceptions import ValidationError as DjangoValidationError\nfrom django.db import models\nfrom django.db.models import DurationField as ModelDurationField\nfrom django.db.models.fields import Field as DjangoModelField\nfrom django.db.models.fields import FieldDoesNotExist\nfrom django.utils import six, timezone\nfrom django.utils.functional import cached_property\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework.compat import postgres_fields, unicode_to_repr\nfrom jet_django.deps.rest_framework.exceptions import ErrorDetail, ValidationError\nfrom jet_django.deps.rest_framework.fields import get_error_detail, set_value\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import html, model_meta, representation\nfrom jet_django.deps.rest_framework.utils.field_mapping import (\n    ClassLookupDict, get_field_kwargs, get_nested_relation_kwargs,\n    get_relation_kwargs, get_url_kwargs\n)\nfrom jet_django.deps.rest_framework.utils.serializer_helpers import (\n    BindingDict, BoundField, JSONBoundField, NestedBoundField, ReturnDict,\n    ReturnList\n)\nfrom jet_django.deps.rest_framework.validators import (\n    UniqueForDateValidator, UniqueForMonthValidator, UniqueForYearValidator,\n    UniqueTogetherValidator\n)\n\n# Note: We do the following so that users of the framework can use this style:\n#\n#     example_field = serializers.CharField(...)\n#\n# This helps keep the separation between model fields, form fields, and\n# serializer fields more explicit.\nfrom jet_django.deps.rest_framework.fields import (  # NOQA # isort:skip\n    BooleanField, CharField, ChoiceField, DateField, DateTimeField, DecimalField,\n    DictField, DurationField, EmailField, Field, FileField, FilePathField, FloatField,\n    HiddenField, HStoreField, IPAddressField, ImageField, IntegerField, JSONField,\n    ListField, ModelField, MultipleChoiceField, NullBooleanField, ReadOnlyField,\n    RegexField, SerializerMethodField, SlugField, TimeField, URLField, UUIDField,\n)\nfrom jet_django.deps.rest_framework.relations import (  # NOQA # isort:skip\n    HyperlinkedIdentityField, HyperlinkedRelatedField, ManyRelatedField,\n    PrimaryKeyRelatedField, RelatedField, SlugRelatedField, StringRelatedField,\n)\n\n# Non-field imports, but public API\nfrom jet_django.deps.rest_framework.fields import (  # NOQA # isort:skip\n    CreateOnlyDefault, CurrentUserDefault, SkipField, empty\n)\nfrom jet_django.deps.rest_framework.relations import Hyperlink, PKOnlyObject  # NOQA # isort:skip\n\n# We assume that 'validators' are intended for the child serializer,\n# rather than the parent serializer.\nLIST_SERIALIZER_KWARGS = (\n    'read_only', 'write_only', 'required', 'default', 'initial', 'source',\n    'label', 'help_text', 'style', 'error_messages', 'allow_empty',\n    'instance', 'data', 'partial', 'context', 'allow_null'\n)\n\nALL_FIELDS = '__all__'\n\n\n# BaseSerializer\n# --------------\n\nclass BaseSerializer(Field):\n    \"\"\"\n    The BaseSerializer class provides a minimal class which may be used\n    for writing custom serializer implementations.\n\n    Note that we strongly restrict the ordering of operations/properties\n    that may be used on the serializer in order to enforce correct usage.\n\n    In particular, if a `data=` argument is passed then:\n\n    .is_valid() - Available.\n    .initial_data - Available.\n    .validated_data - Only available after calling `is_valid()`\n    .errors - Only available after calling `is_valid()`\n    .data - Only available after calling `is_valid()`\n\n    If a `data=` argument is not passed then:\n\n    .is_valid() - Not available.\n    .initial_data - Not available.\n    .validated_data - Not available.\n    .errors - Not available.\n    .data - Available.\n    \"\"\"\n\n    def __init__(self, instance=None, data=empty, **kwargs):\n        self.instance = instance\n        if data is not empty:\n            self.initial_data = data\n        self.partial = kwargs.pop('partial', False)\n        self._context = kwargs.pop('context', {})\n        kwargs.pop('many', None)\n        super(BaseSerializer, self).__init__(**kwargs)\n\n    def __new__(cls, *args, **kwargs):\n        # We override this method in order to automagically create\n        # `ListSerializer` classes instead when `many=True` is set.\n        if kwargs.pop('many', False):\n            return cls.many_init(*args, **kwargs)\n        return super(BaseSerializer, cls).__new__(cls, *args, **kwargs)\n\n    @classmethod\n    def many_init(cls, *args, **kwargs):\n        \"\"\"\n        This method implements the creation of a `ListSerializer` parent\n        class when `many=True` is used. You can customize it if you need to\n        control which keyword arguments are passed to the parent, and\n        which are passed to the child.\n\n        Note that we're over-cautious in passing most arguments to both parent\n        and child classes in order to try to cover the general case. If you're\n        overriding this method you'll probably want something much simpler, eg:\n\n        @classmethod\n        def many_init(cls, *args, **kwargs):\n            kwargs['child'] = cls()\n            return CustomListSerializer(*args, **kwargs)\n        \"\"\"\n        allow_empty = kwargs.pop('allow_empty', None)\n        child_serializer = cls(*args, **kwargs)\n        list_kwargs = {\n            'child': child_serializer,\n        }\n        if allow_empty is not None:\n            list_kwargs['allow_empty'] = allow_empty\n        list_kwargs.update({\n            key: value for key, value in kwargs.items()\n            if key in LIST_SERIALIZER_KWARGS\n        })\n        meta = getattr(cls, 'Meta', None)\n        list_serializer_class = getattr(meta, 'list_serializer_class', ListSerializer)\n        return list_serializer_class(*args, **list_kwargs)\n\n    def to_internal_value(self, data):\n        raise NotImplementedError('`to_internal_value()` must be implemented.')\n\n    def to_representation(self, instance):\n        raise NotImplementedError('`to_representation()` must be implemented.')\n\n    def update(self, instance, validated_data):\n        raise NotImplementedError('`update()` must be implemented.')\n\n    def create(self, validated_data):\n        raise NotImplementedError('`create()` must be implemented.')\n\n    def save(self, **kwargs):\n        assert not hasattr(self, 'save_object'), (\n            'Serializer `%s.%s` has old-style version 2 `.save_object()` '\n            'that is no longer compatible with REST framework 3. '\n            'Use the new-style `.create()` and `.update()` methods instead.' %\n            (self.__class__.__module__, self.__class__.__name__)\n        )\n\n        assert hasattr(self, '_errors'), (\n            'You must call `.is_valid()` before calling `.save()`.'\n        )\n\n        assert not self.errors, (\n            'You cannot call `.save()` on a serializer with invalid data.'\n        )\n\n        # Guard against incorrect use of `serializer.save(commit=False)`\n        assert 'commit' not in kwargs, (\n            \"'commit' is not a valid keyword argument to the 'save()' method. \"\n            \"If you need to access data before committing to the database then \"\n            \"inspect 'serializer.validated_data' instead. \"\n            \"You can also pass additional keyword arguments to 'save()' if you \"\n            \"need to set extra attributes on the saved model instance. \"\n            \"For example: 'serializer.save(owner=request.user)'.'\"\n        )\n\n        assert not hasattr(self, '_data'), (\n            \"You cannot call `.save()` after accessing `serializer.data`.\"\n            \"If you need to access data before committing to the database then \"\n            \"inspect 'serializer.validated_data' instead. \"\n        )\n\n        validated_data = dict(\n            list(self.validated_data.items()) +\n            list(kwargs.items())\n        )\n\n        if self.instance is not None:\n            self.instance = self.update(self.instance, validated_data)\n            assert self.instance is not None, (\n                '`update()` did not return an object instance.'\n            )\n        else:\n            self.instance = self.create(validated_data)\n            assert self.instance is not None, (\n                '`create()` did not return an object instance.'\n            )\n\n        return self.instance\n\n    def is_valid(self, raise_exception=False):\n        assert not hasattr(self, 'restore_object'), (\n            'Serializer `%s.%s` has old-style version 2 `.restore_object()` '\n            'that is no longer compatible with REST framework 3. '\n            'Use the new-style `.create()` and `.update()` methods instead.' %\n            (self.__class__.__module__, self.__class__.__name__)\n        )\n\n        assert hasattr(self, 'initial_data'), (\n            'Cannot call `.is_valid()` as no `data=` keyword argument was '\n            'passed when instantiating the serializer instance.'\n        )\n\n        if not hasattr(self, '_validated_data'):\n            try:\n                self._validated_data = self.run_validation(self.initial_data)\n            except ValidationError as exc:\n                self._validated_data = {}\n                self._errors = exc.detail\n            else:\n                self._errors = {}\n\n        if self._errors and raise_exception:\n            raise ValidationError(self.errors)\n\n        return not bool(self._errors)\n\n    @property\n    def data(self):\n        if hasattr(self, 'initial_data') and not hasattr(self, '_validated_data'):\n            msg = (\n                'When a serializer is passed a `data` keyword argument you '\n                'must call `.is_valid()` before attempting to access the '\n                'serialized `.data` representation.\\n'\n                'You should either call `.is_valid()` first, '\n                'or access `.initial_data` instead.'\n            )\n            raise AssertionError(msg)\n\n        if not hasattr(self, '_data'):\n            if self.instance is not None and not getattr(self, '_errors', None):\n                self._data = self.to_representation(self.instance)\n            elif hasattr(self, '_validated_data') and not getattr(self, '_errors', None):\n                self._data = self.to_representation(self.validated_data)\n            else:\n                self._data = self.get_initial()\n        return self._data\n\n    @property\n    def errors(self):\n        if not hasattr(self, '_errors'):\n            msg = 'You must call `.is_valid()` before accessing `.errors`.'\n            raise AssertionError(msg)\n        return self._errors\n\n    @property\n    def validated_data(self):\n        if not hasattr(self, '_validated_data'):\n            msg = 'You must call `.is_valid()` before accessing `.validated_data`.'\n            raise AssertionError(msg)\n        return self._validated_data\n\n\n# Serializer & ListSerializer classes\n# -----------------------------------\n\nclass SerializerMetaclass(type):\n    \"\"\"\n    This metaclass sets a dictionary named `_declared_fields` on the class.\n\n    Any instances of `Field` included as attributes on either the class\n    or on any of its superclasses will be include in the\n    `_declared_fields` dictionary.\n    \"\"\"\n\n    @classmethod\n    def _get_declared_fields(cls, bases, attrs):\n        fields = [(field_name, attrs.pop(field_name))\n                  for field_name, obj in list(attrs.items())\n                  if isinstance(obj, Field)]\n        fields.sort(key=lambda x: x[1]._creation_counter)\n\n        # If this class is subclassing another Serializer, add that Serializer's\n        # fields.  Note that we loop over the bases in *reverse*. This is necessary\n        # in order to maintain the correct order of fields.\n        for base in reversed(bases):\n            if hasattr(base, '_declared_fields'):\n                fields = [\n                    (field_name, obj) for field_name, obj\n                    in base._declared_fields.items()\n                    if field_name not in attrs\n                ] + fields\n\n        return OrderedDict(fields)\n\n    def __new__(cls, name, bases, attrs):\n        attrs['_declared_fields'] = cls._get_declared_fields(bases, attrs)\n        return super(SerializerMetaclass, cls).__new__(cls, name, bases, attrs)\n\n\ndef as_serializer_error(exc):\n    assert isinstance(exc, (ValidationError, DjangoValidationError))\n\n    if isinstance(exc, DjangoValidationError):\n        detail = get_error_detail(exc)\n    else:\n        detail = exc.detail\n\n    if isinstance(detail, Mapping):\n        # If errors may be a dict we use the standard {key: list of values}.\n        # Here we ensure that all the values are *lists* of errors.\n        return {\n            key: value if isinstance(value, (list, Mapping)) else [value]\n            for key, value in detail.items()\n        }\n    elif isinstance(detail, list):\n        # Errors raised as a list are non-field errors.\n        return {\n            api_settings.NON_FIELD_ERRORS_KEY: detail\n        }\n    # Errors raised as a string are non-field errors.\n    return {\n        api_settings.NON_FIELD_ERRORS_KEY: [detail]\n    }\n\n\n@six.add_metaclass(SerializerMetaclass)\nclass Serializer(BaseSerializer):\n    default_error_messages = {\n        'invalid': _('Invalid data. Expected a dictionary, but got {datatype}.')\n    }\n\n    @property\n    def fields(self):\n        \"\"\"\n        A dictionary of {field_name: field_instance}.\n        \"\"\"\n        # `fields` is evaluated lazily. We do this to ensure that we don't\n        # have issues importing modules that use ModelSerializers as fields,\n        # even if Django's app-loading stage has not yet run.\n        if not hasattr(self, '_fields'):\n            self._fields = BindingDict(self)\n            for key, value in self.get_fields().items():\n                self._fields[key] = value\n        return self._fields\n\n    @cached_property\n    def _writable_fields(self):\n        return [\n            field for field in self.fields.values() if not field.read_only\n        ]\n\n    @cached_property\n    def _readable_fields(self):\n        return [\n            field for field in self.fields.values()\n            if not field.write_only\n        ]\n\n    def get_fields(self):\n        \"\"\"\n        Returns a dictionary of {field_name: field_instance}.\n        \"\"\"\n        # Every new serializer is created with a clone of the field instances.\n        # This allows users to dynamically modify the fields on a serializer\n        # instance without affecting every other serializer instance.\n        return copy.deepcopy(self._declared_fields)\n\n    def get_validators(self):\n        \"\"\"\n        Returns a list of validator callables.\n        \"\"\"\n        # Used by the lazily-evaluated `validators` property.\n        meta = getattr(self, 'Meta', None)\n        validators = getattr(meta, 'validators', None)\n        return validators[:] if validators else []\n\n    def get_initial(self):\n        if hasattr(self, 'initial_data'):\n            # initial_data may not be a valid type\n            if not isinstance(self.initial_data, Mapping):\n                return OrderedDict()\n\n            return OrderedDict([\n                (field_name, field.get_value(self.initial_data))\n                for field_name, field in self.fields.items()\n                if (field.get_value(self.initial_data) is not empty) and\n                not field.read_only\n            ])\n\n        return OrderedDict([\n            (field.field_name, field.get_initial())\n            for field in self.fields.values()\n            if not field.read_only\n        ])\n\n    def get_value(self, dictionary):\n        # We override the default field access in order to support\n        # nested HTML forms.\n        if html.is_html_input(dictionary):\n            return html.parse_html_dict(dictionary, prefix=self.field_name) or empty\n        return dictionary.get(self.field_name, empty)\n\n    def run_validation(self, data=empty):\n        \"\"\"\n        We override the default `run_validation`, because the validation\n        performed by validators and the `.validate()` method should\n        be coerced into an error dictionary with a 'non_fields_error' key.\n        \"\"\"\n        (is_empty_value, data) = self.validate_empty_values(data)\n        if is_empty_value:\n            return data\n\n        value = self.to_internal_value(data)\n        try:\n            self.run_validators(value)\n            value = self.validate(value)\n            assert value is not None, '.validate() should return the validated data'\n        except (ValidationError, DjangoValidationError) as exc:\n            raise ValidationError(detail=as_serializer_error(exc))\n\n        return value\n\n    def _read_only_defaults(self):\n        fields = [\n            field for field in self.fields.values()\n            if (field.read_only) and (field.default != empty) and (field.source != '*') and ('.' not in field.source)\n        ]\n\n        defaults = OrderedDict()\n        for field in fields:\n            try:\n                default = field.get_default()\n            except SkipField:\n                continue\n            defaults[field.field_name] = default\n\n        return defaults\n\n    def run_validators(self, value):\n        \"\"\"\n        Add read_only fields with defaults to value before running validators.\n        \"\"\"\n        to_validate = self._read_only_defaults()\n        to_validate.update(value)\n        super(Serializer, self).run_validators(to_validate)\n\n    def to_internal_value(self, data):\n        \"\"\"\n        Dict of native values <- Dict of primitive datatypes.\n        \"\"\"\n        if not isinstance(data, Mapping):\n            message = self.error_messages['invalid'].format(\n                datatype=type(data).__name__\n            )\n            raise ValidationError({\n                api_settings.NON_FIELD_ERRORS_KEY: [message]\n            }, code='invalid')\n\n        ret = OrderedDict()\n        errors = OrderedDict()\n        fields = self._writable_fields\n\n        for field in fields:\n            validate_method = getattr(self, 'validate_' + field.field_name, None)\n            primitive_value = field.get_value(data)\n            try:\n                validated_value = field.run_validation(primitive_value)\n                if validate_method is not None:\n                    validated_value = validate_method(validated_value)\n            except ValidationError as exc:\n                errors[field.field_name] = exc.detail\n            except DjangoValidationError as exc:\n                errors[field.field_name] = get_error_detail(exc)\n            except SkipField:\n                pass\n            else:\n                set_value(ret, field.source_attrs, validated_value)\n\n        if errors:\n            raise ValidationError(errors)\n\n        return ret\n\n    def to_representation(self, instance):\n        \"\"\"\n        Object instance -> Dict of primitive datatypes.\n        \"\"\"\n        ret = OrderedDict()\n        fields = self._readable_fields\n\n        for field in fields:\n            try:\n                attribute = field.get_attribute(instance)\n            except SkipField:\n                continue\n\n            # We skip `to_representation` for `None` values so that fields do\n            # not have to explicitly deal with that case.\n            #\n            # For related fields with `use_pk_only_optimization` we need to\n            # resolve the pk value.\n            check_for_none = attribute.pk if isinstance(attribute, PKOnlyObject) else attribute\n            if check_for_none is None:\n                ret[field.field_name] = None\n            else:\n                ret[field.field_name] = field.to_representation(attribute)\n\n        return ret\n\n    def validate(self, attrs):\n        return attrs\n\n    def __repr__(self):\n        return unicode_to_repr(representation.serializer_repr(self, indent=1))\n\n    # The following are used for accessing `BoundField` instances on the\n    # serializer, for the purposes of presenting a form-like API onto the\n    # field values and field errors.\n\n    def __iter__(self):\n        for field in self.fields.values():\n            yield self[field.field_name]\n\n    def __getitem__(self, key):\n        field = self.fields[key]\n        value = self.data.get(key)\n        error = self.errors.get(key) if hasattr(self, '_errors') else None\n        if isinstance(field, Serializer):\n            return NestedBoundField(field, value, error)\n        if isinstance(field, JSONField):\n            return JSONBoundField(field, value, error)\n        return BoundField(field, value, error)\n\n    # Include a backlink to the serializer class on return objects.\n    # Allows renderers such as HTMLFormRenderer to get the full field info.\n\n    @property\n    def data(self):\n        ret = super(Serializer, self).data\n        return ReturnDict(ret, serializer=self)\n\n    @property\n    def errors(self):\n        ret = super(Serializer, self).errors\n        if isinstance(ret, list) and len(ret) == 1 and getattr(ret[0], 'code', None) == 'null':\n            # Edge case. Provide a more descriptive error than\n            # \"this field may not be null\", when no data is passed.\n            detail = ErrorDetail('No data provided', code='null')\n            ret = {api_settings.NON_FIELD_ERRORS_KEY: [detail]}\n        return ReturnDict(ret, serializer=self)\n\n\n# There's some replication of `ListField` here,\n# but that's probably better than obfuscating the call hierarchy.\n\nclass ListSerializer(BaseSerializer):\n    child = None\n    many = True\n\n    default_error_messages = {\n        'not_a_list': _('Expected a list of items but got type \"{input_type}\".'),\n        'empty': _('This list may not be empty.')\n    }\n\n    def __init__(self, *args, **kwargs):\n        self.child = kwargs.pop('child', copy.deepcopy(self.child))\n        self.allow_empty = kwargs.pop('allow_empty', True)\n        assert self.child is not None, '`child` is a required argument.'\n        assert not inspect.isclass(self.child), '`child` has not been instantiated.'\n        super(ListSerializer, self).__init__(*args, **kwargs)\n        self.child.bind(field_name='', parent=self)\n\n    def bind(self, field_name, parent):\n        super(ListSerializer, self).bind(field_name, parent)\n        self.partial = self.parent.partial\n\n    def get_initial(self):\n        if hasattr(self, 'initial_data'):\n            return self.to_representation(self.initial_data)\n        return []\n\n    def get_value(self, dictionary):\n        \"\"\"\n        Given the input dictionary, return the field value.\n        \"\"\"\n        # We override the default field access in order to support\n        # lists in HTML forms.\n        if html.is_html_input(dictionary):\n            return html.parse_html_list(dictionary, prefix=self.field_name)\n        return dictionary.get(self.field_name, empty)\n\n    def run_validation(self, data=empty):\n        \"\"\"\n        We override the default `run_validation`, because the validation\n        performed by validators and the `.validate()` method should\n        be coerced into an error dictionary with a 'non_fields_error' key.\n        \"\"\"\n        (is_empty_value, data) = self.validate_empty_values(data)\n        if is_empty_value:\n            return data\n\n        value = self.to_internal_value(data)\n        try:\n            self.run_validators(value)\n            value = self.validate(value)\n            assert value is not None, '.validate() should return the validated data'\n        except (ValidationError, DjangoValidationError) as exc:\n            raise ValidationError(detail=as_serializer_error(exc))\n\n        return value\n\n    def to_internal_value(self, data):\n        \"\"\"\n        List of dicts of native values <- List of dicts of primitive datatypes.\n        \"\"\"\n        if html.is_html_input(data):\n            data = html.parse_html_list(data)\n\n        if not isinstance(data, list):\n            message = self.error_messages['not_a_list'].format(\n                input_type=type(data).__name__\n            )\n            raise ValidationError({\n                api_settings.NON_FIELD_ERRORS_KEY: [message]\n            }, code='not_a_list')\n\n        if not self.allow_empty and len(data) == 0:\n            if self.parent and self.partial:\n                raise SkipField()\n\n            message = self.error_messages['empty']\n            raise ValidationError({\n                api_settings.NON_FIELD_ERRORS_KEY: [message]\n            }, code='empty')\n\n        ret = []\n        errors = []\n\n        for item in data:\n            try:\n                validated = self.child.run_validation(item)\n            except ValidationError as exc:\n                errors.append(exc.detail)\n            else:\n                ret.append(validated)\n                errors.append({})\n\n        if any(errors):\n            raise ValidationError(errors)\n\n        return ret\n\n    def to_representation(self, data):\n        \"\"\"\n        List of object instances -> List of dicts of primitive datatypes.\n        \"\"\"\n        # Dealing with nested relationships, data can be a Manager,\n        # so, first get a queryset from the Manager if needed\n        iterable = data.all() if isinstance(data, models.Manager) else data\n\n        return [\n            self.child.to_representation(item) for item in iterable\n        ]\n\n    def validate(self, attrs):\n        return attrs\n\n    def update(self, instance, validated_data):\n        raise NotImplementedError(\n            \"Serializers with many=True do not support multiple update by \"\n            \"default, only multiple create. For updates it is unclear how to \"\n            \"deal with insertions and deletions. If you need to support \"\n            \"multiple update, use a `ListSerializer` class and override \"\n            \"`.update()` so you can specify the behavior exactly.\"\n        )\n\n    def create(self, validated_data):\n        return [\n            self.child.create(attrs) for attrs in validated_data\n        ]\n\n    def save(self, **kwargs):\n        \"\"\"\n        Save and return a list of object instances.\n        \"\"\"\n        # Guard against incorrect use of `serializer.save(commit=False)`\n        assert 'commit' not in kwargs, (\n            \"'commit' is not a valid keyword argument to the 'save()' method. \"\n            \"If you need to access data before committing to the database then \"\n            \"inspect 'serializer.validated_data' instead. \"\n            \"You can also pass additional keyword arguments to 'save()' if you \"\n            \"need to set extra attributes on the saved model instance. \"\n            \"For example: 'serializer.save(owner=request.user)'.'\"\n        )\n\n        validated_data = [\n            dict(list(attrs.items()) + list(kwargs.items()))\n            for attrs in self.validated_data\n        ]\n\n        if self.instance is not None:\n            self.instance = self.update(self.instance, validated_data)\n            assert self.instance is not None, (\n                '`update()` did not return an object instance.'\n            )\n        else:\n            self.instance = self.create(validated_data)\n            assert self.instance is not None, (\n                '`create()` did not return an object instance.'\n            )\n\n        return self.instance\n\n    def is_valid(self, raise_exception=False):\n        # This implementation is the same as the default,\n        # except that we use lists, rather than dicts, as the empty case.\n        assert hasattr(self, 'initial_data'), (\n            'Cannot call `.is_valid()` as no `data=` keyword argument was '\n            'passed when instantiating the serializer instance.'\n        )\n\n        if not hasattr(self, '_validated_data'):\n            try:\n                self._validated_data = self.run_validation(self.initial_data)\n            except ValidationError as exc:\n                self._validated_data = []\n                self._errors = exc.detail\n            else:\n                self._errors = []\n\n        if self._errors and raise_exception:\n            raise ValidationError(self.errors)\n\n        return not bool(self._errors)\n\n    def __repr__(self):\n        return unicode_to_repr(representation.list_repr(self, indent=1))\n\n    # Include a backlink to the serializer class on return objects.\n    # Allows renderers such as HTMLFormRenderer to get the full field info.\n\n    @property\n    def data(self):\n        ret = super(ListSerializer, self).data\n        return ReturnList(ret, serializer=self)\n\n    @property\n    def errors(self):\n        ret = super(ListSerializer, self).errors\n        if isinstance(ret, list) and len(ret) == 1 and getattr(ret[0], 'code', None) == 'null':\n            # Edge case. Provide a more descriptive error than\n            # \"this field may not be null\", when no data is passed.\n            detail = ErrorDetail('No data provided', code='null')\n            ret = {api_settings.NON_FIELD_ERRORS_KEY: [detail]}\n        if isinstance(ret, dict):\n            return ReturnDict(ret, serializer=self)\n        return ReturnList(ret, serializer=self)\n\n\n# ModelSerializer & HyperlinkedModelSerializer\n# --------------------------------------------\n\ndef raise_errors_on_nested_writes(method_name, serializer, validated_data):\n    \"\"\"\n    Give explicit errors when users attempt to pass writable nested data.\n\n    If we don't do this explicitly they'd get a less helpful error when\n    calling `.save()` on the serializer.\n\n    We don't *automatically* support these sorts of nested writes because\n    there are too many ambiguities to define a default behavior.\n\n    Eg. Suppose we have a `UserSerializer` with a nested profile. How should\n    we handle the case of an update, where the `profile` relationship does\n    not exist? Any of the following might be valid:\n\n    * Raise an application error.\n    * Silently ignore the nested part of the update.\n    * Automatically create a profile instance.\n    \"\"\"\n\n    # Ensure we don't have a writable nested field. For example:\n    #\n    # class UserSerializer(ModelSerializer):\n    #     ...\n    #     profile = ProfileSerializer()\n    assert not any(\n        isinstance(field, BaseSerializer) and\n        (field.source in validated_data) and\n        isinstance(validated_data[field.source], (list, dict))\n        for field in serializer._writable_fields\n    ), (\n        'The `.{method_name}()` method does not support writable nested '\n        'fields by default.\\nWrite an explicit `.{method_name}()` method for '\n        'serializer `{module}.{class_name}`, or set `read_only=True` on '\n        'nested serializer fields.'.format(\n            method_name=method_name,\n            module=serializer.__class__.__module__,\n            class_name=serializer.__class__.__name__\n        )\n    )\n\n    # Ensure we don't have a writable dotted-source field. For example:\n    #\n    # class UserSerializer(ModelSerializer):\n    #     ...\n    #     address = serializer.CharField('profile.address')\n    assert not any(\n        '.' in field.source and\n        (key in validated_data) and\n        isinstance(validated_data[key], (list, dict))\n        for key, field in serializer.fields.items()\n    ), (\n        'The `.{method_name}()` method does not support writable dotted-source '\n        'fields by default.\\nWrite an explicit `.{method_name}()` method for '\n        'serializer `{module}.{class_name}`, or set `read_only=True` on '\n        'dotted-source serializer fields.'.format(\n            method_name=method_name,\n            module=serializer.__class__.__module__,\n            class_name=serializer.__class__.__name__\n        )\n    )\n\n\nclass ModelSerializer(Serializer):\n    \"\"\"\n    A `ModelSerializer` is just a regular `Serializer`, except that:\n\n    * A set of default fields are automatically populated.\n    * A set of default validators are automatically populated.\n    * Default `.create()` and `.update()` implementations are provided.\n\n    The process of automatically determining a set of serializer fields\n    based on the model fields is reasonably complex, but you almost certainly\n    don't need to dig into the implementation.\n\n    If the `ModelSerializer` class *doesn't* generate the set of fields that\n    you need you should either declare the extra/differing fields explicitly on\n    the serializer class, or simply use a `Serializer` class.\n    \"\"\"\n    serializer_field_mapping = {\n        models.AutoField: IntegerField,\n        models.BigIntegerField: IntegerField,\n        models.BooleanField: BooleanField,\n        models.CharField: CharField,\n        models.CommaSeparatedIntegerField: CharField,\n        models.DateField: DateField,\n        models.DateTimeField: DateTimeField,\n        models.DecimalField: DecimalField,\n        models.EmailField: EmailField,\n        models.Field: ModelField,\n        models.FileField: FileField,\n        models.FloatField: FloatField,\n        models.ImageField: ImageField,\n        models.IntegerField: IntegerField,\n        models.NullBooleanField: NullBooleanField,\n        models.PositiveIntegerField: IntegerField,\n        models.PositiveSmallIntegerField: IntegerField,\n        models.SlugField: SlugField,\n        models.SmallIntegerField: IntegerField,\n        models.TextField: CharField,\n        models.TimeField: TimeField,\n        models.URLField: URLField,\n        models.GenericIPAddressField: IPAddressField,\n        models.FilePathField: FilePathField,\n    }\n    if ModelDurationField is not None:\n        serializer_field_mapping[ModelDurationField] = DurationField\n    serializer_related_field = PrimaryKeyRelatedField\n    serializer_related_to_field = SlugRelatedField\n    serializer_url_field = HyperlinkedIdentityField\n    serializer_choice_field = ChoiceField\n\n    # The field name for hyperlinked identity fields. Defaults to 'url'.\n    # You can modify this using the API setting.\n    #\n    # Note that if you instead need modify this on a per-serializer basis,\n    # you'll also need to ensure you update the `create` method on any generic\n    # views, to correctly handle the 'Location' response header for\n    # \"HTTP 201 Created\" responses.\n    url_field_name = None\n\n    # Default `create` and `update` behavior...\n    def create(self, validated_data):\n        \"\"\"\n        We have a bit of extra checking around this in order to provide\n        descriptive messages when something goes wrong, but this method is\n        essentially just:\n\n            return ExampleModel.objects.create(**validated_data)\n\n        If there are many to many fields present on the instance then they\n        cannot be set until the model is instantiated, in which case the\n        implementation is like so:\n\n            example_relationship = validated_data.pop('example_relationship')\n            instance = ExampleModel.objects.create(**validated_data)\n            instance.example_relationship = example_relationship\n            return instance\n\n        The default implementation also does not handle nested relationships.\n        If you want to support writable nested relationships you'll need\n        to write an explicit `.create()` method.\n        \"\"\"\n        raise_errors_on_nested_writes('create', self, validated_data)\n\n        ModelClass = self.Meta.model\n\n        # Remove many-to-many relationships from validated_data.\n        # They are not valid arguments to the default `.create()` method,\n        # as they require that the instance has already been saved.\n        info = model_meta.get_field_info(ModelClass)\n        many_to_many = {}\n        for field_name, relation_info in info.relations.items():\n            if relation_info.to_many and (field_name in validated_data):\n                many_to_many[field_name] = validated_data.pop(field_name)\n\n        try:\n            instance = ModelClass.objects.create(**validated_data)\n        except TypeError:\n            tb = traceback.format_exc()\n            msg = (\n                'Got a `TypeError` when calling `%s.objects.create()`. '\n                'This may be because you have a writable field on the '\n                'serializer class that is not a valid argument to '\n                '`%s.objects.create()`. You may need to make the field '\n                'read-only, or override the %s.create() method to handle '\n                'this correctly.\\nOriginal exception was:\\n %s' %\n                (\n                    ModelClass.__name__,\n                    ModelClass.__name__,\n                    self.__class__.__name__,\n                    tb\n                )\n            )\n            raise TypeError(msg)\n\n        # Save many-to-many relationships after the instance is created.\n        if many_to_many:\n            for field_name, value in many_to_many.items():\n                field = getattr(instance, field_name)\n                field.set(value)\n\n        return instance\n\n    def update(self, instance, validated_data):\n        raise_errors_on_nested_writes('update', self, validated_data)\n        info = model_meta.get_field_info(instance)\n\n        # Simply set each attribute on the instance, and then save it.\n        # Note that unlike `.create()` we don't need to treat many-to-many\n        # relationships as being a special case. During updates we already\n        # have an instance pk for the relationships to be associated with.\n        for attr, value in validated_data.items():\n            if attr in info.relations and info.relations[attr].to_many:\n                field = getattr(instance, attr)\n                field.set(value)\n            else:\n                setattr(instance, attr, value)\n        instance.save()\n\n        return instance\n\n    # Determine the fields to apply...\n\n    def get_fields(self):\n        \"\"\"\n        Return the dict of field names -> field instances that should be\n        used for `self.fields` when instantiating the serializer.\n        \"\"\"\n        if self.url_field_name is None:\n            self.url_field_name = api_settings.URL_FIELD_NAME\n\n        assert hasattr(self, 'Meta'), (\n            'Class {serializer_class} missing \"Meta\" attribute'.format(\n                serializer_class=self.__class__.__name__\n            )\n        )\n        assert hasattr(self.Meta, 'model'), (\n            'Class {serializer_class} missing \"Meta.model\" attribute'.format(\n                serializer_class=self.__class__.__name__\n            )\n        )\n        if model_meta.is_abstract_model(self.Meta.model):\n            raise ValueError(\n                'Cannot use ModelSerializer with Abstract Models.'\n            )\n\n        declared_fields = copy.deepcopy(self._declared_fields)\n        model = getattr(self.Meta, 'model')\n        depth = getattr(self.Meta, 'depth', 0)\n\n        if depth is not None:\n            assert depth >= 0, \"'depth' may not be negative.\"\n            assert depth <= 10, \"'depth' may not be greater than 10.\"\n\n        # Retrieve metadata about fields & relationships on the model class.\n        info = model_meta.get_field_info(model)\n        field_names = self.get_field_names(declared_fields, info)\n\n        # Determine any extra field arguments and hidden fields that\n        # should be included\n        extra_kwargs = self.get_extra_kwargs()\n        extra_kwargs, hidden_fields = self.get_uniqueness_extra_kwargs(\n            field_names, declared_fields, extra_kwargs\n        )\n\n        # Determine the fields that should be included on the serializer.\n        fields = OrderedDict()\n\n        for field_name in field_names:\n            # If the field is explicitly declared on the class then use that.\n            if field_name in declared_fields:\n                fields[field_name] = declared_fields[field_name]\n                continue\n\n            extra_field_kwargs = extra_kwargs.get(field_name, {})\n            source = extra_field_kwargs.get('source', '*')\n            if source == '*':\n                source = field_name\n\n            # Determine the serializer field class and keyword arguments.\n            field_class, field_kwargs = self.build_field(\n                source, info, model, depth\n            )\n\n            # Include any kwargs defined in `Meta.extra_kwargs`\n            field_kwargs = self.include_extra_kwargs(\n                field_kwargs, extra_field_kwargs\n            )\n\n            # Create the serializer field.\n            fields[field_name] = field_class(**field_kwargs)\n\n        # Add in any hidden fields.\n        fields.update(hidden_fields)\n\n        return fields\n\n    # Methods for determining the set of field names to include...\n\n    def get_field_names(self, declared_fields, info):\n        \"\"\"\n        Returns the list of all field names that should be created when\n        instantiating this serializer class. This is based on the default\n        set of fields, but also takes into account the `Meta.fields` or\n        `Meta.exclude` options if they have been specified.\n        \"\"\"\n        fields = getattr(self.Meta, 'fields', None)\n        exclude = getattr(self.Meta, 'exclude', None)\n\n        if fields and fields != ALL_FIELDS and not isinstance(fields, (list, tuple)):\n            raise TypeError(\n                'The `fields` option must be a list or tuple or \"__all__\". '\n                'Got %s.' % type(fields).__name__\n            )\n\n        if exclude and not isinstance(exclude, (list, tuple)):\n            raise TypeError(\n                'The `exclude` option must be a list or tuple. Got %s.' %\n                type(exclude).__name__\n            )\n\n        assert not (fields and exclude), (\n            \"Cannot set both 'fields' and 'exclude' options on \"\n            \"serializer {serializer_class}.\".format(\n                serializer_class=self.__class__.__name__\n            )\n        )\n\n        assert not (fields is None and exclude is None), (\n            \"Creating a ModelSerializer without either the 'fields' attribute \"\n            \"or the 'exclude' attribute has been deprecated since 3.3.0, \"\n            \"and is now disallowed. Add an explicit fields = '__all__' to the \"\n            \"{serializer_class} serializer.\".format(\n                serializer_class=self.__class__.__name__\n            ),\n        )\n\n        if fields == ALL_FIELDS:\n            fields = None\n\n        if fields is not None:\n            # Ensure that all declared fields have also been included in the\n            # `Meta.fields` option.\n\n            # Do not require any fields that are declared in a parent class,\n            # in order to allow serializer subclasses to only include\n            # a subset of fields.\n            required_field_names = set(declared_fields)\n            for cls in self.__class__.__bases__:\n                required_field_names -= set(getattr(cls, '_declared_fields', []))\n\n            for field_name in required_field_names:\n                assert field_name in fields, (\n                    \"The field '{field_name}' was declared on serializer \"\n                    \"{serializer_class}, but has not been included in the \"\n                    \"'fields' option.\".format(\n                        field_name=field_name,\n                        serializer_class=self.__class__.__name__\n                    )\n                )\n            return fields\n\n        # Use the default set of field names if `Meta.fields` is not specified.\n        fields = self.get_default_field_names(declared_fields, info)\n\n        if exclude is not None:\n            # If `Meta.exclude` is included, then remove those fields.\n            for field_name in exclude:\n                assert field_name not in self._declared_fields, (\n                    \"Cannot both declare the field '{field_name}' and include \"\n                    \"it in the {serializer_class} 'exclude' option. Remove the \"\n                    \"field or, if inherited from a parent serializer, disable \"\n                    \"with `{field_name} = None`.\"\n                    .format(\n                        field_name=field_name,\n                        serializer_class=self.__class__.__name__\n                    )\n                )\n\n                assert field_name in fields, (\n                    \"The field '{field_name}' was included on serializer \"\n                    \"{serializer_class} in the 'exclude' option, but does \"\n                    \"not match any model field.\".format(\n                        field_name=field_name,\n                        serializer_class=self.__class__.__name__\n                    )\n                )\n                fields.remove(field_name)\n\n        return fields\n\n    def get_default_field_names(self, declared_fields, model_info):\n        \"\"\"\n        Return the default list of field names that will be used if the\n        `Meta.fields` option is not specified.\n        \"\"\"\n        return (\n            [model_info.pk.name] +\n            list(declared_fields) +\n            list(model_info.fields) +\n            list(model_info.forward_relations)\n        )\n\n    # Methods for constructing serializer fields...\n\n    def build_field(self, field_name, info, model_class, nested_depth):\n        \"\"\"\n        Return a two tuple of (cls, kwargs) to build a serializer field with.\n        \"\"\"\n        if field_name in info.fields_and_pk:\n            model_field = info.fields_and_pk[field_name]\n            return self.build_standard_field(field_name, model_field)\n\n        elif field_name in info.relations:\n            relation_info = info.relations[field_name]\n            if not nested_depth:\n                return self.build_relational_field(field_name, relation_info)\n            else:\n                return self.build_nested_field(field_name, relation_info, nested_depth)\n\n        elif hasattr(model_class, field_name):\n            return self.build_property_field(field_name, model_class)\n\n        elif field_name == self.url_field_name:\n            return self.build_url_field(field_name, model_class)\n\n        return self.build_unknown_field(field_name, model_class)\n\n    def build_standard_field(self, field_name, model_field):\n        \"\"\"\n        Create regular model fields.\n        \"\"\"\n        field_mapping = ClassLookupDict(self.serializer_field_mapping)\n\n        field_class = field_mapping[model_field]\n        field_kwargs = get_field_kwargs(field_name, model_field)\n\n        # Special case to handle when a OneToOneField is also the primary key\n        if model_field.one_to_one and model_field.primary_key:\n            field_class = self.serializer_related_field\n            field_kwargs['queryset'] = model_field.related_model.objects\n\n        if 'choices' in field_kwargs:\n            # Fields with choices get coerced into `ChoiceField`\n            # instead of using their regular typed field.\n            field_class = self.serializer_choice_field\n            # Some model fields may introduce kwargs that would not be valid\n            # for the choice field. We need to strip these out.\n            # Eg. models.DecimalField(max_digits=3, decimal_places=1, choices=DECIMAL_CHOICES)\n            valid_kwargs = {\n                'read_only', 'write_only',\n                'required', 'default', 'initial', 'source',\n                'label', 'help_text', 'style',\n                'error_messages', 'validators', 'allow_null', 'allow_blank',\n                'choices'\n            }\n            for key in list(field_kwargs):\n                if key not in valid_kwargs:\n                    field_kwargs.pop(key)\n\n        if not issubclass(field_class, ModelField):\n            # `model_field` is only valid for the fallback case of\n            # `ModelField`, which is used when no other typed field\n            # matched to the model field.\n            field_kwargs.pop('model_field', None)\n\n        if not issubclass(field_class, CharField) and not issubclass(field_class, ChoiceField):\n            # `allow_blank` is only valid for textual fields.\n            field_kwargs.pop('allow_blank', None)\n\n        if postgres_fields and isinstance(model_field, postgres_fields.ArrayField):\n            # Populate the `child` argument on `ListField` instances generated\n            # for the PostgreSQL specific `ArrayField`.\n            child_model_field = model_field.base_field\n            child_field_class, child_field_kwargs = self.build_standard_field(\n                'child', child_model_field\n            )\n            field_kwargs['child'] = child_field_class(**child_field_kwargs)\n\n        return field_class, field_kwargs\n\n    def build_relational_field(self, field_name, relation_info):\n        \"\"\"\n        Create fields for forward and reverse relationships.\n        \"\"\"\n        field_class = self.serializer_related_field\n        field_kwargs = get_relation_kwargs(field_name, relation_info)\n\n        to_field = field_kwargs.pop('to_field', None)\n        if to_field and not relation_info.reverse and not relation_info.related_model._meta.get_field(to_field).primary_key:\n            field_kwargs['slug_field'] = to_field\n            field_class = self.serializer_related_to_field\n\n        # `view_name` is only valid for hyperlinked relationships.\n        if not issubclass(field_class, HyperlinkedRelatedField):\n            field_kwargs.pop('view_name', None)\n\n        return field_class, field_kwargs\n\n    def build_nested_field(self, field_name, relation_info, nested_depth):\n        \"\"\"\n        Create nested fields for forward and reverse relationships.\n        \"\"\"\n        class NestedSerializer(ModelSerializer):\n            class Meta:\n                model = relation_info.related_model\n                depth = nested_depth - 1\n                fields = '__all__'\n\n        field_class = NestedSerializer\n        field_kwargs = get_nested_relation_kwargs(relation_info)\n\n        return field_class, field_kwargs\n\n    def build_property_field(self, field_name, model_class):\n        \"\"\"\n        Create a read only field for model methods and properties.\n        \"\"\"\n        field_class = ReadOnlyField\n        field_kwargs = {}\n\n        return field_class, field_kwargs\n\n    def build_url_field(self, field_name, model_class):\n        \"\"\"\n        Create a field representing the object's own URL.\n        \"\"\"\n        field_class = self.serializer_url_field\n        field_kwargs = get_url_kwargs(model_class)\n\n        return field_class, field_kwargs\n\n    def build_unknown_field(self, field_name, model_class):\n        \"\"\"\n        Raise an error on any unknown fields.\n        \"\"\"\n        raise ImproperlyConfigured(\n            'Field name `%s` is not valid for model `%s`.' %\n            (field_name, model_class.__name__)\n        )\n\n    def include_extra_kwargs(self, kwargs, extra_kwargs):\n        \"\"\"\n        Include any 'extra_kwargs' that have been included for this field,\n        possibly removing any incompatible existing keyword arguments.\n        \"\"\"\n        if extra_kwargs.get('read_only', False):\n            for attr in [\n                'required', 'default', 'allow_blank', 'allow_null',\n                'min_length', 'max_length', 'min_value', 'max_value',\n                'validators', 'queryset'\n            ]:\n                kwargs.pop(attr, None)\n\n        if extra_kwargs.get('default') and kwargs.get('required') is False:\n            kwargs.pop('required')\n\n        if extra_kwargs.get('read_only', kwargs.get('read_only', False)):\n            extra_kwargs.pop('required', None)  # Read only fields should always omit the 'required' argument.\n\n        kwargs.update(extra_kwargs)\n\n        return kwargs\n\n    # Methods for determining additional keyword arguments to apply...\n\n    def get_extra_kwargs(self):\n        \"\"\"\n        Return a dictionary mapping field names to a dictionary of\n        additional keyword arguments.\n        \"\"\"\n        extra_kwargs = copy.deepcopy(getattr(self.Meta, 'extra_kwargs', {}))\n\n        read_only_fields = getattr(self.Meta, 'read_only_fields', None)\n        if read_only_fields is not None:\n            if not isinstance(read_only_fields, (list, tuple)):\n                raise TypeError(\n                    'The `read_only_fields` option must be a list or tuple. '\n                    'Got %s.' % type(read_only_fields).__name__\n                )\n            for field_name in read_only_fields:\n                kwargs = extra_kwargs.get(field_name, {})\n                kwargs['read_only'] = True\n                extra_kwargs[field_name] = kwargs\n\n        else:\n            # Guard against the possible misspelling `readonly_fields` (used\n            # by the Django admin and others).\n            assert not hasattr(self.Meta, 'readonly_fields'), (\n                'Serializer `%s.%s` has field `readonly_fields`; '\n                'the correct spelling for the option is `read_only_fields`.' %\n                (self.__class__.__module__, self.__class__.__name__)\n            )\n\n        return extra_kwargs\n\n    def get_uniqueness_extra_kwargs(self, field_names, declared_fields, extra_kwargs):\n        \"\"\"\n        Return any additional field options that need to be included as a\n        result of uniqueness constraints on the model. This is returned as\n        a two-tuple of:\n\n        ('dict of updated extra kwargs', 'mapping of hidden fields')\n        \"\"\"\n        if getattr(self.Meta, 'validators', None) is not None:\n            return (extra_kwargs, {})\n\n        model = getattr(self.Meta, 'model')\n        model_fields = self._get_model_fields(\n            field_names, declared_fields, extra_kwargs\n        )\n\n        # Determine if we need any additional `HiddenField` or extra keyword\n        # arguments to deal with `unique_for` dates that are required to\n        # be in the input data in order to validate it.\n        unique_constraint_names = set()\n\n        for model_field in model_fields.values():\n            # Include each of the `unique_for_*` field names.\n            unique_constraint_names |= {model_field.unique_for_date, model_field.unique_for_month,\n                                        model_field.unique_for_year}\n\n        unique_constraint_names -= {None}\n\n        # Include each of the `unique_together` field names,\n        # so long as all the field names are included on the serializer.\n        for parent_class in [model] + list(model._meta.parents):\n            for unique_together_list in parent_class._meta.unique_together:\n                if set(field_names).issuperset(set(unique_together_list)):\n                    unique_constraint_names |= set(unique_together_list)\n\n        # Now we have all the field names that have uniqueness constraints\n        # applied, we can add the extra 'required=...' or 'default=...'\n        # arguments that are appropriate to these fields, or add a `HiddenField` for it.\n        hidden_fields = {}\n        uniqueness_extra_kwargs = {}\n\n        for unique_constraint_name in unique_constraint_names:\n            # Get the model field that is referred too.\n            unique_constraint_field = model._meta.get_field(unique_constraint_name)\n\n            if getattr(unique_constraint_field, 'auto_now_add', None):\n                default = CreateOnlyDefault(timezone.now)\n            elif getattr(unique_constraint_field, 'auto_now', None):\n                default = timezone.now\n            elif unique_constraint_field.has_default():\n                default = unique_constraint_field.default\n            else:\n                default = empty\n\n            if unique_constraint_name in model_fields:\n                # The corresponding field is present in the serializer\n                if default is empty:\n                    uniqueness_extra_kwargs[unique_constraint_name] = {'required': True}\n                else:\n                    uniqueness_extra_kwargs[unique_constraint_name] = {'default': default}\n            elif default is not empty:\n                # The corresponding field is not present in the\n                # serializer. We have a default to use for it, so\n                # add in a hidden field that populates it.\n                hidden_fields[unique_constraint_name] = HiddenField(default=default)\n\n        # Update `extra_kwargs` with any new options.\n        for key, value in uniqueness_extra_kwargs.items():\n            if key in extra_kwargs:\n                value.update(extra_kwargs[key])\n            extra_kwargs[key] = value\n\n        return extra_kwargs, hidden_fields\n\n    def _get_model_fields(self, field_names, declared_fields, extra_kwargs):\n        \"\"\"\n        Returns all the model fields that are being mapped to by fields\n        on the serializer class.\n        Returned as a dict of 'model field name' -> 'model field'.\n        Used internally by `get_uniqueness_field_options`.\n        \"\"\"\n        model = getattr(self.Meta, 'model')\n        model_fields = {}\n\n        for field_name in field_names:\n            if field_name in declared_fields:\n                # If the field is declared on the serializer\n                field = declared_fields[field_name]\n                source = field.source or field_name\n            else:\n                try:\n                    source = extra_kwargs[field_name]['source']\n                except KeyError:\n                    source = field_name\n\n            if '.' in source or source == '*':\n                # Model fields will always have a simple source mapping,\n                # they can't be nested attribute lookups.\n                continue\n\n            try:\n                field = model._meta.get_field(source)\n                if isinstance(field, DjangoModelField):\n                    model_fields[source] = field\n            except FieldDoesNotExist:\n                pass\n\n        return model_fields\n\n    # Determine the validators to apply...\n\n    def get_validators(self):\n        \"\"\"\n        Determine the set of validators to use when instantiating serializer.\n        \"\"\"\n        # If the validators have been declared explicitly then use that.\n        validators = getattr(getattr(self, 'Meta', None), 'validators', None)\n        if validators is not None:\n            return validators[:]\n\n        # Otherwise use the default set of validators.\n        return (\n            self.get_unique_together_validators() +\n            self.get_unique_for_date_validators()\n        )\n\n    def get_unique_together_validators(self):\n        \"\"\"\n        Determine a default set of validators for any unique_together constraints.\n        \"\"\"\n        model_class_inheritance_tree = (\n            [self.Meta.model] +\n            list(self.Meta.model._meta.parents)\n        )\n\n        # The field names we're passing though here only include fields\n        # which may map onto a model field. Any dotted field name lookups\n        # cannot map to a field, and must be a traversal, so we're not\n        # including those.\n        field_names = {\n            field.source for field in self._writable_fields\n            if (field.source != '*') and ('.' not in field.source)\n        }\n\n        # Special Case: Add read_only fields with defaults.\n        field_names |= {\n            field.source for field in self.fields.values()\n            if (field.read_only) and (field.default != empty) and (field.source != '*') and ('.' not in field.source)\n        }\n\n        # Note that we make sure to check `unique_together` both on the\n        # base model class, but also on any parent classes.\n        validators = []\n        for parent_class in model_class_inheritance_tree:\n            for unique_together in parent_class._meta.unique_together:\n                if field_names.issuperset(set(unique_together)):\n                    validator = UniqueTogetherValidator(\n                        queryset=parent_class._default_manager,\n                        fields=unique_together\n                    )\n                    validators.append(validator)\n        return validators\n\n    def get_unique_for_date_validators(self):\n        \"\"\"\n        Determine a default set of validators for the following constraints:\n\n        * unique_for_date\n        * unique_for_month\n        * unique_for_year\n        \"\"\"\n        info = model_meta.get_field_info(self.Meta.model)\n        default_manager = self.Meta.model._default_manager\n        field_names = [field.source for field in self.fields.values()]\n\n        validators = []\n\n        for field_name, field in info.fields_and_pk.items():\n            if field.unique_for_date and field_name in field_names:\n                validator = UniqueForDateValidator(\n                    queryset=default_manager,\n                    field=field_name,\n                    date_field=field.unique_for_date\n                )\n                validators.append(validator)\n\n            if field.unique_for_month and field_name in field_names:\n                validator = UniqueForMonthValidator(\n                    queryset=default_manager,\n                    field=field_name,\n                    date_field=field.unique_for_month\n                )\n                validators.append(validator)\n\n            if field.unique_for_year and field_name in field_names:\n                validator = UniqueForYearValidator(\n                    queryset=default_manager,\n                    field=field_name,\n                    date_field=field.unique_for_year\n                )\n                validators.append(validator)\n\n        return validators\n\n\nif hasattr(models, 'UUIDField'):\n    ModelSerializer.serializer_field_mapping[models.UUIDField] = UUIDField\n\n# IPAddressField is deprecated in Django\nif hasattr(models, 'IPAddressField'):\n    ModelSerializer.serializer_field_mapping[models.IPAddressField] = IPAddressField\n\nif postgres_fields:\n    ModelSerializer.serializer_field_mapping[postgres_fields.HStoreField] = HStoreField\n    ModelSerializer.serializer_field_mapping[postgres_fields.ArrayField] = ListField\n    ModelSerializer.serializer_field_mapping[postgres_fields.JSONField] = JSONField\n\n\nclass HyperlinkedModelSerializer(ModelSerializer):\n    \"\"\"\n    A type of `ModelSerializer` that uses hyperlinked relationships instead\n    of primary key relationships. Specifically:\n\n    * A 'url' field is included instead of the 'id' field.\n    * Relationships to other instances are hyperlinks, instead of primary keys.\n    \"\"\"\n    serializer_related_field = HyperlinkedRelatedField\n\n    def get_default_field_names(self, declared_fields, model_info):\n        \"\"\"\n        Return the default list of field names that will be used if the\n        `Meta.fields` option is not specified.\n        \"\"\"\n        return (\n            [self.url_field_name] +\n            list(declared_fields) +\n            list(model_info.fields) +\n            list(model_info.forward_relations)\n        )\n\n    def build_nested_field(self, field_name, relation_info, nested_depth):\n        \"\"\"\n        Create nested fields for forward and reverse relationships.\n        \"\"\"\n        class NestedSerializer(HyperlinkedModelSerializer):\n            class Meta:\n                model = relation_info.related_model\n                depth = nested_depth - 1\n                fields = '__all__'\n\n        field_class = NestedSerializer\n        field_kwargs = get_nested_relation_kwargs(relation_info)\n\n        return field_class, field_kwargs\n"
  },
  {
    "path": "jet_django/deps/rest_framework/settings.py",
    "content": "\"\"\"\nSettings for REST framework are all namespaced in the REST_FRAMEWORK setting.\nFor example your project's `settings.py` file might look like this:\n\nREST_FRAMEWORK = {\n    'DEFAULT_RENDERER_CLASSES': (\n        'jet_django.deps.rest_framework.renderers.JSONRenderer',\n        'jet_django.deps.rest_framework.renderers.TemplateHTMLRenderer',\n    )\n    'DEFAULT_PARSER_CLASSES': (\n        'jet_django.deps.rest_framework.parsers.JSONParser',\n        'jet_django.deps.rest_framework.parsers.FormParser',\n        'jet_django.deps.rest_framework.parsers.MultiPartParser'\n    )\n}\n\nThis module provides the `api_setting` object, that is used to access\nREST framework settings, checking for user settings first, then falling\nback to the defaults.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom importlib import import_module\n\nfrom jet_django import settings\nfrom django.test.signals import setting_changed\nfrom django.utils import six\n\nfrom jet_django.deps.rest_framework import ISO_8601\n\nDEFAULTS = {\n    # Base API policies\n    'DEFAULT_RENDERER_CLASSES': (\n        'jet_django.deps.rest_framework.renderers.JSONRenderer',\n        'jet_django.deps.rest_framework.renderers.BrowsableAPIRenderer',\n    ),\n    'DEFAULT_PARSER_CLASSES': (\n        'jet_django.deps.rest_framework.parsers.JSONParser',\n        'jet_django.deps.rest_framework.parsers.FormParser',\n        'jet_django.deps.rest_framework.parsers.MultiPartParser'\n    ),\n    'DEFAULT_AUTHENTICATION_CLASSES': (\n        'jet_django.deps.rest_framework.authentication.SessionAuthentication',\n        'jet_django.deps.rest_framework.authentication.BasicAuthentication'\n    ),\n    'DEFAULT_PERMISSION_CLASSES': (\n        'jet_django.deps.rest_framework.permissions.AllowAny',\n    ),\n    'DEFAULT_THROTTLE_CLASSES': (),\n    'DEFAULT_CONTENT_NEGOTIATION_CLASS': 'jet_django.deps.rest_framework.negotiation.DefaultContentNegotiation',\n    'DEFAULT_METADATA_CLASS': 'jet_django.deps.rest_framework.metadata.SimpleMetadata',\n    'DEFAULT_VERSIONING_CLASS': None,\n\n    # Generic view behavior\n    'DEFAULT_PAGINATION_CLASS': None,\n    'DEFAULT_FILTER_BACKENDS': (),\n\n    # Schema\n    'DEFAULT_SCHEMA_CLASS': 'jet_django.deps.rest_framework.schemas.AutoSchema',\n\n    # Throttling\n    'DEFAULT_THROTTLE_RATES': {\n        'user': None,\n        'anon': None,\n    },\n    'NUM_PROXIES': None,\n\n    # Pagination\n    'PAGE_SIZE': None,\n\n    # Filtering\n    'SEARCH_PARAM': 'search',\n    'ORDERING_PARAM': 'ordering',\n\n    # Versioning\n    'DEFAULT_VERSION': None,\n    'ALLOWED_VERSIONS': None,\n    'VERSION_PARAM': 'version',\n\n    # Authentication\n    'UNAUTHENTICATED_USER': 'django.contrib.auth.models.AnonymousUser',\n    'UNAUTHENTICATED_TOKEN': None,\n\n    # View configuration\n    'VIEW_NAME_FUNCTION': 'jet_django.deps.rest_framework.views.get_view_name',\n    'VIEW_DESCRIPTION_FUNCTION': 'jet_django.deps.rest_framework.views.get_view_description',\n\n    # Exception handling\n    'EXCEPTION_HANDLER': 'jet_django.deps.rest_framework.views.exception_handler',\n    'NON_FIELD_ERRORS_KEY': 'non_field_errors',\n\n    # Testing\n    'TEST_REQUEST_RENDERER_CLASSES': (\n        'jet_django.deps.rest_framework.renderers.MultiPartRenderer',\n        'jet_django.deps.rest_framework.renderers.JSONRenderer'\n    ),\n    'TEST_REQUEST_DEFAULT_FORMAT': 'multipart',\n\n    # Hyperlink settings\n    'URL_FORMAT_OVERRIDE': 'format',\n    'FORMAT_SUFFIX_KWARG': 'format',\n    'URL_FIELD_NAME': 'url',\n\n    # Input and output formats\n    'DATE_FORMAT': ISO_8601,\n    'DATE_INPUT_FORMATS': (ISO_8601,),\n\n    'DATETIME_FORMAT': ISO_8601,\n    'DATETIME_INPUT_FORMATS': (ISO_8601,),\n\n    'TIME_FORMAT': ISO_8601,\n    'TIME_INPUT_FORMATS': (ISO_8601,),\n\n    # Encoding\n    'UNICODE_JSON': True,\n    'COMPACT_JSON': True,\n    'STRICT_JSON': True,\n    'COERCE_DECIMAL_TO_STRING': True,\n    'UPLOADED_FILES_USE_URL': True,\n\n    # Browseable API\n    'HTML_SELECT_CUTOFF': 1000,\n    'HTML_SELECT_CUTOFF_TEXT': \"More than {count} items...\",\n\n    # Schemas\n    'SCHEMA_COERCE_PATH_PK': True,\n    'SCHEMA_COERCE_METHOD_NAMES': {\n        'retrieve': 'read',\n        'destroy': 'delete'\n    },\n}\n\n\n# List of settings that may be in string import notation.\nIMPORT_STRINGS = (\n    'DEFAULT_RENDERER_CLASSES',\n    'DEFAULT_PARSER_CLASSES',\n    'DEFAULT_AUTHENTICATION_CLASSES',\n    'DEFAULT_PERMISSION_CLASSES',\n    'DEFAULT_THROTTLE_CLASSES',\n    'DEFAULT_CONTENT_NEGOTIATION_CLASS',\n    'DEFAULT_METADATA_CLASS',\n    'DEFAULT_VERSIONING_CLASS',\n    'DEFAULT_PAGINATION_CLASS',\n    'DEFAULT_FILTER_BACKENDS',\n    'DEFAULT_SCHEMA_CLASS',\n    'EXCEPTION_HANDLER',\n    'TEST_REQUEST_RENDERER_CLASSES',\n    'UNAUTHENTICATED_USER',\n    'UNAUTHENTICATED_TOKEN',\n    'VIEW_NAME_FUNCTION',\n    'VIEW_DESCRIPTION_FUNCTION'\n)\n\n\n# List of settings that have been removed\nREMOVED_SETTINGS = (\n    \"PAGINATE_BY\", \"PAGINATE_BY_PARAM\", \"MAX_PAGINATE_BY\",\n)\n\n\ndef perform_import(val, setting_name):\n    \"\"\"\n    If the given setting is a string import notation,\n    then perform the necessary import or imports.\n    \"\"\"\n    if val is None:\n        return None\n    elif isinstance(val, six.string_types):\n        return import_from_string(val, setting_name)\n    elif isinstance(val, (list, tuple)):\n        return [import_from_string(item, setting_name) for item in val]\n    return val\n\n\ndef import_from_string(val, setting_name):\n    \"\"\"\n    Attempt to import a class from a string representation.\n    \"\"\"\n    try:\n        # Nod to tastypie's use of importlib.\n        module_path, class_name = val.rsplit('.', 1)\n        module = import_module(module_path)\n        return getattr(module, class_name)\n    except (ImportError, AttributeError) as e:\n        msg = \"Could not import '%s' for API setting '%s'. %s: %s.\" % (val, setting_name, e.__class__.__name__, e)\n        raise ImportError(msg)\n\n\nclass APISettings(object):\n    \"\"\"\n    A settings object, that allows API settings to be accessed as properties.\n    For example:\n\n        from jet_django.deps.rest_framework.settings import api_settings\n        print(api_settings.DEFAULT_RENDERER_CLASSES)\n\n    Any setting with string import paths will be automatically resolved\n    and return the class, rather than the string literal.\n    \"\"\"\n    def __init__(self, user_settings=None, defaults=None, import_strings=None):\n        if user_settings:\n            self._user_settings = self.__check_user_settings(user_settings)\n        self.defaults = defaults or DEFAULTS\n        self.import_strings = import_strings or IMPORT_STRINGS\n        self._cached_attrs = set()\n\n    @property\n    def user_settings(self):\n        if not hasattr(self, '_user_settings'):\n            self._user_settings = getattr(settings, 'JET_REST_FRAMEWORK', {})\n        return self._user_settings\n\n    def __getattr__(self, attr):\n        if attr not in self.defaults:\n            raise AttributeError(\"Invalid API setting: '%s'\" % attr)\n\n        try:\n            # Check if present in user settings\n            val = self.user_settings[attr]\n        except KeyError:\n            # Fall back to defaults\n            val = self.defaults[attr]\n\n        # Coerce import strings into classes\n        if attr in self.import_strings:\n            val = perform_import(val, attr)\n\n        # Cache the result\n        self._cached_attrs.add(attr)\n        setattr(self, attr, val)\n        return val\n\n    def __check_user_settings(self, user_settings):\n        SETTINGS_DOC = \"http://www.django-rest-framework.org/api-guide/settings/\"\n        for setting in REMOVED_SETTINGS:\n            if setting in user_settings:\n                raise RuntimeError(\"The '%s' setting has been removed. Please refer to '%s' for available settings.\" % (setting, SETTINGS_DOC))\n        return user_settings\n\n    def reload(self):\n        for attr in self._cached_attrs:\n            delattr(self, attr)\n        self._cached_attrs.clear()\n        if hasattr(self, '_user_settings'):\n            delattr(self, '_user_settings')\n\n\napi_settings = APISettings(None, DEFAULTS, IMPORT_STRINGS)\n\n\ndef reload_api_settings(*args, **kwargs):\n    setting = kwargs['setting']\n    if setting == 'jet_django.deps.rest_framework':\n        api_settings.reload()\n\n\nsetting_changed.connect(reload_api_settings)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/status.py",
    "content": "\"\"\"\nDescriptive HTTP status codes, for code readability.\n\nSee RFC 2616 - https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html\nAnd RFC 6585 - https://tools.ietf.org/html/rfc6585\nAnd RFC 4918 - https://tools.ietf.org/html/rfc4918\n\"\"\"\nfrom __future__ import unicode_literals\n\n\ndef is_informational(code):\n    return 100 <= code <= 199\n\n\ndef is_success(code):\n    return 200 <= code <= 299\n\n\ndef is_redirect(code):\n    return 300 <= code <= 399\n\n\ndef is_client_error(code):\n    return 400 <= code <= 499\n\n\ndef is_server_error(code):\n    return 500 <= code <= 599\n\n\nHTTP_100_CONTINUE = 100\nHTTP_101_SWITCHING_PROTOCOLS = 101\nHTTP_200_OK = 200\nHTTP_201_CREATED = 201\nHTTP_202_ACCEPTED = 202\nHTTP_203_NON_AUTHORITATIVE_INFORMATION = 203\nHTTP_204_NO_CONTENT = 204\nHTTP_205_RESET_CONTENT = 205\nHTTP_206_PARTIAL_CONTENT = 206\nHTTP_207_MULTI_STATUS = 207\nHTTP_300_MULTIPLE_CHOICES = 300\nHTTP_301_MOVED_PERMANENTLY = 301\nHTTP_302_FOUND = 302\nHTTP_303_SEE_OTHER = 303\nHTTP_304_NOT_MODIFIED = 304\nHTTP_305_USE_PROXY = 305\nHTTP_306_RESERVED = 306\nHTTP_307_TEMPORARY_REDIRECT = 307\nHTTP_400_BAD_REQUEST = 400\nHTTP_401_UNAUTHORIZED = 401\nHTTP_402_PAYMENT_REQUIRED = 402\nHTTP_403_FORBIDDEN = 403\nHTTP_404_NOT_FOUND = 404\nHTTP_405_METHOD_NOT_ALLOWED = 405\nHTTP_406_NOT_ACCEPTABLE = 406\nHTTP_407_PROXY_AUTHENTICATION_REQUIRED = 407\nHTTP_408_REQUEST_TIMEOUT = 408\nHTTP_409_CONFLICT = 409\nHTTP_410_GONE = 410\nHTTP_411_LENGTH_REQUIRED = 411\nHTTP_412_PRECONDITION_FAILED = 412\nHTTP_413_REQUEST_ENTITY_TOO_LARGE = 413\nHTTP_414_REQUEST_URI_TOO_LONG = 414\nHTTP_415_UNSUPPORTED_MEDIA_TYPE = 415\nHTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE = 416\nHTTP_417_EXPECTATION_FAILED = 417\nHTTP_422_UNPROCESSABLE_ENTITY = 422\nHTTP_423_LOCKED = 423\nHTTP_424_FAILED_DEPENDENCY = 424\nHTTP_428_PRECONDITION_REQUIRED = 428\nHTTP_429_TOO_MANY_REQUESTS = 429\nHTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE = 431\nHTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS = 451\nHTTP_500_INTERNAL_SERVER_ERROR = 500\nHTTP_501_NOT_IMPLEMENTED = 501\nHTTP_502_BAD_GATEWAY = 502\nHTTP_503_SERVICE_UNAVAILABLE = 503\nHTTP_504_GATEWAY_TIMEOUT = 504\nHTTP_505_HTTP_VERSION_NOT_SUPPORTED = 505\nHTTP_507_INSUFFICIENT_STORAGE = 507\nHTTP_511_NETWORK_AUTHENTICATION_REQUIRED = 511\n"
  },
  {
    "path": "jet_django/deps/rest_framework/test.py",
    "content": "# -- coding: utf-8 --\n\n# Note that we import as `DjangoRequestFactory` and `DjangoClient` in order\n# to make it harder for the user to import the wrong thing without realizing.\nfrom __future__ import unicode_literals\n\nimport io\nfrom importlib import import_module\n\nfrom django.conf import settings\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.handlers.wsgi import WSGIHandler\nfrom django.test import override_settings, testcases\nfrom django.test.client import Client as DjangoClient\nfrom django.test.client import ClientHandler\nfrom django.test.client import RequestFactory as DjangoRequestFactory\nfrom django.utils import six\nfrom django.utils.encoding import force_bytes\nfrom django.utils.http import urlencode\n\nfrom jet_django.deps.rest_framework.compat import coreapi, requests\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\ndef force_authenticate(request, user=None, token=None):\n    request._force_auth_user = user\n    request._force_auth_token = token\n\n\nif requests is not None:\n    class HeaderDict(requests.packages.urllib3._collections.HTTPHeaderDict):\n        def get_all(self, key, default):\n            return self.getheaders(key)\n\n    class MockOriginalResponse(object):\n        def __init__(self, headers):\n            self.msg = HeaderDict(headers)\n            self.closed = False\n\n        def isclosed(self):\n            return self.closed\n\n        def close(self):\n            self.closed = True\n\n    class DjangoTestAdapter(requests.adapters.HTTPAdapter):\n        \"\"\"\n        A transport adapter for `requests`, that makes requests via the\n        Django WSGI app, rather than making actual HTTP requests over the network.\n        \"\"\"\n        def __init__(self):\n            self.app = WSGIHandler()\n            self.factory = DjangoRequestFactory()\n\n        def get_environ(self, request):\n            \"\"\"\n            Given a `requests.PreparedRequest` instance, return a WSGI environ dict.\n            \"\"\"\n            method = request.method\n            url = request.url\n            kwargs = {}\n\n            # Set request content, if any exists.\n            if request.body is not None:\n                if hasattr(request.body, 'read'):\n                    kwargs['data'] = request.body.read()\n                else:\n                    kwargs['data'] = request.body\n            if 'content-type' in request.headers:\n                kwargs['content_type'] = request.headers['content-type']\n\n            # Set request headers.\n            for key, value in request.headers.items():\n                key = key.upper()\n                if key in ('CONNECTION', 'CONTENT-LENGTH', 'CONTENT-TYPE'):\n                    continue\n                kwargs['HTTP_%s' % key.replace('-', '_')] = value\n\n            return self.factory.generic(method, url, **kwargs).environ\n\n        def send(self, request, *args, **kwargs):\n            \"\"\"\n            Make an outgoing request to the Django WSGI application.\n            \"\"\"\n            raw_kwargs = {}\n\n            def start_response(wsgi_status, wsgi_headers):\n                status, _, reason = wsgi_status.partition(' ')\n                raw_kwargs['status'] = int(status)\n                raw_kwargs['reason'] = reason\n                raw_kwargs['headers'] = wsgi_headers\n                raw_kwargs['version'] = 11\n                raw_kwargs['preload_content'] = False\n                raw_kwargs['original_response'] = MockOriginalResponse(wsgi_headers)\n\n            # Make the outgoing request via WSGI.\n            environ = self.get_environ(request)\n            wsgi_response = self.app(environ, start_response)\n\n            # Build the underlying urllib3.HTTPResponse\n            raw_kwargs['body'] = io.BytesIO(b''.join(wsgi_response))\n            raw = requests.packages.urllib3.HTTPResponse(**raw_kwargs)\n\n            # Build the requests.Response\n            return self.build_response(request, raw)\n\n        def close(self):\n            pass\n\n    class RequestsClient(requests.Session):\n        def __init__(self, *args, **kwargs):\n            super(RequestsClient, self).__init__(*args, **kwargs)\n            adapter = DjangoTestAdapter()\n            self.mount('http://', adapter)\n            self.mount('https://', adapter)\n\n        def request(self, method, url, *args, **kwargs):\n            if not url.startswith('http'):\n                raise ValueError('Missing \"http:\" or \"https:\". Use a fully qualified URL, eg \"http://testserver%s\"' % url)\n            return super(RequestsClient, self).request(method, url, *args, **kwargs)\n\nelse:\n    def RequestsClient(*args, **kwargs):\n        raise ImproperlyConfigured('requests must be installed in order to use RequestsClient.')\n\n\nif coreapi is not None:\n    class CoreAPIClient(coreapi.Client):\n        def __init__(self, *args, **kwargs):\n            self._session = RequestsClient()\n            kwargs['transports'] = [coreapi.transports.HTTPTransport(session=self.session)]\n            return super(CoreAPIClient, self).__init__(*args, **kwargs)\n\n        @property\n        def session(self):\n            return self._session\n\nelse:\n    def CoreAPIClient(*args, **kwargs):\n        raise ImproperlyConfigured('coreapi must be installed in order to use CoreAPIClient.')\n\n\nclass APIRequestFactory(DjangoRequestFactory):\n    renderer_classes_list = api_settings.TEST_REQUEST_RENDERER_CLASSES\n    default_format = api_settings.TEST_REQUEST_DEFAULT_FORMAT\n\n    def __init__(self, enforce_csrf_checks=False, **defaults):\n        self.enforce_csrf_checks = enforce_csrf_checks\n        self.renderer_classes = {}\n        for cls in self.renderer_classes_list:\n            self.renderer_classes[cls.format] = cls\n        super(APIRequestFactory, self).__init__(**defaults)\n\n    def _encode_data(self, data, format=None, content_type=None):\n        \"\"\"\n        Encode the data returning a two tuple of (bytes, content_type)\n        \"\"\"\n\n        if data is None:\n            return ('', content_type)\n\n        assert format is None or content_type is None, (\n            'You may not set both `format` and `content_type`.'\n        )\n\n        if content_type:\n            # Content type specified explicitly, treat data as a raw bytestring\n            ret = force_bytes(data, settings.DEFAULT_CHARSET)\n\n        else:\n            format = format or self.default_format\n\n            assert format in self.renderer_classes, (\n                \"Invalid format '{0}'. Available formats are {1}. \"\n                \"Set TEST_REQUEST_RENDERER_CLASSES to enable \"\n                \"extra request formats.\".format(\n                    format,\n                    ', '.join([\"'\" + fmt + \"'\" for fmt in self.renderer_classes])\n                )\n            )\n\n            # Use format and render the data into a bytestring\n            renderer = self.renderer_classes[format]()\n            ret = renderer.render(data)\n\n            # Determine the content-type header from the renderer\n            content_type = \"{0}; charset={1}\".format(\n                renderer.media_type, renderer.charset\n            )\n\n            # Coerce text to bytes if required.\n            if isinstance(ret, six.text_type):\n                ret = bytes(ret.encode(renderer.charset))\n\n        return ret, content_type\n\n    def get(self, path, data=None, **extra):\n        r = {\n            'QUERY_STRING': urlencode(data or {}, doseq=True),\n        }\n        if not data and '?' in path:\n            # Fix to support old behavior where you have the arguments in the\n            # url. See #1461.\n            query_string = force_bytes(path.split('?')[1])\n            if six.PY3:\n                query_string = query_string.decode('iso-8859-1')\n            r['QUERY_STRING'] = query_string\n        r.update(extra)\n        return self.generic('GET', path, **r)\n\n    def post(self, path, data=None, format=None, content_type=None, **extra):\n        data, content_type = self._encode_data(data, format, content_type)\n        return self.generic('POST', path, data, content_type, **extra)\n\n    def put(self, path, data=None, format=None, content_type=None, **extra):\n        data, content_type = self._encode_data(data, format, content_type)\n        return self.generic('PUT', path, data, content_type, **extra)\n\n    def patch(self, path, data=None, format=None, content_type=None, **extra):\n        data, content_type = self._encode_data(data, format, content_type)\n        return self.generic('PATCH', path, data, content_type, **extra)\n\n    def delete(self, path, data=None, format=None, content_type=None, **extra):\n        data, content_type = self._encode_data(data, format, content_type)\n        return self.generic('DELETE', path, data, content_type, **extra)\n\n    def options(self, path, data=None, format=None, content_type=None, **extra):\n        data, content_type = self._encode_data(data, format, content_type)\n        return self.generic('OPTIONS', path, data, content_type, **extra)\n\n    def generic(self, method, path, data='',\n                content_type='application/octet-stream', secure=False, **extra):\n        # Include the CONTENT_TYPE, regardless of whether or not data is empty.\n        if content_type is not None:\n            extra['CONTENT_TYPE'] = str(content_type)\n\n        return super(APIRequestFactory, self).generic(\n            method, path, data, content_type, secure, **extra)\n\n    def request(self, **kwargs):\n        request = super(APIRequestFactory, self).request(**kwargs)\n        request._dont_enforce_csrf_checks = not self.enforce_csrf_checks\n        return request\n\n\nclass ForceAuthClientHandler(ClientHandler):\n    \"\"\"\n    A patched version of ClientHandler that can enforce authentication\n    on the outgoing requests.\n    \"\"\"\n\n    def __init__(self, *args, **kwargs):\n        self._force_user = None\n        self._force_token = None\n        super(ForceAuthClientHandler, self).__init__(*args, **kwargs)\n\n    def get_response(self, request):\n        # This is the simplest place we can hook into to patch the\n        # request object.\n        force_authenticate(request, self._force_user, self._force_token)\n        return super(ForceAuthClientHandler, self).get_response(request)\n\n\nclass APIClient(APIRequestFactory, DjangoClient):\n    def __init__(self, enforce_csrf_checks=False, **defaults):\n        super(APIClient, self).__init__(**defaults)\n        self.handler = ForceAuthClientHandler(enforce_csrf_checks)\n        self._credentials = {}\n\n    def credentials(self, **kwargs):\n        \"\"\"\n        Sets headers that will be used on every outgoing request.\n        \"\"\"\n        self._credentials = kwargs\n\n    def force_authenticate(self, user=None, token=None):\n        \"\"\"\n        Forcibly authenticates outgoing requests with the given\n        user and/or token.\n        \"\"\"\n        self.handler._force_user = user\n        self.handler._force_token = token\n        if user is None:\n            self.logout()  # Also clear any possible session info if required\n\n    def request(self, **kwargs):\n        # Ensure that any credentials set get added to every request.\n        kwargs.update(self._credentials)\n        return super(APIClient, self).request(**kwargs)\n\n    def get(self, path, data=None, follow=False, **extra):\n        response = super(APIClient, self).get(path, data=data, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def post(self, path, data=None, format=None, content_type=None,\n             follow=False, **extra):\n        response = super(APIClient, self).post(\n            path, data=data, format=format, content_type=content_type, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def put(self, path, data=None, format=None, content_type=None,\n            follow=False, **extra):\n        response = super(APIClient, self).put(\n            path, data=data, format=format, content_type=content_type, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def patch(self, path, data=None, format=None, content_type=None,\n              follow=False, **extra):\n        response = super(APIClient, self).patch(\n            path, data=data, format=format, content_type=content_type, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def delete(self, path, data=None, format=None, content_type=None,\n               follow=False, **extra):\n        response = super(APIClient, self).delete(\n            path, data=data, format=format, content_type=content_type, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def options(self, path, data=None, format=None, content_type=None,\n                follow=False, **extra):\n        response = super(APIClient, self).options(\n            path, data=data, format=format, content_type=content_type, **extra)\n        if follow:\n            response = self._handle_redirects(response, **extra)\n        return response\n\n    def logout(self):\n        self._credentials = {}\n\n        # Also clear any `force_authenticate`\n        self.handler._force_user = None\n        self.handler._force_token = None\n\n        if self.session:\n            super(APIClient, self).logout()\n\n\nclass APITransactionTestCase(testcases.TransactionTestCase):\n    client_class = APIClient\n\n\nclass APITestCase(testcases.TestCase):\n    client_class = APIClient\n\n\nclass APISimpleTestCase(testcases.SimpleTestCase):\n    client_class = APIClient\n\n\nclass APILiveServerTestCase(testcases.LiveServerTestCase):\n    client_class = APIClient\n\n\nclass URLPatternsTestCase(testcases.SimpleTestCase):\n    \"\"\"\n    Isolate URL patterns on a per-TestCase basis. For example,\n\n    class ATestCase(URLPatternsTestCase):\n        urlpatterns = [...]\n\n        def test_something(self):\n            ...\n\n    class AnotherTestCase(URLPatternsTestCase):\n        urlpatterns = [...]\n\n        def test_something_else(self):\n            ...\n    \"\"\"\n    @classmethod\n    def setUpClass(cls):\n        # Get the module of the TestCase subclass\n        cls._module = import_module(cls.__module__)\n        cls._override = override_settings(ROOT_URLCONF=cls.__module__)\n\n        if hasattr(cls._module, 'urlpatterns'):\n            cls._module_urlpatterns = cls._module.urlpatterns\n\n        cls._module.urlpatterns = cls.urlpatterns\n\n        cls._override.enable()\n        super(URLPatternsTestCase, cls).setUpClass()\n\n    @classmethod\n    def tearDownClass(cls):\n        super(URLPatternsTestCase, cls).tearDownClass()\n        cls._override.disable()\n\n        if hasattr(cls, '_module_urlpatterns'):\n            cls._module.urlpatterns = cls._module_urlpatterns\n        else:\n            del cls._module.urlpatterns\n"
  },
  {
    "path": "jet_django/deps/rest_framework/throttling.py",
    "content": "\"\"\"\nProvides various throttling policies.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport time\n\nfrom django.core.cache import cache as default_cache\nfrom django.core.exceptions import ImproperlyConfigured\n\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\nclass BaseThrottle(object):\n    \"\"\"\n    Rate throttling of requests.\n    \"\"\"\n\n    def allow_request(self, request, view):\n        \"\"\"\n        Return `True` if the request should be allowed, `False` otherwise.\n        \"\"\"\n        raise NotImplementedError('.allow_request() must be overridden')\n\n    def get_ident(self, request):\n        \"\"\"\n        Identify the machine making the request by parsing HTTP_X_FORWARDED_FOR\n        if present and number of proxies is > 0. If not use all of\n        HTTP_X_FORWARDED_FOR if it is available, if not use REMOTE_ADDR.\n        \"\"\"\n        xff = request.META.get('HTTP_X_FORWARDED_FOR')\n        remote_addr = request.META.get('REMOTE_ADDR')\n        num_proxies = api_settings.NUM_PROXIES\n\n        if num_proxies is not None:\n            if num_proxies == 0 or xff is None:\n                return remote_addr\n            addrs = xff.split(',')\n            client_addr = addrs[-min(num_proxies, len(addrs))]\n            return client_addr.strip()\n\n        return ''.join(xff.split()) if xff else remote_addr\n\n    def wait(self):\n        \"\"\"\n        Optionally, return a recommended number of seconds to wait before\n        the next request.\n        \"\"\"\n        return None\n\n\nclass SimpleRateThrottle(BaseThrottle):\n    \"\"\"\n    A simple cache implementation, that only requires `.get_cache_key()`\n    to be overridden.\n\n    The rate (requests / seconds) is set by a `rate` attribute on the View\n    class.  The attribute is a string of the form 'number_of_requests/period'.\n\n    Period should be one of: ('s', 'sec', 'm', 'min', 'h', 'hour', 'd', 'day')\n\n    Previous request information used for throttling is stored in the cache.\n    \"\"\"\n    cache = default_cache\n    timer = time.time\n    cache_format = 'throttle_%(scope)s_%(ident)s'\n    scope = None\n    THROTTLE_RATES = api_settings.DEFAULT_THROTTLE_RATES\n\n    def __init__(self):\n        if not getattr(self, 'rate', None):\n            self.rate = self.get_rate()\n        self.num_requests, self.duration = self.parse_rate(self.rate)\n\n    def get_cache_key(self, request, view):\n        \"\"\"\n        Should return a unique cache-key which can be used for throttling.\n        Must be overridden.\n\n        May return `None` if the request should not be throttled.\n        \"\"\"\n        raise NotImplementedError('.get_cache_key() must be overridden')\n\n    def get_rate(self):\n        \"\"\"\n        Determine the string representation of the allowed request rate.\n        \"\"\"\n        if not getattr(self, 'scope', None):\n            msg = (\"You must set either `.scope` or `.rate` for '%s' throttle\" %\n                   self.__class__.__name__)\n            raise ImproperlyConfigured(msg)\n\n        try:\n            return self.THROTTLE_RATES[self.scope]\n        except KeyError:\n            msg = \"No default throttle rate set for '%s' scope\" % self.scope\n            raise ImproperlyConfigured(msg)\n\n    def parse_rate(self, rate):\n        \"\"\"\n        Given the request rate string, return a two tuple of:\n        <allowed number of requests>, <period of time in seconds>\n        \"\"\"\n        if rate is None:\n            return (None, None)\n        num, period = rate.split('/')\n        num_requests = int(num)\n        duration = {'s': 1, 'm': 60, 'h': 3600, 'd': 86400}[period[0]]\n        return (num_requests, duration)\n\n    def allow_request(self, request, view):\n        \"\"\"\n        Implement the check to see if the request should be throttled.\n\n        On success calls `throttle_success`.\n        On failure calls `throttle_failure`.\n        \"\"\"\n        if self.rate is None:\n            return True\n\n        self.key = self.get_cache_key(request, view)\n        if self.key is None:\n            return True\n\n        self.history = self.cache.get(self.key, [])\n        self.now = self.timer()\n\n        # Drop any requests from the history which have now passed the\n        # throttle duration\n        while self.history and self.history[-1] <= self.now - self.duration:\n            self.history.pop()\n        if len(self.history) >= self.num_requests:\n            return self.throttle_failure()\n        return self.throttle_success()\n\n    def throttle_success(self):\n        \"\"\"\n        Inserts the current request's timestamp along with the key\n        into the cache.\n        \"\"\"\n        self.history.insert(0, self.now)\n        self.cache.set(self.key, self.history, self.duration)\n        return True\n\n    def throttle_failure(self):\n        \"\"\"\n        Called when a request to the API has failed due to throttling.\n        \"\"\"\n        return False\n\n    def wait(self):\n        \"\"\"\n        Returns the recommended next request time in seconds.\n        \"\"\"\n        if self.history:\n            remaining_duration = self.duration - (self.now - self.history[-1])\n        else:\n            remaining_duration = self.duration\n\n        available_requests = self.num_requests - len(self.history) + 1\n        if available_requests <= 0:\n            return None\n\n        return remaining_duration / float(available_requests)\n\n\nclass AnonRateThrottle(SimpleRateThrottle):\n    \"\"\"\n    Limits the rate of API calls that may be made by a anonymous users.\n\n    The IP address of the request will be used as the unique cache key.\n    \"\"\"\n    scope = 'anon'\n\n    def get_cache_key(self, request, view):\n        if request.user.is_authenticated:\n            return None  # Only throttle unauthenticated requests.\n\n        return self.cache_format % {\n            'scope': self.scope,\n            'ident': self.get_ident(request)\n        }\n\n\nclass UserRateThrottle(SimpleRateThrottle):\n    \"\"\"\n    Limits the rate of API calls that may be made by a given user.\n\n    The user id will be used as a unique cache key if the user is\n    authenticated.  For anonymous requests, the IP address of the request will\n    be used.\n    \"\"\"\n    scope = 'user'\n\n    def get_cache_key(self, request, view):\n        if request.user.is_authenticated:\n            ident = request.user.pk\n        else:\n            ident = self.get_ident(request)\n\n        return self.cache_format % {\n            'scope': self.scope,\n            'ident': ident\n        }\n\n\nclass ScopedRateThrottle(SimpleRateThrottle):\n    \"\"\"\n    Limits the rate of API calls by different amounts for various parts of\n    the API.  Any view that has the `throttle_scope` property set will be\n    throttled.  The unique cache key will be generated by concatenating the\n    user id of the request, and the scope of the view being accessed.\n    \"\"\"\n    scope_attr = 'throttle_scope'\n\n    def __init__(self):\n        # Override the usual SimpleRateThrottle, because we can't determine\n        # the rate until called by the view.\n        pass\n\n    def allow_request(self, request, view):\n        # We can only determine the scope once we're called by the view.\n        self.scope = getattr(view, self.scope_attr, None)\n\n        # If a view does not have a `throttle_scope` always allow the request\n        if not self.scope:\n            return True\n\n        # Determine the allowed request rate as we normally would during\n        # the `__init__` call.\n        self.rate = self.get_rate()\n        self.num_requests, self.duration = self.parse_rate(self.rate)\n\n        # We can now proceed as normal.\n        return super(ScopedRateThrottle, self).allow_request(request, view)\n\n    def get_cache_key(self, request, view):\n        \"\"\"\n        If `view.throttle_scope` is not set, don't apply this throttle.\n\n        Otherwise generate the unique cache key by concatenating the user id\n        with the '.throttle_scope` property of the view.\n        \"\"\"\n        if request.user.is_authenticated:\n            ident = request.user.pk\n        else:\n            ident = self.get_ident(request)\n\n        return self.cache_format % {\n            'scope': self.scope,\n            'ident': ident\n        }\n"
  },
  {
    "path": "jet_django/deps/rest_framework/urlpatterns.py",
    "content": "from __future__ import unicode_literals\n\nfrom django.conf.urls import include, url\n\nfrom jet_django.deps.rest_framework.compat import (\n    URLResolver, get_regex_pattern, is_route_pattern, path, register_converter\n)\nfrom jet_django.deps.rest_framework.settings import api_settings\n\n\ndef _get_format_path_converter(suffix_kwarg, allowed):\n    if allowed:\n        if len(allowed) == 1:\n            allowed_pattern = allowed[0]\n        else:\n            allowed_pattern = '(?:%s)' % '|'.join(allowed)\n        suffix_pattern = r\"\\.%s/?\" % allowed_pattern\n    else:\n        suffix_pattern = r\"\\.[a-z0-9]+/?\"\n\n    class FormatSuffixConverter:\n        regex = suffix_pattern\n\n        def to_python(self, value):\n            return value.strip('./')\n\n        def to_url(self, value):\n            return '.' + value + '/'\n\n    converter_name = 'drf_format_suffix'\n    if allowed:\n        converter_name += '_' + '_'.join(allowed)\n\n    return converter_name, FormatSuffixConverter\n\n\ndef apply_suffix_patterns(urlpatterns, suffix_pattern, suffix_required, suffix_route=None):\n    ret = []\n    for urlpattern in urlpatterns:\n        if isinstance(urlpattern, URLResolver):\n            # Set of included URL patterns\n            regex = get_regex_pattern(urlpattern)\n            namespace = urlpattern.namespace\n            app_name = urlpattern.app_name\n            kwargs = urlpattern.default_kwargs\n            # Add in the included patterns, after applying the suffixes\n            patterns = apply_suffix_patterns(urlpattern.url_patterns,\n                                             suffix_pattern,\n                                             suffix_required,\n                                             suffix_route)\n\n            # if the original pattern was a RoutePattern we need to preserve it\n            if is_route_pattern(urlpattern):\n                assert path is not None\n                route = str(urlpattern.pattern)\n                new_pattern = path(route, include((patterns, app_name), namespace), kwargs)\n            else:\n                new_pattern = url(regex, include((patterns, app_name), namespace), kwargs)\n\n            ret.append(new_pattern)\n        else:\n            # Regular URL pattern\n            regex = get_regex_pattern(urlpattern).rstrip('$').rstrip('/') + suffix_pattern\n            view = urlpattern.callback\n            kwargs = urlpattern.default_args\n            name = urlpattern.name\n            # Add in both the existing and the new urlpattern\n            if not suffix_required:\n                ret.append(urlpattern)\n\n            # if the original pattern was a RoutePattern we need to preserve it\n            if is_route_pattern(urlpattern):\n                assert path is not None\n                assert suffix_route is not None\n                route = str(urlpattern.pattern).rstrip('$').rstrip('/') + suffix_route\n                new_pattern = path(route, view, kwargs, name)\n            else:\n                new_pattern = url(regex, view, kwargs, name)\n\n            ret.append(new_pattern)\n\n    return ret\n\n\ndef format_suffix_patterns(urlpatterns, suffix_required=False, allowed=None):\n    \"\"\"\n    Supplement existing urlpatterns with corresponding patterns that also\n    include a '.format' suffix.  Retains urlpattern ordering.\n\n    urlpatterns:\n        A list of URL patterns.\n\n    suffix_required:\n        If `True`, only suffixed URLs will be generated, and non-suffixed\n        URLs will not be used.  Defaults to `False`.\n\n    allowed:\n        An optional tuple/list of allowed suffixes.  eg ['json', 'api']\n        Defaults to `None`, which allows any suffix.\n    \"\"\"\n    suffix_kwarg = api_settings.FORMAT_SUFFIX_KWARG\n    if allowed:\n        if len(allowed) == 1:\n            allowed_pattern = allowed[0]\n        else:\n            allowed_pattern = '(%s)' % '|'.join(allowed)\n        suffix_pattern = r'\\.(?P<%s>%s)/?$' % (suffix_kwarg, allowed_pattern)\n    else:\n        suffix_pattern = r'\\.(?P<%s>[a-z0-9]+)/?$' % suffix_kwarg\n\n    if path and register_converter:\n        converter_name, suffix_converter = _get_format_path_converter(suffix_kwarg, allowed)\n        register_converter(suffix_converter, converter_name)\n\n        suffix_route = '<%s:%s>' % (converter_name, suffix_kwarg)\n    else:\n        suffix_route = None\n\n    return apply_suffix_patterns(urlpatterns, suffix_pattern, suffix_required, suffix_route)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/urls.py",
    "content": "\"\"\"\nLogin and logout views for the browsable API.\n\nAdd these to your root URLconf if you're using the browsable API and\nyour API requires authentication:\n\n    urlpatterns = [\n        ...\n        url(r'^auth/', include('jet_django.deps.rest_framework.urls'))\n    ]\n\nYou should make sure your authentication settings include `SessionAuthentication`.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport django\nfrom django.conf.urls import url\nfrom django.contrib.auth import views\n\nif django.VERSION < (1, 11):\n    login = views.login\n    login_kwargs = {'template_name': 'jet_django.deps.rest_framework/login.html'}\n    logout = views.logout\nelse:\n    login = views.LoginView.as_view(template_name='jet_django.deps.rest_framework/login.html')\n    login_kwargs = {}\n    logout = views.LogoutView.as_view()\n\n\napp_name = 'jet_django.deps.rest_framework'\nurlpatterns = [\n    url(r'^login/$', login, login_kwargs, name='login'),\n    url(r'^logout/$', logout, name='logout'),\n]\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/deps/rest_framework/utils/breadcrumbs.py",
    "content": "from __future__ import unicode_literals\n\nfrom django.urls import get_script_prefix, resolve\n\n\ndef get_breadcrumbs(url, request=None):\n    \"\"\"\n    Given a url returns a list of breadcrumbs, which are each a\n    tuple of (name, url).\n    \"\"\"\n    from jet_django.deps.rest_framework.reverse import preserve_builtin_query_params\n    from jet_django.deps.rest_framework.views import APIView\n\n    def breadcrumbs_recursive(url, breadcrumbs_list, prefix, seen):\n        \"\"\"\n        Add tuples of (name, url) to the breadcrumbs list,\n        progressively chomping off parts of the url.\n        \"\"\"\n        try:\n            (view, unused_args, unused_kwargs) = resolve(url)\n        except Exception:\n            pass\n        else:\n            # Check if this is a REST framework view,\n            # and if so add it to the breadcrumbs\n            cls = getattr(view, 'cls', None)\n            initkwargs = getattr(view, 'initkwargs', {})\n            if cls is not None and issubclass(cls, APIView):\n                # Don't list the same view twice in a row.\n                # Probably an optional trailing slash.\n                if not seen or seen[-1] != view:\n                    c = cls(**initkwargs)\n                    c.suffix = getattr(view, 'suffix', None)\n                    name = c.get_view_name()\n                    insert_url = preserve_builtin_query_params(prefix + url, request)\n                    breadcrumbs_list.insert(0, (name, insert_url))\n                    seen.append(view)\n\n        if url == '':\n            # All done\n            return breadcrumbs_list\n\n        elif url.endswith('/'):\n            # Drop trailing slash off the end and continue to try to\n            # resolve more breadcrumbs\n            url = url.rstrip('/')\n            return breadcrumbs_recursive(url, breadcrumbs_list, prefix, seen)\n\n        # Drop trailing non-slash off the end and continue to try to\n        # resolve more breadcrumbs\n        url = url[:url.rfind('/') + 1]\n        return breadcrumbs_recursive(url, breadcrumbs_list, prefix, seen)\n\n    prefix = get_script_prefix().rstrip('/')\n    url = url[len(prefix):]\n    return breadcrumbs_recursive(url, [], prefix, [])\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/encoders.py",
    "content": "\"\"\"\nHelper classes for parsers.\n\"\"\"\nfrom __future__ import absolute_import, unicode_literals\n\nimport datetime\nimport decimal\nimport json  # noqa\nimport uuid\n\nfrom django.db.models.query import QuerySet\nfrom django.utils import six, timezone\nfrom django.utils.encoding import force_text\nfrom django.utils.functional import Promise\n\nfrom jet_django.deps.rest_framework.compat import coreapi\n\n\nclass JSONEncoder(json.JSONEncoder):\n    \"\"\"\n    JSONEncoder subclass that knows how to encode date/time/timedelta,\n    decimal types, generators and other basic python objects.\n    \"\"\"\n    def default(self, obj):\n        # For Date Time string spec, see ECMA 262\n        # https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.15\n        if isinstance(obj, Promise):\n            return force_text(obj)\n        elif isinstance(obj, datetime.datetime):\n            representation = obj.isoformat()\n            if representation.endswith('+00:00'):\n                representation = representation[:-6] + 'Z'\n            return representation\n        elif isinstance(obj, datetime.date):\n            return obj.isoformat()\n        elif isinstance(obj, datetime.time):\n            if timezone and timezone.is_aware(obj):\n                raise ValueError(\"JSON can't represent timezone-aware times.\")\n            representation = obj.isoformat()\n            return representation\n        elif isinstance(obj, datetime.timedelta):\n            return six.text_type(obj.total_seconds())\n        elif isinstance(obj, decimal.Decimal):\n            # Serializers will coerce decimals to strings by default.\n            return float(obj)\n        elif isinstance(obj, uuid.UUID):\n            return six.text_type(obj)\n        elif isinstance(obj, QuerySet):\n            return tuple(obj)\n        elif isinstance(obj, six.binary_type):\n            # Best-effort for binary blobs. See #4187.\n            return obj.decode('utf-8')\n        elif hasattr(obj, 'tolist'):\n            # Numpy arrays and array scalars.\n            return obj.tolist()\n        elif (coreapi is not None) and isinstance(obj, (coreapi.Document, coreapi.Error)):\n            raise RuntimeError(\n                'Cannot return a coreapi object from a JSON view. '\n                'You should be using a schema renderer instead for this view.'\n            )\n        elif hasattr(obj, '__getitem__'):\n            try:\n                return dict(obj)\n            except Exception:\n                pass\n        elif hasattr(obj, '__iter__'):\n            return tuple(item for item in obj)\n        return super(JSONEncoder, self).default(obj)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/field_mapping.py",
    "content": "\"\"\"\nHelper functions for mapping model fields to a dictionary of default\nkeyword arguments that should be used for their equivalent serializer fields.\n\"\"\"\nimport inspect\n\nfrom django.core import validators\nfrom django.db import models\nfrom django.utils.text import capfirst\n\nfrom jet_django.deps.rest_framework.compat import postgres_fields\nfrom jet_django.deps.rest_framework.validators import UniqueValidator\n\nNUMERIC_FIELD_TYPES = (\n    models.IntegerField, models.FloatField, models.DecimalField\n)\n\n\nclass ClassLookupDict(object):\n    \"\"\"\n    Takes a dictionary with classes as keys.\n    Lookups against this object will traverses the object's inheritance\n    hierarchy in method resolution order, and returns the first matching value\n    from the dictionary or raises a KeyError if nothing matches.\n    \"\"\"\n    def __init__(self, mapping):\n        self.mapping = mapping\n\n    def __getitem__(self, key):\n        if hasattr(key, '_proxy_class'):\n            # Deal with proxy classes. Ie. BoundField behaves as if it\n            # is a Field instance when using ClassLookupDict.\n            base_class = key._proxy_class\n        else:\n            base_class = key.__class__\n\n        for cls in inspect.getmro(base_class):\n            if cls in self.mapping:\n                return self.mapping[cls]\n        raise KeyError('Class %s not found in lookup.' % base_class.__name__)\n\n    def __setitem__(self, key, value):\n        self.mapping[key] = value\n\n\ndef needs_label(model_field, field_name):\n    \"\"\"\n    Returns `True` if the label based on the model's verbose name\n    is not equal to the default label it would have based on it's field name.\n    \"\"\"\n    default_label = field_name.replace('_', ' ').capitalize()\n    return capfirst(model_field.verbose_name) != default_label\n\n\ndef get_detail_view_name(model):\n    \"\"\"\n    Given a model class, return the view name to use for URL relationships\n    that refer to instances of the model.\n    \"\"\"\n    return '%(model_name)s-detail' % {\n        'app_label': model._meta.app_label,\n        'model_name': model._meta.object_name.lower()\n    }\n\n\ndef get_field_kwargs(field_name, model_field):\n    \"\"\"\n    Creates a default instance of a basic non-relational field.\n    \"\"\"\n    kwargs = {}\n    validator_kwarg = list(model_field.validators)\n\n    # The following will only be used by ModelField classes.\n    # Gets removed for everything else.\n    kwargs['model_field'] = model_field\n\n    if model_field.verbose_name and needs_label(model_field, field_name):\n        kwargs['label'] = capfirst(model_field.verbose_name)\n\n    if model_field.help_text:\n        kwargs['help_text'] = model_field.help_text\n\n    max_digits = getattr(model_field, 'max_digits', None)\n    if max_digits is not None:\n        kwargs['max_digits'] = max_digits\n\n    decimal_places = getattr(model_field, 'decimal_places', None)\n    if decimal_places is not None:\n        kwargs['decimal_places'] = decimal_places\n\n    if isinstance(model_field, models.TextField) or (postgres_fields and isinstance(model_field, postgres_fields.JSONField)):\n        kwargs['style'] = {'base_template': 'textarea.html'}\n\n    if isinstance(model_field, models.AutoField) or not model_field.editable:\n        # If this field is read-only, then return early.\n        # Further keyword arguments are not valid.\n        kwargs['read_only'] = True\n        return kwargs\n\n    if model_field.has_default() or model_field.blank or model_field.null:\n        kwargs['required'] = False\n\n    if model_field.null and not isinstance(model_field, models.NullBooleanField):\n        kwargs['allow_null'] = True\n\n    if model_field.blank and (isinstance(model_field, models.CharField) or\n                              isinstance(model_field, models.TextField)):\n        kwargs['allow_blank'] = True\n\n    if isinstance(model_field, models.FilePathField):\n        kwargs['path'] = model_field.path\n\n        if model_field.match is not None:\n            kwargs['match'] = model_field.match\n\n        if model_field.recursive is not False:\n            kwargs['recursive'] = model_field.recursive\n\n        if model_field.allow_files is not True:\n            kwargs['allow_files'] = model_field.allow_files\n\n        if model_field.allow_folders is not False:\n            kwargs['allow_folders'] = model_field.allow_folders\n\n    if model_field.choices:\n        kwargs['choices'] = model_field.choices\n    else:\n        # Ensure that max_value is passed explicitly as a keyword arg,\n        # rather than as a validator.\n        max_value = next((\n            validator.limit_value for validator in validator_kwarg\n            if isinstance(validator, validators.MaxValueValidator)\n        ), None)\n        if max_value is not None and isinstance(model_field, NUMERIC_FIELD_TYPES):\n            kwargs['max_value'] = max_value\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if not isinstance(validator, validators.MaxValueValidator)\n            ]\n\n        # Ensure that min_value is passed explicitly as a keyword arg,\n        # rather than as a validator.\n        min_value = next((\n            validator.limit_value for validator in validator_kwarg\n            if isinstance(validator, validators.MinValueValidator)\n        ), None)\n        if min_value is not None and isinstance(model_field, NUMERIC_FIELD_TYPES):\n            kwargs['min_value'] = min_value\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if not isinstance(validator, validators.MinValueValidator)\n            ]\n\n        # URLField does not need to include the URLValidator argument,\n        # as it is explicitly added in.\n        if isinstance(model_field, models.URLField):\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if not isinstance(validator, validators.URLValidator)\n            ]\n\n        # EmailField does not need to include the validate_email argument,\n        # as it is explicitly added in.\n        if isinstance(model_field, models.EmailField):\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if validator is not validators.validate_email\n            ]\n\n        # SlugField do not need to include the 'validate_slug' argument,\n        if isinstance(model_field, models.SlugField):\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if validator is not validators.validate_slug\n            ]\n\n        # IPAddressField do not need to include the 'validate_ipv46_address' argument,\n        if isinstance(model_field, models.GenericIPAddressField):\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if validator is not validators.validate_ipv46_address\n            ]\n        # Our decimal validation is handled in the field code, not validator code.\n        if isinstance(model_field, models.DecimalField):\n            validator_kwarg = [\n                validator for validator in validator_kwarg\n                if not isinstance(validator, validators.DecimalValidator)\n            ]\n\n    # Ensure that max_length is passed explicitly as a keyword arg,\n    # rather than as a validator.\n    max_length = getattr(model_field, 'max_length', None)\n    if max_length is not None and (isinstance(model_field, models.CharField) or\n                                   isinstance(model_field, models.TextField) or\n                                   isinstance(model_field, models.FileField)):\n        kwargs['max_length'] = max_length\n        validator_kwarg = [\n            validator for validator in validator_kwarg\n            if not isinstance(validator, validators.MaxLengthValidator)\n        ]\n\n    # Ensure that min_length is passed explicitly as a keyword arg,\n    # rather than as a validator.\n    min_length = next((\n        validator.limit_value for validator in validator_kwarg\n        if isinstance(validator, validators.MinLengthValidator)\n    ), None)\n    if min_length is not None and isinstance(model_field, models.CharField):\n        kwargs['min_length'] = min_length\n        validator_kwarg = [\n            validator for validator in validator_kwarg\n            if not isinstance(validator, validators.MinLengthValidator)\n        ]\n\n    if getattr(model_field, 'unique', False):\n        unique_error_message = model_field.error_messages.get('unique', None)\n        if unique_error_message:\n            unique_error_message = unique_error_message % {\n                'model_name': model_field.model._meta.verbose_name,\n                'field_label': model_field.verbose_name\n            }\n        validator = UniqueValidator(\n            queryset=model_field.model._default_manager,\n            message=unique_error_message)\n        validator_kwarg.append(validator)\n\n    if validator_kwarg:\n        kwargs['validators'] = validator_kwarg\n\n    return kwargs\n\n\ndef get_relation_kwargs(field_name, relation_info):\n    \"\"\"\n    Creates a default instance of a flat relational field.\n    \"\"\"\n    model_field, related_model, to_many, to_field, has_through_model, reverse = relation_info\n    kwargs = {\n        'queryset': related_model._default_manager,\n        'view_name': get_detail_view_name(related_model)\n    }\n\n    if to_many:\n        kwargs['many'] = True\n\n    if to_field:\n        kwargs['to_field'] = to_field\n\n    if has_through_model:\n        kwargs['read_only'] = True\n        kwargs.pop('queryset', None)\n\n    if model_field:\n        if model_field.verbose_name and needs_label(model_field, field_name):\n            kwargs['label'] = capfirst(model_field.verbose_name)\n        help_text = model_field.help_text\n        if help_text:\n            kwargs['help_text'] = help_text\n        if not model_field.editable:\n            kwargs['read_only'] = True\n            kwargs.pop('queryset', None)\n        if kwargs.get('read_only', False):\n            # If this field is read-only, then return early.\n            # No further keyword arguments are valid.\n            return kwargs\n\n        if model_field.has_default() or model_field.blank or model_field.null:\n            kwargs['required'] = False\n        if model_field.null:\n            kwargs['allow_null'] = True\n        if model_field.validators:\n            kwargs['validators'] = model_field.validators\n        if getattr(model_field, 'unique', False):\n            validator = UniqueValidator(queryset=model_field.model._default_manager)\n            kwargs['validators'] = kwargs.get('validators', []) + [validator]\n        if to_many and not model_field.blank:\n            kwargs['allow_empty'] = False\n\n    return kwargs\n\n\ndef get_nested_relation_kwargs(relation_info):\n    kwargs = {'read_only': True}\n    if relation_info.to_many:\n        kwargs['many'] = True\n    return kwargs\n\n\ndef get_url_kwargs(model_field):\n    return {\n        'view_name': get_detail_view_name(model_field)\n    }\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/formatting.py",
    "content": "\"\"\"\nUtility functions to return a formatted name and description for a given view.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport re\n\nfrom django.utils.encoding import force_text\nfrom django.utils.html import escape\nfrom django.utils.safestring import mark_safe\n\nfrom jet_django.deps.rest_framework.compat import apply_markdown\n\n\ndef remove_trailing_string(content, trailing):\n    \"\"\"\n    Strip trailing component `trailing` from `content` if it exists.\n    Used when generating names from view classes.\n    \"\"\"\n    if content.endswith(trailing) and content != trailing:\n        return content[:-len(trailing)]\n    return content\n\n\ndef dedent(content):\n    \"\"\"\n    Remove leading indent from a block of text.\n    Used when generating descriptions from docstrings.\n\n    Note that python's `textwrap.dedent` doesn't quite cut it,\n    as it fails to dedent multiline docstrings that include\n    unindented text on the initial line.\n    \"\"\"\n    content = force_text(content)\n    lines = [line for line in content.splitlines()[1:] if line.lstrip()]\n\n    # unindent the content if needed\n    if lines:\n        whitespace_counts = min([len(line) - len(line.lstrip(' ')) for line in lines])\n        tab_counts = min([len(line) - len(line.lstrip('\\t')) for line in lines])\n        if whitespace_counts:\n            whitespace_pattern = '^' + (' ' * whitespace_counts)\n            content = re.sub(re.compile(whitespace_pattern, re.MULTILINE), '', content)\n        elif tab_counts:\n            whitespace_pattern = '^' + ('\\t' * tab_counts)\n            content = re.sub(re.compile(whitespace_pattern, re.MULTILINE), '', content)\n    return content.strip()\n\n\ndef camelcase_to_spaces(content):\n    \"\"\"\n    Translate 'CamelCaseNames' to 'Camel Case Names'.\n    Used when generating names from view classes.\n    \"\"\"\n    camelcase_boundary = '(((?<=[a-z])[A-Z])|([A-Z](?![A-Z]|$)))'\n    content = re.sub(camelcase_boundary, ' \\\\1', content).strip()\n    return ' '.join(content.split('_')).title()\n\n\ndef markup_description(description):\n    \"\"\"\n    Apply HTML markup to the given description.\n    \"\"\"\n    if apply_markdown:\n        description = apply_markdown(description)\n    else:\n        description = escape(description).replace('\\n', '<br />')\n        description = '<p>' + description + '</p>'\n    return mark_safe(description)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/html.py",
    "content": "\"\"\"\nHelpers for dealing with HTML input.\n\"\"\"\nimport re\n\nfrom django.utils.datastructures import MultiValueDict\n\n\ndef is_html_input(dictionary):\n    # MultiDict type datastructures are used to represent HTML form input,\n    # which may have more than one value for each key.\n    return hasattr(dictionary, 'getlist')\n\n\ndef parse_html_list(dictionary, prefix=''):\n    \"\"\"\n    Used to support list values in HTML forms.\n    Supports lists of primitives and/or dictionaries.\n\n    * List of primitives.\n\n    {\n        '[0]': 'abc',\n        '[1]': 'def',\n        '[2]': 'hij'\n    }\n        -->\n    [\n        'abc',\n        'def',\n        'hij'\n    ]\n\n    * List of dictionaries.\n\n    {\n        '[0]foo': 'abc',\n        '[0]bar': 'def',\n        '[1]foo': 'hij',\n        '[1]bar': 'klm',\n    }\n        -->\n    [\n        {'foo': 'abc', 'bar': 'def'},\n        {'foo': 'hij', 'bar': 'klm'}\n    ]\n    \"\"\"\n    ret = {}\n    regex = re.compile(r'^%s\\[([0-9]+)\\](.*)$' % re.escape(prefix))\n    for field, value in dictionary.items():\n        match = regex.match(field)\n        if not match:\n            continue\n        index, key = match.groups()\n        index = int(index)\n        if not key:\n            ret[index] = value\n        elif isinstance(ret.get(index), dict):\n            ret[index][key] = value\n        else:\n            ret[index] = MultiValueDict({key: [value]})\n    return [ret[item] for item in sorted(ret)]\n\n\ndef parse_html_dict(dictionary, prefix=''):\n    \"\"\"\n    Used to support dictionary values in HTML forms.\n\n    {\n        'profile.username': 'example',\n        'profile.email': 'example@example.com',\n    }\n        -->\n    {\n        'profile': {\n            'username': 'example',\n            'email': 'example@example.com'\n        }\n    }\n    \"\"\"\n    ret = MultiValueDict()\n    regex = re.compile(r'^%s\\.(.+)$' % re.escape(prefix))\n    for field in dictionary:\n        match = regex.match(field)\n        if not match:\n            continue\n        key = match.groups()[0]\n        value = dictionary.getlist(field)\n        ret.setlist(key, value)\n\n    return ret\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/humanize_datetime.py",
    "content": "\"\"\"\nHelper functions that convert strftime formats into more readable representations.\n\"\"\"\nfrom jet_django.deps.rest_framework import ISO_8601\n\n\ndef datetime_formats(formats):\n    format = ', '.join(formats).replace(\n        ISO_8601,\n        'YYYY-MM-DDThh:mm[:ss[.uuuuuu]][+HH:MM|-HH:MM|Z]'\n    )\n    return humanize_strptime(format)\n\n\ndef date_formats(formats):\n    format = ', '.join(formats).replace(ISO_8601, 'YYYY[-MM[-DD]]')\n    return humanize_strptime(format)\n\n\ndef time_formats(formats):\n    format = ', '.join(formats).replace(ISO_8601, 'hh:mm[:ss[.uuuuuu]]')\n    return humanize_strptime(format)\n\n\ndef humanize_strptime(format_string):\n    # Note that we're missing some of the locale specific mappings that\n    # don't really make sense.\n    mapping = {\n        \"%Y\": \"YYYY\",\n        \"%y\": \"YY\",\n        \"%m\": \"MM\",\n        \"%b\": \"[Jan-Dec]\",\n        \"%B\": \"[January-December]\",\n        \"%d\": \"DD\",\n        \"%H\": \"hh\",\n        \"%I\": \"hh\",  # Requires '%p' to differentiate from '%H'.\n        \"%M\": \"mm\",\n        \"%S\": \"ss\",\n        \"%f\": \"uuuuuu\",\n        \"%a\": \"[Mon-Sun]\",\n        \"%A\": \"[Monday-Sunday]\",\n        \"%p\": \"[AM|PM]\",\n        \"%z\": \"[+HHMM|-HHMM]\"\n    }\n    for key, val in mapping.items():\n        format_string = format_string.replace(key, val)\n    return format_string\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/json.py",
    "content": "\"\"\"\nWrapper for the builtin json module that ensures compliance with the JSON spec.\n\nREST framework should always import this wrapper module in order to maintain\nspec-compliant encoding/decoding. Support for non-standard features should be\nhandled by users at the renderer and parser layer.\n\"\"\"\n\nfrom __future__ import absolute_import\n\nimport functools\nimport json  # noqa\n\n\ndef strict_constant(o):\n    raise ValueError('Out of range float values are not JSON compliant: ' + repr(o))\n\n\n@functools.wraps(json.dump)\ndef dump(*args, **kwargs):\n    kwargs.setdefault('allow_nan', False)\n    return json.dump(*args, **kwargs)\n\n\n@functools.wraps(json.dumps)\ndef dumps(*args, **kwargs):\n    kwargs.setdefault('allow_nan', False)\n    return json.dumps(*args, **kwargs)\n\n\n@functools.wraps(json.load)\ndef load(*args, **kwargs):\n    kwargs.setdefault('parse_constant', strict_constant)\n    return json.load(*args, **kwargs)\n\n\n@functools.wraps(json.loads)\ndef loads(*args, **kwargs):\n    kwargs.setdefault('parse_constant', strict_constant)\n    return json.loads(*args, **kwargs)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/mediatypes.py",
    "content": "\"\"\"\nHandling of media types, as found in HTTP Content-Type and Accept headers.\n\nSee https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.http.multipartparser import parse_header\nfrom django.utils.encoding import python_2_unicode_compatible\n\nfrom jet_django.deps.rest_framework import HTTP_HEADER_ENCODING\n\n\ndef media_type_matches(lhs, rhs):\n    \"\"\"\n    Returns ``True`` if the media type in the first argument <= the\n    media type in the second argument.  The media types are strings\n    as described by the HTTP spec.\n\n    Valid media type strings include:\n\n    'application/json; indent=4'\n    'application/json'\n    'text/*'\n    '*/*'\n    \"\"\"\n    lhs = _MediaType(lhs)\n    rhs = _MediaType(rhs)\n    return lhs.match(rhs)\n\n\ndef order_by_precedence(media_type_lst):\n    \"\"\"\n    Returns a list of sets of media type strings, ordered by precedence.\n    Precedence is determined by how specific a media type is:\n\n    3. 'type/subtype; param=val'\n    2. 'type/subtype'\n    1. 'type/*'\n    0. '*/*'\n    \"\"\"\n    ret = [set(), set(), set(), set()]\n    for media_type in media_type_lst:\n        precedence = _MediaType(media_type).precedence\n        ret[3 - precedence].add(media_type)\n    return [media_types for media_types in ret if media_types]\n\n\n@python_2_unicode_compatible\nclass _MediaType(object):\n    def __init__(self, media_type_str):\n        self.orig = '' if (media_type_str is None) else media_type_str\n        self.full_type, self.params = parse_header(self.orig.encode(HTTP_HEADER_ENCODING))\n        self.main_type, sep, self.sub_type = self.full_type.partition('/')\n\n    def match(self, other):\n        \"\"\"Return true if this MediaType satisfies the given MediaType.\"\"\"\n        for key in self.params:\n            if key != 'q' and other.params.get(key, None) != self.params.get(key, None):\n                return False\n\n        if self.sub_type != '*' and other.sub_type != '*' and other.sub_type != self.sub_type:\n            return False\n\n        if self.main_type != '*' and other.main_type != '*' and other.main_type != self.main_type:\n            return False\n\n        return True\n\n    @property\n    def precedence(self):\n        \"\"\"\n        Return a precedence level from 0-3 for the media type given how specific it is.\n        \"\"\"\n        if self.main_type == '*':\n            return 0\n        elif self.sub_type == '*':\n            return 1\n        elif not self.params or list(self.params) == ['q']:\n            return 2\n        return 3\n\n    def __str__(self):\n        ret = \"%s/%s\" % (self.main_type, self.sub_type)\n        for key, val in self.params.items():\n            ret += \"; %s=%s\" % (key, val.decode('ascii'))\n        return ret\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/model_meta.py",
    "content": "\"\"\"\nHelper function for returning the field information that is associated\nwith a model class. This includes returning all the forward and reverse\nrelationships and their associated metadata.\n\nUsage: `get_field_info(model)` returns a `FieldInfo` instance.\n\"\"\"\nfrom collections import OrderedDict, namedtuple\n\nFieldInfo = namedtuple('FieldResult', [\n    'pk',  # Model field instance\n    'fields',  # Dict of field name -> model field instance\n    'forward_relations',  # Dict of field name -> RelationInfo\n    'reverse_relations',  # Dict of field name -> RelationInfo\n    'fields_and_pk',  # Shortcut for 'pk' + 'fields'\n    'relations'  # Shortcut for 'forward_relations' + 'reverse_relations'\n])\n\nRelationInfo = namedtuple('RelationInfo', [\n    'model_field',\n    'related_model',\n    'to_many',\n    'to_field',\n    'has_through_model',\n    'reverse'\n])\n\n\ndef get_field_info(model):\n    \"\"\"\n    Given a model class, returns a `FieldInfo` instance, which is a\n    `namedtuple`, containing metadata about the various field types on the model\n    including information about their relationships.\n    \"\"\"\n    opts = model._meta.concrete_model._meta\n\n    pk = _get_pk(opts)\n    fields = _get_fields(opts)\n    forward_relations = _get_forward_relationships(opts)\n    reverse_relations = _get_reverse_relationships(opts)\n    fields_and_pk = _merge_fields_and_pk(pk, fields)\n    relationships = _merge_relationships(forward_relations, reverse_relations)\n\n    return FieldInfo(pk, fields, forward_relations, reverse_relations,\n                     fields_and_pk, relationships)\n\n\ndef _get_pk(opts):\n    pk = opts.pk\n    rel = pk.remote_field\n\n    while rel and rel.parent_link:\n        # If model is a child via multi-table inheritance, use parent's pk.\n        pk = pk.remote_field.model._meta.pk\n        rel = pk.remote_field\n\n    return pk\n\n\ndef _get_fields(opts):\n    fields = OrderedDict()\n    for field in [field for field in opts.fields if field.serialize and not field.remote_field]:\n        fields[field.name] = field\n\n    return fields\n\n\ndef _get_to_field(field):\n    return getattr(field, 'to_fields', None) and field.to_fields[0]\n\n\ndef _get_forward_relationships(opts):\n    \"\"\"\n    Returns an `OrderedDict` of field names to `RelationInfo`.\n    \"\"\"\n    forward_relations = OrderedDict()\n    for field in [field for field in opts.fields if field.serialize and field.remote_field]:\n        forward_relations[field.name] = RelationInfo(\n            model_field=field,\n            related_model=field.remote_field.model,\n            to_many=False,\n            to_field=_get_to_field(field),\n            has_through_model=False,\n            reverse=False\n        )\n\n    # Deal with forward many-to-many relationships.\n    for field in [field for field in opts.many_to_many if field.serialize]:\n        forward_relations[field.name] = RelationInfo(\n            model_field=field,\n            related_model=field.remote_field.model,\n            to_many=True,\n            # manytomany do not have to_fields\n            to_field=None,\n            has_through_model=(\n                not field.remote_field.through._meta.auto_created\n            ),\n            reverse=False\n        )\n\n    return forward_relations\n\n\ndef _get_reverse_relationships(opts):\n    \"\"\"\n    Returns an `OrderedDict` of field names to `RelationInfo`.\n    \"\"\"\n    reverse_relations = OrderedDict()\n    all_related_objects = [r for r in opts.related_objects if not r.field.many_to_many]\n    for relation in all_related_objects:\n        accessor_name = relation.get_accessor_name()\n        reverse_relations[accessor_name] = RelationInfo(\n            model_field=None,\n            related_model=relation.related_model,\n            to_many=relation.field.remote_field.multiple,\n            to_field=_get_to_field(relation.field),\n            has_through_model=False,\n            reverse=True\n        )\n\n    # Deal with reverse many-to-many relationships.\n    all_related_many_to_many_objects = [r for r in opts.related_objects if r.field.many_to_many]\n    for relation in all_related_many_to_many_objects:\n        accessor_name = relation.get_accessor_name()\n        reverse_relations[accessor_name] = RelationInfo(\n            model_field=None,\n            related_model=relation.related_model,\n            to_many=True,\n            # manytomany do not have to_fields\n            to_field=None,\n            has_through_model=(\n                (getattr(relation.field.remote_field, 'through', None) is not None) and\n                not relation.field.remote_field.through._meta.auto_created\n            ),\n            reverse=True\n        )\n\n    return reverse_relations\n\n\ndef _merge_fields_and_pk(pk, fields):\n    fields_and_pk = OrderedDict()\n    fields_and_pk['pk'] = pk\n    fields_and_pk[pk.name] = pk\n    fields_and_pk.update(fields)\n\n    return fields_and_pk\n\n\ndef _merge_relationships(forward_relations, reverse_relations):\n    return OrderedDict(\n        list(forward_relations.items()) +\n        list(reverse_relations.items())\n    )\n\n\ndef is_abstract_model(model):\n    \"\"\"\n    Given a model class, returns a boolean True if it is abstract and False if it is not.\n    \"\"\"\n    return hasattr(model, '_meta') and hasattr(model._meta, 'abstract') and model._meta.abstract\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/representation.py",
    "content": "\"\"\"\nHelper functions for creating user-friendly representations\nof serializer classes and serializer fields.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport re\n\nfrom django.db import models\nfrom django.utils.encoding import force_text\nfrom django.utils.functional import Promise\n\nfrom jet_django.deps.rest_framework.compat import unicode_repr\n\n\ndef manager_repr(value):\n    model = value.model\n    opts = model._meta\n    names_and_managers = [\n        (manager.name, manager)\n        for manager\n        in opts.managers\n    ]\n    for manager_name, manager_instance in names_and_managers:\n        if manager_instance == value:\n            return '%s.%s.all()' % (model._meta.object_name, manager_name)\n    return repr(value)\n\n\ndef smart_repr(value):\n    if isinstance(value, models.Manager):\n        return manager_repr(value)\n\n    if isinstance(value, Promise) and value._delegate_text:\n        value = force_text(value)\n\n    value = unicode_repr(value)\n\n    # Representations like u'help text'\n    # should simply be presented as 'help text'\n    if value.startswith(\"u'\") and value.endswith(\"'\"):\n        return value[1:]\n\n    # Representations like\n    # <django.core.validators.RegexValidator object at 0x1047af050>\n    # Should be presented as\n    # <django.core.validators.RegexValidator object>\n    value = re.sub(' at 0x[0-9A-Fa-f]{4,32}>', '>', value)\n\n    return value\n\n\ndef field_repr(field, force_many=False):\n    kwargs = field._kwargs\n    if force_many:\n        kwargs = kwargs.copy()\n        kwargs['many'] = True\n        kwargs.pop('child', None)\n\n    arg_string = ', '.join([smart_repr(val) for val in field._args])\n    kwarg_string = ', '.join([\n        '%s=%s' % (key, smart_repr(val))\n        for key, val in sorted(kwargs.items())\n    ])\n    if arg_string and kwarg_string:\n        arg_string += ', '\n\n    if force_many:\n        class_name = force_many.__class__.__name__\n    else:\n        class_name = field.__class__.__name__\n\n    return \"%s(%s%s)\" % (class_name, arg_string, kwarg_string)\n\n\ndef serializer_repr(serializer, indent, force_many=None):\n    ret = field_repr(serializer, force_many) + ':'\n    indent_str = '    ' * indent\n\n    if force_many:\n        fields = force_many.fields\n    else:\n        fields = serializer.fields\n\n    for field_name, field in fields.items():\n        ret += '\\n' + indent_str + field_name + ' = '\n        if hasattr(field, 'fields'):\n            ret += serializer_repr(field, indent + 1)\n        elif hasattr(field, 'child'):\n            ret += list_repr(field, indent + 1)\n        elif hasattr(field, 'child_relation'):\n            ret += field_repr(field.child_relation, force_many=field.child_relation)\n        else:\n            ret += field_repr(field)\n\n    if serializer.validators:\n        ret += '\\n' + indent_str + 'class Meta:'\n        ret += '\\n' + indent_str + '    validators = ' + smart_repr(serializer.validators)\n\n    return ret\n\n\ndef list_repr(serializer, indent):\n    child = serializer.child\n    if hasattr(child, 'fields'):\n        return serializer_repr(serializer, indent, force_many=child)\n    return field_repr(serializer)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/serializer_helpers.py",
    "content": "from __future__ import unicode_literals\n\nimport collections\nfrom collections import OrderedDict\n\nfrom django.utils.encoding import force_text\n\nfrom jet_django.deps.rest_framework.compat import unicode_to_repr\nfrom jet_django.deps.rest_framework.utils import json\n\n\nclass ReturnDict(OrderedDict):\n    \"\"\"\n    Return object from `serializer.data` for the `Serializer` class.\n    Includes a backlink to the serializer instance for renderers\n    to use if they need richer field information.\n    \"\"\"\n\n    def __init__(self, *args, **kwargs):\n        self.serializer = kwargs.pop('serializer')\n        super(ReturnDict, self).__init__(*args, **kwargs)\n\n    def copy(self):\n        return ReturnDict(self, serializer=self.serializer)\n\n    def __repr__(self):\n        return dict.__repr__(self)\n\n    def __reduce__(self):\n        # Pickling these objects will drop the .serializer backlink,\n        # but preserve the raw data.\n        return (dict, (dict(self),))\n\n\nclass ReturnList(list):\n    \"\"\"\n    Return object from `serializer.data` for the `SerializerList` class.\n    Includes a backlink to the serializer instance for renderers\n    to use if they need richer field information.\n    \"\"\"\n\n    def __init__(self, *args, **kwargs):\n        self.serializer = kwargs.pop('serializer')\n        super(ReturnList, self).__init__(*args, **kwargs)\n\n    def __repr__(self):\n        return list.__repr__(self)\n\n    def __reduce__(self):\n        # Pickling these objects will drop the .serializer backlink,\n        # but preserve the raw data.\n        return (list, (list(self),))\n\n\nclass BoundField(object):\n    \"\"\"\n    A field object that also includes `.value` and `.error` properties.\n    Returned when iterating over a serializer instance,\n    providing an API similar to Django forms and form fields.\n    \"\"\"\n\n    def __init__(self, field, value, errors, prefix=''):\n        self._field = field\n        self._prefix = prefix\n        self.value = value\n        self.errors = errors\n        self.name = prefix + self.field_name\n\n    def __getattr__(self, attr_name):\n        return getattr(self._field, attr_name)\n\n    @property\n    def _proxy_class(self):\n        return self._field.__class__\n\n    def __repr__(self):\n        return unicode_to_repr('<%s value=%s errors=%s>' % (\n            self.__class__.__name__, self.value, self.errors\n        ))\n\n    def as_form_field(self):\n        value = '' if (self.value is None or self.value is False) else self.value\n        return self.__class__(self._field, value, self.errors, self._prefix)\n\n\nclass JSONBoundField(BoundField):\n    def as_form_field(self):\n        value = self.value\n        # When HTML form input is used and the input is not valid\n        # value will be a JSONString, rather than a JSON primitive.\n        if not getattr(value, 'is_json_string', False):\n            try:\n                value = json.dumps(self.value, sort_keys=True, indent=4)\n            except (TypeError, ValueError):\n                pass\n        return self.__class__(self._field, value, self.errors, self._prefix)\n\n\nclass NestedBoundField(BoundField):\n    \"\"\"\n    This `BoundField` additionally implements __iter__ and __getitem__\n    in order to support nested bound fields. This class is the type of\n    `BoundField` that is used for serializer fields.\n    \"\"\"\n\n    def __init__(self, field, value, errors, prefix=''):\n        if value is None or value is '':\n            value = {}\n        super(NestedBoundField, self).__init__(field, value, errors, prefix)\n\n    def __iter__(self):\n        for field in self.fields.values():\n            yield self[field.field_name]\n\n    def __getitem__(self, key):\n        field = self.fields[key]\n        value = self.value.get(key) if self.value else None\n        error = self.errors.get(key) if isinstance(self.errors, dict) else None\n        if hasattr(field, 'fields'):\n            return NestedBoundField(field, value, error, prefix=self.name + '.')\n        return BoundField(field, value, error, prefix=self.name + '.')\n\n    def as_form_field(self):\n        values = {}\n        for key, value in self.value.items():\n            if isinstance(value, (list, dict)):\n                values[key] = value\n            else:\n                values[key] = '' if (value is None or value is False) else force_text(value)\n        return self.__class__(self._field, values, self.errors, self._prefix)\n\n\nclass BindingDict(collections.MutableMapping):\n    \"\"\"\n    This dict-like object is used to store fields on a serializer.\n\n    This ensures that whenever fields are added to the serializer we call\n    `field.bind()` so that the `field_name` and `parent` attributes\n    can be set correctly.\n    \"\"\"\n\n    def __init__(self, serializer):\n        self.serializer = serializer\n        self.fields = OrderedDict()\n\n    def __setitem__(self, key, field):\n        self.fields[key] = field\n        field.bind(field_name=key, parent=self.serializer)\n\n    def __getitem__(self, key):\n        return self.fields[key]\n\n    def __delitem__(self, key):\n        del self.fields[key]\n\n    def __iter__(self):\n        return iter(self.fields)\n\n    def __len__(self):\n        return len(self.fields)\n\n    def __repr__(self):\n        return dict.__repr__(self.fields)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/utils/urls.py",
    "content": "from django.utils.encoding import force_str\nfrom django.utils.six.moves.urllib import parse as urlparse\n\n\ndef replace_query_param(url, key, val):\n    \"\"\"\n    Given a URL and a key/val pair, set or replace an item in the query\n    parameters of the URL, and return the new URL.\n    \"\"\"\n    (scheme, netloc, path, query, fragment) = urlparse.urlsplit(force_str(url))\n    query_dict = urlparse.parse_qs(query, keep_blank_values=True)\n    query_dict[force_str(key)] = [force_str(val)]\n    query = urlparse.urlencode(sorted(list(query_dict.items())), doseq=True)\n    return urlparse.urlunsplit((scheme, netloc, path, query, fragment))\n\n\ndef remove_query_param(url, key):\n    \"\"\"\n    Given a URL and a key/val pair, remove an item in the query\n    parameters of the URL, and return the new URL.\n    \"\"\"\n    (scheme, netloc, path, query, fragment) = urlparse.urlsplit(force_str(url))\n    query_dict = urlparse.parse_qs(query, keep_blank_values=True)\n    query_dict.pop(key, None)\n    query = urlparse.urlencode(sorted(list(query_dict.items())), doseq=True)\n    return urlparse.urlunsplit((scheme, netloc, path, query, fragment))\n"
  },
  {
    "path": "jet_django/deps/rest_framework/validators.py",
    "content": "\"\"\"\nWe perform uniqueness checks explicitly on the serializer class, rather\nthe using Django's `.full_clean()`.\n\nThis gives us better separation of concerns, allows us to use single-step\nobject creation, and makes it possible to switch between using the implicit\n`ModelSerializer` class and an equivalent explicit `Serializer` class.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.db import DataError\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework.compat import unicode_to_repr\nfrom jet_django.deps.rest_framework.exceptions import ValidationError\nfrom jet_django.deps.rest_framework.utils.representation import smart_repr\n\n\n# Robust filter and exist implementations. Ensures that queryset.exists() for\n# an invalid value returns `False`, rather than raising an error.\n# Refs https://github.com/encode/django-rest-framework/issues/3381\ndef qs_exists(queryset):\n    try:\n        return queryset.exists()\n    except (TypeError, ValueError, DataError):\n        return False\n\n\ndef qs_filter(queryset, **kwargs):\n    try:\n        return queryset.filter(**kwargs)\n    except (TypeError, ValueError, DataError):\n        return queryset.none()\n\n\nclass UniqueValidator(object):\n    \"\"\"\n    Validator that corresponds to `unique=True` on a model field.\n\n    Should be applied to an individual field on the serializer.\n    \"\"\"\n    message = _('This field must be unique.')\n\n    def __init__(self, queryset, message=None, lookup='exact'):\n        self.queryset = queryset\n        self.serializer_field = None\n        self.message = message or self.message\n        self.lookup = lookup\n\n    def set_context(self, serializer_field):\n        \"\"\"\n        This hook is called by the serializer instance,\n        prior to the validation call being made.\n        \"\"\"\n        # Determine the underlying model field name. This may not be the\n        # same as the serializer field name if `source=<>` is set.\n        self.field_name = serializer_field.source_attrs[-1]\n        # Determine the existing instance, if this is an update operation.\n        self.instance = getattr(serializer_field.parent, 'instance', None)\n\n    def filter_queryset(self, value, queryset):\n        \"\"\"\n        Filter the queryset to all instances matching the given attribute.\n        \"\"\"\n        filter_kwargs = {'%s__%s' % (self.field_name, self.lookup): value}\n        return qs_filter(queryset, **filter_kwargs)\n\n    def exclude_current_instance(self, queryset):\n        \"\"\"\n        If an instance is being updated, then do not include\n        that instance itself as a uniqueness conflict.\n        \"\"\"\n        if self.instance is not None:\n            return queryset.exclude(pk=self.instance.pk)\n        return queryset\n\n    def __call__(self, value):\n        queryset = self.queryset\n        queryset = self.filter_queryset(value, queryset)\n        queryset = self.exclude_current_instance(queryset)\n        if qs_exists(queryset):\n            raise ValidationError(self.message, code='unique')\n\n    def __repr__(self):\n        return unicode_to_repr('<%s(queryset=%s)>' % (\n            self.__class__.__name__,\n            smart_repr(self.queryset)\n        ))\n\n\nclass UniqueTogetherValidator(object):\n    \"\"\"\n    Validator that corresponds to `unique_together = (...)` on a model class.\n\n    Should be applied to the serializer class, not to an individual field.\n    \"\"\"\n    message = _('The fields {field_names} must make a unique set.')\n    missing_message = _('This field is required.')\n\n    def __init__(self, queryset, fields, message=None):\n        self.queryset = queryset\n        self.fields = fields\n        self.serializer_field = None\n        self.message = message or self.message\n\n    def set_context(self, serializer):\n        \"\"\"\n        This hook is called by the serializer instance,\n        prior to the validation call being made.\n        \"\"\"\n        # Determine the existing instance, if this is an update operation.\n        self.instance = getattr(serializer, 'instance', None)\n\n    def enforce_required_fields(self, attrs):\n        \"\"\"\n        The `UniqueTogetherValidator` always forces an implied 'required'\n        state on the fields it applies to.\n        \"\"\"\n        if self.instance is not None:\n            return\n\n        missing_items = {\n            field_name: self.missing_message\n            for field_name in self.fields\n            if field_name not in attrs\n        }\n        if missing_items:\n            raise ValidationError(missing_items, code='required')\n\n    def filter_queryset(self, attrs, queryset):\n        \"\"\"\n        Filter the queryset to all instances matching the given attributes.\n        \"\"\"\n        # If this is an update, then any unprovided field should\n        # have it's value set based on the existing instance attribute.\n        if self.instance is not None:\n            for field_name in self.fields:\n                if field_name not in attrs:\n                    attrs[field_name] = getattr(self.instance, field_name)\n\n        # Determine the filter keyword arguments and filter the queryset.\n        filter_kwargs = {\n            field_name: attrs[field_name]\n            for field_name in self.fields\n        }\n        return qs_filter(queryset, **filter_kwargs)\n\n    def exclude_current_instance(self, attrs, queryset):\n        \"\"\"\n        If an instance is being updated, then do not include\n        that instance itself as a uniqueness conflict.\n        \"\"\"\n        if self.instance is not None:\n            return queryset.exclude(pk=self.instance.pk)\n        return queryset\n\n    def __call__(self, attrs):\n        self.enforce_required_fields(attrs)\n        queryset = self.queryset\n        queryset = self.filter_queryset(attrs, queryset)\n        queryset = self.exclude_current_instance(attrs, queryset)\n\n        # Ignore validation if any field is None\n        checked_values = [\n            value for field, value in attrs.items() if field in self.fields\n        ]\n        if None not in checked_values and qs_exists(queryset):\n            field_names = ', '.join(self.fields)\n            message = self.message.format(field_names=field_names)\n            raise ValidationError(message, code='unique')\n\n    def __repr__(self):\n        return unicode_to_repr('<%s(queryset=%s, fields=%s)>' % (\n            self.__class__.__name__,\n            smart_repr(self.queryset),\n            smart_repr(self.fields)\n        ))\n\n\nclass BaseUniqueForValidator(object):\n    message = None\n    missing_message = _('This field is required.')\n\n    def __init__(self, queryset, field, date_field, message=None):\n        self.queryset = queryset\n        self.field = field\n        self.date_field = date_field\n        self.message = message or self.message\n\n    def set_context(self, serializer):\n        \"\"\"\n        This hook is called by the serializer instance,\n        prior to the validation call being made.\n        \"\"\"\n        # Determine the underlying model field names. These may not be the\n        # same as the serializer field names if `source=<>` is set.\n        self.field_name = serializer.fields[self.field].source_attrs[-1]\n        self.date_field_name = serializer.fields[self.date_field].source_attrs[-1]\n        # Determine the existing instance, if this is an update operation.\n        self.instance = getattr(serializer, 'instance', None)\n\n    def enforce_required_fields(self, attrs):\n        \"\"\"\n        The `UniqueFor<Range>Validator` classes always force an implied\n        'required' state on the fields they are applied to.\n        \"\"\"\n        missing_items = {\n            field_name: self.missing_message\n            for field_name in [self.field, self.date_field]\n            if field_name not in attrs\n        }\n        if missing_items:\n            raise ValidationError(missing_items, code='required')\n\n    def filter_queryset(self, attrs, queryset):\n        raise NotImplementedError('`filter_queryset` must be implemented.')\n\n    def exclude_current_instance(self, attrs, queryset):\n        \"\"\"\n        If an instance is being updated, then do not include\n        that instance itself as a uniqueness conflict.\n        \"\"\"\n        if self.instance is not None:\n            return queryset.exclude(pk=self.instance.pk)\n        return queryset\n\n    def __call__(self, attrs):\n        self.enforce_required_fields(attrs)\n        queryset = self.queryset\n        queryset = self.filter_queryset(attrs, queryset)\n        queryset = self.exclude_current_instance(attrs, queryset)\n        if qs_exists(queryset):\n            message = self.message.format(date_field=self.date_field)\n            raise ValidationError({\n                self.field: message\n            }, code='unique')\n\n    def __repr__(self):\n        return unicode_to_repr('<%s(queryset=%s, field=%s, date_field=%s)>' % (\n            self.__class__.__name__,\n            smart_repr(self.queryset),\n            smart_repr(self.field),\n            smart_repr(self.date_field)\n        ))\n\n\nclass UniqueForDateValidator(BaseUniqueForValidator):\n    message = _('This field must be unique for the \"{date_field}\" date.')\n\n    def filter_queryset(self, attrs, queryset):\n        value = attrs[self.field]\n        date = attrs[self.date_field]\n\n        filter_kwargs = {}\n        filter_kwargs[self.field_name] = value\n        filter_kwargs['%s__day' % self.date_field_name] = date.day\n        filter_kwargs['%s__month' % self.date_field_name] = date.month\n        filter_kwargs['%s__year' % self.date_field_name] = date.year\n        return qs_filter(queryset, **filter_kwargs)\n\n\nclass UniqueForMonthValidator(BaseUniqueForValidator):\n    message = _('This field must be unique for the \"{date_field}\" month.')\n\n    def filter_queryset(self, attrs, queryset):\n        value = attrs[self.field]\n        date = attrs[self.date_field]\n\n        filter_kwargs = {}\n        filter_kwargs[self.field_name] = value\n        filter_kwargs['%s__month' % self.date_field_name] = date.month\n        return qs_filter(queryset, **filter_kwargs)\n\n\nclass UniqueForYearValidator(BaseUniqueForValidator):\n    message = _('This field must be unique for the \"{date_field}\" year.')\n\n    def filter_queryset(self, attrs, queryset):\n        value = attrs[self.field]\n        date = attrs[self.date_field]\n\n        filter_kwargs = {}\n        filter_kwargs[self.field_name] = value\n        filter_kwargs['%s__year' % self.date_field_name] = date.year\n        return qs_filter(queryset, **filter_kwargs)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/versioning.py",
    "content": "# coding: utf-8\nfrom __future__ import unicode_literals\n\nimport re\n\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import exceptions\nfrom jet_django.deps.rest_framework.compat import unicode_http_header\nfrom jet_django.deps.rest_framework.reverse import _reverse\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.templatetags.rest_framework import replace_query_param\nfrom jet_django.deps.rest_framework.utils.mediatypes import _MediaType\n\n\nclass BaseVersioning(object):\n    default_version = api_settings.DEFAULT_VERSION\n    allowed_versions = api_settings.ALLOWED_VERSIONS\n    version_param = api_settings.VERSION_PARAM\n\n    def determine_version(self, request, *args, **kwargs):\n        msg = '{cls}.determine_version() must be implemented.'\n        raise NotImplementedError(msg.format(\n            cls=self.__class__.__name__\n        ))\n\n    def reverse(self, viewname, args=None, kwargs=None, request=None, format=None, **extra):\n        return _reverse(viewname, args, kwargs, request, format, **extra)\n\n    def is_allowed_version(self, version):\n        if not self.allowed_versions:\n            return True\n        return ((version is not None and version == self.default_version) or\n                (version in self.allowed_versions))\n\n\nclass AcceptHeaderVersioning(BaseVersioning):\n    \"\"\"\n    GET /something/ HTTP/1.1\n    Host: example.com\n    Accept: application/json; version=1.0\n    \"\"\"\n    invalid_version_message = _('Invalid version in \"Accept\" header.')\n\n    def determine_version(self, request, *args, **kwargs):\n        media_type = _MediaType(request.accepted_media_type)\n        version = media_type.params.get(self.version_param, self.default_version)\n        version = unicode_http_header(version)\n        if not self.is_allowed_version(version):\n            raise exceptions.NotAcceptable(self.invalid_version_message)\n        return version\n\n    # We don't need to implement `reverse`, as the versioning is based\n    # on the `Accept` header, not on the request URL.\n\n\nclass URLPathVersioning(BaseVersioning):\n    \"\"\"\n    To the client this is the same style as `NamespaceVersioning`.\n    The difference is in the backend - this implementation uses\n    Django's URL keyword arguments to determine the version.\n\n    An example URL conf for two views that accept two different versions.\n\n    urlpatterns = [\n        url(r'^(?P<version>[v1|v2]+)/users/$', users_list, name='users-list'),\n        url(r'^(?P<version>[v1|v2]+)/users/(?P<pk>[0-9]+)/$', users_detail, name='users-detail')\n    ]\n\n    GET /1.0/something/ HTTP/1.1\n    Host: example.com\n    Accept: application/json\n    \"\"\"\n    invalid_version_message = _('Invalid version in URL path.')\n\n    def determine_version(self, request, *args, **kwargs):\n        version = kwargs.get(self.version_param, self.default_version)\n        if not self.is_allowed_version(version):\n            raise exceptions.NotFound(self.invalid_version_message)\n        return version\n\n    def reverse(self, viewname, args=None, kwargs=None, request=None, format=None, **extra):\n        if request.version is not None:\n            kwargs = {} if (kwargs is None) else kwargs\n            kwargs[self.version_param] = request.version\n\n        return super(URLPathVersioning, self).reverse(\n            viewname, args, kwargs, request, format, **extra\n        )\n\n\nclass NamespaceVersioning(BaseVersioning):\n    \"\"\"\n    To the client this is the same style as `URLPathVersioning`.\n    The difference is in the backend - this implementation uses\n    Django's URL namespaces to determine the version.\n\n    An example URL conf that is namespaced into two separate versions\n\n    # users/urls.py\n    urlpatterns = [\n        url(r'^/users/$', users_list, name='users-list'),\n        url(r'^/users/(?P<pk>[0-9]+)/$', users_detail, name='users-detail')\n    ]\n\n    # urls.py\n    urlpatterns = [\n        url(r'^v1/', include('users.urls', namespace='v1')),\n        url(r'^v2/', include('users.urls', namespace='v2'))\n    ]\n\n    GET /1.0/something/ HTTP/1.1\n    Host: example.com\n    Accept: application/json\n    \"\"\"\n    invalid_version_message = _('Invalid version in URL path. Does not match any version namespace.')\n\n    def determine_version(self, request, *args, **kwargs):\n        resolver_match = getattr(request, 'resolver_match', None)\n        if resolver_match is None or not resolver_match.namespace:\n            return self.default_version\n\n        # Allow for possibly nested namespaces.\n        possible_versions = resolver_match.namespace.split(':')\n        for version in possible_versions:\n            if self.is_allowed_version(version):\n                return version\n        raise exceptions.NotFound(self.invalid_version_message)\n\n    def reverse(self, viewname, args=None, kwargs=None, request=None, format=None, **extra):\n        if request.version is not None:\n            viewname = self.get_versioned_viewname(viewname, request)\n        return super(NamespaceVersioning, self).reverse(\n            viewname, args, kwargs, request, format, **extra\n        )\n\n    def get_versioned_viewname(self, viewname, request):\n        return request.version + ':' + viewname\n\n\nclass HostNameVersioning(BaseVersioning):\n    \"\"\"\n    GET /something/ HTTP/1.1\n    Host: v1.example.com\n    Accept: application/json\n    \"\"\"\n    hostname_regex = re.compile(r'^([a-zA-Z0-9]+)\\.[a-zA-Z0-9]+\\.[a-zA-Z0-9]+$')\n    invalid_version_message = _('Invalid version in hostname.')\n\n    def determine_version(self, request, *args, **kwargs):\n        hostname, separator, port = request.get_host().partition(':')\n        match = self.hostname_regex.match(hostname)\n        if not match:\n            return self.default_version\n        version = match.group(1)\n        if not self.is_allowed_version(version):\n            raise exceptions.NotFound(self.invalid_version_message)\n        return version\n\n    # We don't need to implement `reverse`, as the hostname will already be\n    # preserved as part of the REST framework `reverse` implementation.\n\n\nclass QueryParameterVersioning(BaseVersioning):\n    \"\"\"\n    GET /something/?version=0.1 HTTP/1.1\n    Host: example.com\n    Accept: application/json\n    \"\"\"\n    invalid_version_message = _('Invalid version in query parameter.')\n\n    def determine_version(self, request, *args, **kwargs):\n        version = request.query_params.get(self.version_param, self.default_version)\n        if not self.is_allowed_version(version):\n            raise exceptions.NotFound(self.invalid_version_message)\n        return version\n\n    def reverse(self, viewname, args=None, kwargs=None, request=None, format=None, **extra):\n        url = super(QueryParameterVersioning, self).reverse(\n            viewname, args, kwargs, request, format, **extra\n        )\n        if request.version is not None:\n            return replace_query_param(url, self.version_param, request.version)\n        return url\n"
  },
  {
    "path": "jet_django/deps/rest_framework/views.py",
    "content": "\"\"\"\nProvides an APIView class that is the base of all views in REST framework.\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom django.conf import settings\nfrom django.core.exceptions import PermissionDenied\nfrom django.db import connection, models, transaction\nfrom django.http import Http404\nfrom django.http.response import HttpResponseBase\nfrom django.utils.cache import cc_delim_re, patch_vary_headers\nfrom django.utils.encoding import smart_text\nfrom django.views.decorators.csrf import csrf_exempt\nfrom django.views.generic import View\n\nfrom jet_django.deps.rest_framework import exceptions, status\nfrom jet_django.deps.rest_framework.request import Request\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.schemas import DefaultSchema\nfrom jet_django.deps.rest_framework.settings import api_settings\nfrom jet_django.deps.rest_framework.utils import formatting\n\n\ndef get_view_name(view_cls, suffix=None):\n    \"\"\"\n    Given a view class, return a textual name to represent the view.\n    This name is used in the browsable API, and in OPTIONS responses.\n\n    This function is the default for the `VIEW_NAME_FUNCTION` setting.\n    \"\"\"\n    name = view_cls.__name__\n    name = formatting.remove_trailing_string(name, 'View')\n    name = formatting.remove_trailing_string(name, 'ViewSet')\n    name = formatting.camelcase_to_spaces(name)\n    if suffix:\n        name += ' ' + suffix\n\n    return name\n\n\ndef get_view_description(view_cls, html=False):\n    \"\"\"\n    Given a view class, return a textual description to represent the view.\n    This name is used in the browsable API, and in OPTIONS responses.\n\n    This function is the default for the `VIEW_DESCRIPTION_FUNCTION` setting.\n    \"\"\"\n    description = view_cls.__doc__ or ''\n    description = formatting.dedent(smart_text(description))\n    if html:\n        return formatting.markup_description(description)\n    return description\n\n\ndef set_rollback():\n    atomic_requests = connection.settings_dict.get('ATOMIC_REQUESTS', False)\n    if atomic_requests and connection.in_atomic_block:\n        transaction.set_rollback(True)\n\n\ndef exception_handler(exc, context):\n    \"\"\"\n    Returns the response that should be used for any given exception.\n\n    By default we handle the REST framework `APIException`, and also\n    Django's built-in `Http404` and `PermissionDenied` exceptions.\n\n    Any unhandled exceptions may return `None`, which will cause a 500 error\n    to be raised.\n    \"\"\"\n    if isinstance(exc, Http404):\n        exc = exceptions.NotFound()\n    elif isinstance(exc, PermissionDenied):\n        exc = exceptions.PermissionDenied()\n\n    if isinstance(exc, exceptions.APIException):\n        headers = {}\n        if getattr(exc, 'auth_header', None):\n            headers['WWW-Authenticate'] = exc.auth_header\n        if getattr(exc, 'wait', None):\n            headers['Retry-After'] = '%d' % exc.wait\n\n        if isinstance(exc.detail, (list, dict)):\n            data = exc.detail\n        else:\n            data = {'detail': exc.detail}\n\n        set_rollback()\n        return Response(data, status=exc.status_code, headers=headers)\n\n    return None\n\n\nclass APIView(View):\n\n    # The following policies may be set at either globally, or per-view.\n    renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES\n    parser_classes = api_settings.DEFAULT_PARSER_CLASSES\n    authentication_classes = api_settings.DEFAULT_AUTHENTICATION_CLASSES\n    throttle_classes = api_settings.DEFAULT_THROTTLE_CLASSES\n    permission_classes = api_settings.DEFAULT_PERMISSION_CLASSES\n    content_negotiation_class = api_settings.DEFAULT_CONTENT_NEGOTIATION_CLASS\n    metadata_class = api_settings.DEFAULT_METADATA_CLASS\n    versioning_class = api_settings.DEFAULT_VERSIONING_CLASS\n\n    # Allow dependency injection of other settings to make testing easier.\n    settings = api_settings\n\n    schema = DefaultSchema()\n\n    @classmethod\n    def as_view(cls, **initkwargs):\n        \"\"\"\n        Store the original class on the view function.\n\n        This allows us to discover information about the view when we do URL\n        reverse lookups.  Used for breadcrumb generation.\n        \"\"\"\n        if isinstance(getattr(cls, 'queryset', None), models.query.QuerySet):\n            def force_evaluation():\n                raise RuntimeError(\n                    'Do not evaluate the `.queryset` attribute directly, '\n                    'as the result will be cached and reused between requests. '\n                    'Use `.all()` or call `.get_queryset()` instead.'\n                )\n            cls.queryset._fetch_all = force_evaluation\n\n        view = super(APIView, cls).as_view(**initkwargs)\n        view.cls = cls\n        view.initkwargs = initkwargs\n\n        # Note: session based authentication is explicitly CSRF validated,\n        # all other authentication is CSRF exempt.\n        return csrf_exempt(view)\n\n    @property\n    def allowed_methods(self):\n        \"\"\"\n        Wrap Django's private `_allowed_methods` interface in a public property.\n        \"\"\"\n        return self._allowed_methods()\n\n    @property\n    def default_response_headers(self):\n        headers = {\n            'Allow': ', '.join(self.allowed_methods),\n        }\n        if len(self.renderer_classes) > 1:\n            headers['Vary'] = 'Accept'\n        return headers\n\n    def http_method_not_allowed(self, request, *args, **kwargs):\n        \"\"\"\n        If `request.method` does not correspond to a handler method,\n        determine what kind of exception to raise.\n        \"\"\"\n        raise exceptions.MethodNotAllowed(request.method)\n\n    def permission_denied(self, request, message=None):\n        \"\"\"\n        If request is not permitted, determine what kind of exception to raise.\n        \"\"\"\n        if request.authenticators and not request.successful_authenticator:\n            raise exceptions.NotAuthenticated()\n        raise exceptions.PermissionDenied(detail=message)\n\n    def throttled(self, request, wait):\n        \"\"\"\n        If request is throttled, determine what kind of exception to raise.\n        \"\"\"\n        raise exceptions.Throttled(wait)\n\n    def get_authenticate_header(self, request):\n        \"\"\"\n        If a request is unauthenticated, determine the WWW-Authenticate\n        header to use for 401 responses, if any.\n        \"\"\"\n        authenticators = self.get_authenticators()\n        if authenticators:\n            return authenticators[0].authenticate_header(request)\n\n    def get_parser_context(self, http_request):\n        \"\"\"\n        Returns a dict that is passed through to Parser.parse(),\n        as the `parser_context` keyword argument.\n        \"\"\"\n        # Note: Additionally `request` and `encoding` will also be added\n        #       to the context by the Request object.\n        return {\n            'view': self,\n            'args': getattr(self, 'args', ()),\n            'kwargs': getattr(self, 'kwargs', {})\n        }\n\n    def get_renderer_context(self):\n        \"\"\"\n        Returns a dict that is passed through to Renderer.render(),\n        as the `renderer_context` keyword argument.\n        \"\"\"\n        # Note: Additionally 'response' will also be added to the context,\n        #       by the Response object.\n        return {\n            'view': self,\n            'args': getattr(self, 'args', ()),\n            'kwargs': getattr(self, 'kwargs', {}),\n            'request': getattr(self, 'request', None)\n        }\n\n    def get_exception_handler_context(self):\n        \"\"\"\n        Returns a dict that is passed through to EXCEPTION_HANDLER,\n        as the `context` argument.\n        \"\"\"\n        return {\n            'view': self,\n            'args': getattr(self, 'args', ()),\n            'kwargs': getattr(self, 'kwargs', {}),\n            'request': getattr(self, 'request', None)\n        }\n\n    def get_view_name(self):\n        \"\"\"\n        Return the view name, as used in OPTIONS responses and in the\n        browsable API.\n        \"\"\"\n        func = self.settings.VIEW_NAME_FUNCTION\n        return func(self.__class__, getattr(self, 'suffix', None))\n\n    def get_view_description(self, html=False):\n        \"\"\"\n        Return some descriptive text for the view, as used in OPTIONS responses\n        and in the browsable API.\n        \"\"\"\n        func = self.settings.VIEW_DESCRIPTION_FUNCTION\n        return func(self.__class__, html)\n\n    # API policy instantiation methods\n\n    def get_format_suffix(self, **kwargs):\n        \"\"\"\n        Determine if the request includes a '.json' style format suffix\n        \"\"\"\n        if self.settings.FORMAT_SUFFIX_KWARG:\n            return kwargs.get(self.settings.FORMAT_SUFFIX_KWARG)\n\n    def get_renderers(self):\n        \"\"\"\n        Instantiates and returns the list of renderers that this view can use.\n        \"\"\"\n        return [renderer() for renderer in self.renderer_classes]\n\n    def get_parsers(self):\n        \"\"\"\n        Instantiates and returns the list of parsers that this view can use.\n        \"\"\"\n        return [parser() for parser in self.parser_classes]\n\n    def get_authenticators(self):\n        \"\"\"\n        Instantiates and returns the list of authenticators that this view can use.\n        \"\"\"\n        return [auth() for auth in self.authentication_classes]\n\n    def get_permissions(self):\n        \"\"\"\n        Instantiates and returns the list of permissions that this view requires.\n        \"\"\"\n        return [permission() for permission in self.permission_classes]\n\n    def get_throttles(self):\n        \"\"\"\n        Instantiates and returns the list of throttles that this view uses.\n        \"\"\"\n        return [throttle() for throttle in self.throttle_classes]\n\n    def get_content_negotiator(self):\n        \"\"\"\n        Instantiate and return the content negotiation class to use.\n        \"\"\"\n        if not getattr(self, '_negotiator', None):\n            self._negotiator = self.content_negotiation_class()\n        return self._negotiator\n\n    def get_exception_handler(self):\n        \"\"\"\n        Returns the exception handler that this view uses.\n        \"\"\"\n        return self.settings.EXCEPTION_HANDLER\n\n    # API policy implementation methods\n\n    def perform_content_negotiation(self, request, force=False):\n        \"\"\"\n        Determine which renderer and media type to use render the response.\n        \"\"\"\n        renderers = self.get_renderers()\n        conneg = self.get_content_negotiator()\n\n        try:\n            return conneg.select_renderer(request, renderers, self.format_kwarg)\n        except Exception:\n            if force:\n                return (renderers[0], renderers[0].media_type)\n            raise\n\n    def perform_authentication(self, request):\n        \"\"\"\n        Perform authentication on the incoming request.\n\n        Note that if you override this and simply 'pass', then authentication\n        will instead be performed lazily, the first time either\n        `request.user` or `request.auth` is accessed.\n        \"\"\"\n        request.user\n\n    def check_permissions(self, request):\n        \"\"\"\n        Check if the request should be permitted.\n        Raises an appropriate exception if the request is not permitted.\n        \"\"\"\n        for permission in self.get_permissions():\n            if not permission.has_permission(request, self):\n                self.permission_denied(\n                    request, message=getattr(permission, 'message', None)\n                )\n\n    def check_object_permissions(self, request, obj):\n        \"\"\"\n        Check if the request should be permitted for a given object.\n        Raises an appropriate exception if the request is not permitted.\n        \"\"\"\n        for permission in self.get_permissions():\n            if not permission.has_object_permission(request, self, obj):\n                self.permission_denied(\n                    request, message=getattr(permission, 'message', None)\n                )\n\n    def check_throttles(self, request):\n        \"\"\"\n        Check if request should be throttled.\n        Raises an appropriate exception if the request is throttled.\n        \"\"\"\n        for throttle in self.get_throttles():\n            if not throttle.allow_request(request, self):\n                self.throttled(request, throttle.wait())\n\n    def determine_version(self, request, *args, **kwargs):\n        \"\"\"\n        If versioning is being used, then determine any API version for the\n        incoming request. Returns a two-tuple of (version, versioning_scheme)\n        \"\"\"\n        if self.versioning_class is None:\n            return (None, None)\n        scheme = self.versioning_class()\n        return (scheme.determine_version(request, *args, **kwargs), scheme)\n\n    # Dispatch methods\n\n    def initialize_request(self, request, *args, **kwargs):\n        \"\"\"\n        Returns the initial request object.\n        \"\"\"\n        parser_context = self.get_parser_context(request)\n\n        return Request(\n            request,\n            parsers=self.get_parsers(),\n            authenticators=self.get_authenticators(),\n            negotiator=self.get_content_negotiator(),\n            parser_context=parser_context\n        )\n\n    def initial(self, request, *args, **kwargs):\n        \"\"\"\n        Runs anything that needs to occur prior to calling the method handler.\n        \"\"\"\n        self.format_kwarg = self.get_format_suffix(**kwargs)\n\n        # Perform content negotiation and store the accepted info on the request\n        neg = self.perform_content_negotiation(request)\n        request.accepted_renderer, request.accepted_media_type = neg\n\n        # Determine the API version, if versioning is in use.\n        version, scheme = self.determine_version(request, *args, **kwargs)\n        request.version, request.versioning_scheme = version, scheme\n\n        # Ensure that the incoming request is permitted\n        self.perform_authentication(request)\n        self.check_permissions(request)\n        self.check_throttles(request)\n\n    def finalize_response(self, request, response, *args, **kwargs):\n        \"\"\"\n        Returns the final response object.\n        \"\"\"\n        # Make the error obvious if a proper response is not returned\n        assert isinstance(response, HttpResponseBase), (\n            'Expected a `Response`, `HttpResponse` or `HttpStreamingResponse` '\n            'to be returned from the view, but received a `%s`'\n            % type(response)\n        )\n\n        if isinstance(response, Response):\n            if not getattr(request, 'accepted_renderer', None):\n                neg = self.perform_content_negotiation(request, force=True)\n                request.accepted_renderer, request.accepted_media_type = neg\n\n            response.accepted_renderer = request.accepted_renderer\n            response.accepted_media_type = request.accepted_media_type\n            response.renderer_context = self.get_renderer_context()\n\n        # Add new vary headers to the response instead of overwriting.\n        vary_headers = self.headers.pop('Vary', None)\n        if vary_headers is not None:\n            patch_vary_headers(response, cc_delim_re.split(vary_headers))\n\n        for key, value in self.headers.items():\n            response[key] = value\n\n        return response\n\n    def handle_exception(self, exc):\n        \"\"\"\n        Handle any exception that occurs, by returning an appropriate response,\n        or re-raising the error.\n        \"\"\"\n        if isinstance(exc, (exceptions.NotAuthenticated,\n                            exceptions.AuthenticationFailed)):\n            # WWW-Authenticate header for 401 responses, else coerce to 403\n            auth_header = self.get_authenticate_header(self.request)\n\n            if auth_header:\n                exc.auth_header = auth_header\n            else:\n                exc.status_code = status.HTTP_403_FORBIDDEN\n\n        exception_handler = self.get_exception_handler()\n\n        context = self.get_exception_handler_context()\n        response = exception_handler(exc, context)\n\n        if response is None:\n            self.raise_uncaught_exception(exc)\n\n        response.exception = True\n        return response\n\n    def raise_uncaught_exception(self, exc):\n        if settings.DEBUG:\n            request = self.request\n            renderer_format = getattr(request.accepted_renderer, 'format')\n            use_plaintext_traceback = renderer_format not in ('html', 'api', 'admin')\n            request.force_plaintext_errors(use_plaintext_traceback)\n        raise\n\n    # Note: Views are made CSRF exempt from within `as_view` as to prevent\n    # accidental removal of this exemption in cases where `dispatch` needs to\n    # be overridden.\n    def dispatch(self, request, *args, **kwargs):\n        \"\"\"\n        `.dispatch()` is pretty much the same as Django's regular dispatch,\n        but with extra hooks for startup, finalize, and exception handling.\n        \"\"\"\n        self.args = args\n        self.kwargs = kwargs\n        request = self.initialize_request(request, *args, **kwargs)\n        self.request = request\n        self.headers = self.default_response_headers  # deprecate?\n\n        try:\n            self.initial(request, *args, **kwargs)\n\n            # Get the appropriate handler method\n            if request.method.lower() in self.http_method_names:\n                handler = getattr(self, request.method.lower(),\n                                  self.http_method_not_allowed)\n            else:\n                handler = self.http_method_not_allowed\n\n            response = handler(request, *args, **kwargs)\n\n        except Exception as exc:\n            response = self.handle_exception(exc)\n\n        self.response = self.finalize_response(request, response, *args, **kwargs)\n        return self.response\n\n    def options(self, request, *args, **kwargs):\n        \"\"\"\n        Handler method for HTTP 'OPTIONS' request.\n        \"\"\"\n        if self.metadata_class is None:\n            return self.http_method_not_allowed(request, *args, **kwargs)\n        data = self.metadata_class().determine_metadata(request, self)\n        return Response(data, status=status.HTTP_200_OK)\n"
  },
  {
    "path": "jet_django/deps/rest_framework/viewsets.py",
    "content": "\"\"\"\nViewSets are essentially just a type of class based view, that doesn't provide\nany method handlers, such as `get()`, `post()`, etc... but instead has actions,\nsuch as `list()`, `retrieve()`, `create()`, etc...\n\nActions are only bound to methods at the point of instantiating the views.\n\n    user_list = UserViewSet.as_view({'get': 'list'})\n    user_detail = UserViewSet.as_view({'get': 'retrieve'})\n\nTypically, rather than instantiate views from viewsets directly, you'll\nregister the viewset with a router and let the URL conf be determined\nautomatically.\n\n    router = DefaultRouter()\n    router.register(r'users', UserViewSet, 'user')\n    urlpatterns = router.urls\n\"\"\"\nfrom __future__ import unicode_literals\n\nfrom functools import update_wrapper\nfrom inspect import getmembers\n\nfrom django.utils.decorators import classonlymethod\nfrom django.views.decorators.csrf import csrf_exempt\n\nfrom jet_django.deps.rest_framework import generics, mixins, views\nfrom jet_django.deps.rest_framework.reverse import reverse\n\n\ndef _is_extra_action(attr):\n    return hasattr(attr, 'bind_to_methods')\n\n\nclass ViewSetMixin(object):\n    \"\"\"\n    This is the magic.\n\n    Overrides `.as_view()` so that it takes an `actions` keyword that performs\n    the binding of HTTP methods to actions on the Resource.\n\n    For example, to create a concrete view binding the 'GET' and 'POST' methods\n    to the 'list' and 'create' actions...\n\n    view = MyViewSet.as_view({'get': 'list', 'post': 'create'})\n    \"\"\"\n\n    @classonlymethod\n    def as_view(cls, actions=None, **initkwargs):\n        \"\"\"\n        Because of the way class based views create a closure around the\n        instantiated view, we need to totally reimplement `.as_view`,\n        and slightly modify the view function that is created and returned.\n        \"\"\"\n        # The suffix initkwarg is reserved for displaying the viewset type.\n        # eg. 'List' or 'Instance'.\n        cls.suffix = None\n\n        # The detail initkwarg is reserved for introspecting the viewset type.\n        cls.detail = None\n\n        # Setting a basename allows a view to reverse its action urls. This\n        # value is provided by the router through the initkwargs.\n        cls.basename = None\n\n        # actions must not be empty\n        if not actions:\n            raise TypeError(\"The `actions` argument must be provided when \"\n                            \"calling `.as_view()` on a ViewSet. For example \"\n                            \"`.as_view({'get': 'list'})`\")\n\n        # sanitize keyword arguments\n        for key in initkwargs:\n            if key in cls.http_method_names:\n                raise TypeError(\"You tried to pass in the %s method name as a \"\n                                \"keyword argument to %s(). Don't do that.\"\n                                % (key, cls.__name__))\n            if not hasattr(cls, key):\n                raise TypeError(\"%s() received an invalid keyword %r\" % (\n                    cls.__name__, key))\n\n        def view(request, *args, **kwargs):\n            self = cls(**initkwargs)\n            # We also store the mapping of request methods to actions,\n            # so that we can later set the action attribute.\n            # eg. `self.action = 'list'` on an incoming GET request.\n            self.action_map = actions\n\n            # Bind methods to actions\n            # This is the bit that's different to a standard view\n            for method, action in actions.items():\n                handler = getattr(self, action)\n                setattr(self, method, handler)\n\n            if hasattr(self, 'get') and not hasattr(self, 'head'):\n                self.head = self.get\n\n            self.request = request\n            self.args = args\n            self.kwargs = kwargs\n\n            # And continue as usual\n            return self.dispatch(request, *args, **kwargs)\n\n        # take name and docstring from class\n        update_wrapper(view, cls, updated=())\n\n        # and possible attributes set by decorators\n        # like csrf_exempt from dispatch\n        update_wrapper(view, cls.dispatch, assigned=())\n\n        # We need to set these on the view function, so that breadcrumb\n        # generation can pick out these bits of information from a\n        # resolved URL.\n        view.cls = cls\n        view.initkwargs = initkwargs\n        view.suffix = initkwargs.get('suffix', None)\n        view.actions = actions\n        return csrf_exempt(view)\n\n    def initialize_request(self, request, *args, **kwargs):\n        \"\"\"\n        Set the `.action` attribute on the view, depending on the request method.\n        \"\"\"\n        request = super(ViewSetMixin, self).initialize_request(request, *args, **kwargs)\n        method = request.method.lower()\n        if method == 'options':\n            # This is a special case as we always provide handling for the\n            # options method in the base `View` class.\n            # Unlike the other explicitly defined actions, 'metadata' is implicit.\n            self.action = 'metadata'\n        else:\n            self.action = self.action_map.get(method)\n        return request\n\n    def reverse_action(self, url_name, *args, **kwargs):\n        \"\"\"\n        Reverse the action for the given `url_name`.\n        \"\"\"\n        url_name = '%s-%s' % (self.basename, url_name)\n        kwargs.setdefault('request', self.request)\n\n        return reverse(url_name, *args, **kwargs)\n\n    @classmethod\n    def get_extra_actions(cls):\n        \"\"\"\n        Get the methods that are marked as an extra ViewSet `@action`.\n        \"\"\"\n        return [method for _, method in getmembers(cls, _is_extra_action)]\n\n\nclass ViewSet(ViewSetMixin, views.APIView):\n    \"\"\"\n    The base ViewSet class does not provide any actions by default.\n    \"\"\"\n    pass\n\n\nclass GenericViewSet(ViewSetMixin, generics.GenericAPIView):\n    \"\"\"\n    The GenericViewSet class does not provide any actions by default,\n    but does include the base set of generic view behavior, such as\n    the `get_object` and `get_queryset` methods.\n    \"\"\"\n    pass\n\n\nclass ReadOnlyModelViewSet(mixins.RetrieveModelMixin,\n                           mixins.ListModelMixin,\n                           GenericViewSet):\n    \"\"\"\n    A viewset that provides default `list()` and `retrieve()` actions.\n    \"\"\"\n    pass\n\n\nclass ModelViewSet(mixins.CreateModelMixin,\n                   mixins.RetrieveModelMixin,\n                   mixins.UpdateModelMixin,\n                   mixins.DestroyModelMixin,\n                   mixins.ListModelMixin,\n                   GenericViewSet):\n    \"\"\"\n    A viewset that provides default `create()`, `retrieve()`, `update()`,\n    `partial_update()`, `destroy()` and `list()` actions.\n    \"\"\"\n    pass\n"
  },
  {
    "path": "jet_django/fields/raw_file.py",
    "content": "import json\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import serializers\n\n\nclass RawFileField(serializers.CharField):\n\n    def __init__(self, *args, **kwargs):\n        if 'validators' in kwargs:\n            del kwargs['validators']\n\n        self.default_error_messages['invalid_format'] = _('Not a valid format.')\n        super().__init__(*args, **kwargs)\n\n    def to_internal_value(self, data):\n        if isinstance(data, dict):\n            obj = data\n        else:\n            try:\n                obj = json.loads(data)\n            except (ValueError, TypeError):\n                self.fail('invalid_format')\n\n        try:\n            return obj['value']\n        except KeyError:\n            self.fail('invalid_format')\n\n    def to_representation(self, value):\n        return {\n            'value': super().to_representation(value),\n            'url': serializers.FileField.to_representation(self, value)\n        }\n"
  },
  {
    "path": "jet_django/filters/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/filters/geos_geometry.py",
    "content": "from jet_django.deps import django_filters\n\n\nclass GEOSGeometryFilter(django_filters.CharFilter):\n\n    def filter(self, qs, value):\n        try:\n            from django.contrib.gis.geos import GEOSGeometry\n            value = GEOSGeometry(value)\n            return super().filter(qs, value)\n        except (ValueError, TypeError, ImportError):\n            return qs\n"
  },
  {
    "path": "jet_django/filters/model.py",
    "content": "from __future__ import absolute_import, unicode_literals\nfrom functools import reduce\nfrom collections import OrderedDict\n\nfrom jet_django.deps import django_filters\nfrom django.db import models\nfrom django.db.models import Q, fields, base\nfrom django.contrib.admin.utils import flatten\nfrom jet_django.deps.django_filters import rest_framework as filters\nfrom jet_django.deps.django_filters.constants import EMPTY_VALUES\nfrom django.db.models.fields.related import ForeignObjectRel\nfrom jet_django.deps.django_filters.utils import resolve_field, get_model_field\nfrom jet_django.filters.geos_geometry import GEOSGeometryFilter\nfrom jet_django.serializers.sql import SqlSerializer\n\nfilter_overrides_value = {\n    models.DateTimeField: {\n        'filter_class': filters.DateTimeFilter,\n        'extra': lambda f: {\n            'input_formats': ['%Y-%m-%dT%H:%M:%S.%fZ', '%Y-%m-%dT%H:%M:%SZ']\n        }\n    },\n    models.DateField: {\n        'filter_class': filters.DateFilter,\n        'extra': lambda f: {\n            'input_formats': ['%Y-%m-%dT%H:%M:%S.%fZ', '%Y-%m-%dT%H:%M:%SZ']\n        }\n    },\n    models.BooleanField: {\n        'filter_class': filters.BooleanFilter\n    }\n}\n\ntry:\n    from django.contrib.gis.db.models import PointField\n    postgis_available = True\nexcept:\n    postgis_available = False\n    PointField = None\n\nif postgis_available:\n    filter_overrides_value[PointField] = {\n        'filter_class': GEOSGeometryFilter\n    }\n\n\ndef filter_field(field):\n    if postgis_available and isinstance(field, PointField):\n        return True\n\n    try:\n        django_filters.FilterSet.filter_for_field(field, field.name)\n        return True\n    except:\n        return False\n\n\ndef search_field(field):\n    allowed_fields = [\n        fields.CharField,\n        fields.TextField,\n        fields.IPAddressField,\n        fields.GenericIPAddressField,\n        fields.UUIDField\n    ]\n\n    try:\n        from django.contrib.postgres.fields import JSONField\n        allowed_fields.append(JSONField)\n    except ImportError:\n        pass\n\n    return isinstance(field, tuple(allowed_fields))\n\n\ndef foreign_key_field(field):\n    return isinstance(field, (fields.related.ForeignKey,)) and isinstance(field.related_model, (base.ModelBase,))\n\n\ndef foreign_key_map(field):\n    field_fields = field.related_model._meta.get_fields()\n    return list(map(lambda x: '{}__{}'.format(field.name, x.name), filter(search_field, field_fields)))\n\n\ndef model_filter_class_factory(build_model, model_fields, model_relations):\n    model_fields = list(model_fields)\n\n    search_fields = list(map(lambda x: x.name, filter(search_field, model_fields)))\n    search_related_fields = flatten(list(map(foreign_key_map, filter(foreign_key_field, model_fields))))\n\n    search_fields = search_fields + search_related_fields\n\n    filter_field_names = list(map(lambda x: x.name, filter(filter_field, model_fields)))\n    filter_fields = dict(map(\n        lambda x: [x.name, list(x.get_lookups().keys())],\n        filter(lambda x: x.name in filter_field_names, build_model._meta.fields)\n    ))\n\n    class SearchFilter(django_filters.CharFilter):\n\n        def filter(self, qs, value):\n            if value in EMPTY_VALUES:\n                return qs\n\n            query = reduce(lambda q, field: q | Q(**dict([('{}__icontains'.format(field), value)])), search_fields, Q())\n            qs = qs.filter(query)\n\n            return qs\n\n    class M2MFilter(django_filters.CharFilter):\n\n        def filter(self, qs, value):\n            if value in EMPTY_VALUES:\n                return qs\n\n            params = value.split(',', 2)\n\n            if len(params) < 2:\n                return qs.none()\n\n            relation_name, value = params\n            relations = list(filter(lambda x: x.name == relation_name, model_relations))\n\n            if len(relations) == 0:\n                return qs.none()\n\n            relation = relations[0]\n\n            if isinstance(relation, models.ManyToManyRel):\n                query = {'{}__pk'.format(relation_name): value}\n                qs = qs.filter(**query)\n            elif isinstance(relation, models.ManyToManyField):\n                query = {'{}__pk'.format(relation_name): value}\n                qs = qs.filter(**query)\n\n            return qs\n\n    class ModelSegmentFilter(django_filters.CharFilter):\n\n        def filter(self, qs, value):\n            if value in EMPTY_VALUES:\n                return qs\n\n            body = self.parent.request.data\n\n            if not isinstance(body, dict):\n                return qs.none()\n\n            items = list(filter(lambda x: x.get('name') == value, body.get('segments', [])))\n\n            if len(items) == 0:\n                return qs.none()\n\n            query = items[0].get('query')\n\n            serializer = SqlSerializer(data={'query': query})\n            serializer.is_valid(raise_exception=True)\n            result = serializer.execute(serializer.validated_data)\n            columns = list(result['columns'])\n            rows = result['data']\n\n            if len(columns) == 0 or len(rows) == 0:\n                return qs.none()\n\n            ids = list(map(lambda x: list(x)[0], rows))\n\n            return qs.filter(pk__in=ids)\n\n    class ModelRelationFilter(django_filters.CharFilter):\n\n        def filter(self, qs, value):\n            if value in EMPTY_VALUES:\n                return qs\n\n            from django.apps import apps\n            models = apps.get_models()\n\n            def get_model(model):\n                result = list(filter(lambda x: x._meta.db_table == model, models))\n                return result[0] if len(result) else None\n\n            def get_field_column(model, field_name):\n                field = model._meta.get_field(field_name)\n                return field.get_attname_column()[1]\n\n            current_table = build_model\n            path = list(map(lambda x: x.split('.'), value.split('|')))\n            path_len = len(path)\n\n            sql = list()\n            args = list()\n\n            sql.append('SELECT {0}.{1} as id FROM {0}'.format(build_model._meta.db_table, build_model._meta.pk.name))\n\n            for i in range(path_len):\n                item = path[i]\n                last = i == path_len - 1\n\n                if not last:\n                    current_table_column = get_field_column(current_table, item[0])\n                    related_table = get_model(item[1])\n                    related_table_column = get_field_column(related_table, item[2])\n\n                    sql.append('JOIN {2} ON {0}.{1} = {2}.{3}'.format(\n                        current_table._meta.db_table,\n                        current_table_column,\n                        related_table._meta.db_table,\n                        related_table_column\n                    ))\n                    current_table = related_table\n                else:\n                    current_table_column = get_field_column(current_table, item[0])\n                    sql.append(' WHERE {0}.{1} IN (%s)'.format(current_table._meta.db_table, current_table_column))\n                    args.append(item[1])\n\n            query = build_model.objects.raw(' '.join(sql), args)\n            pks = list(map(lambda x: x.pk, query))\n            return qs.filter(pk__in=pks)\n\n    class FilterSet(django_filters.FilterSet):\n        _order_by = filters.OrderingFilter(fields=filter_field_names)\n        _search = SearchFilter()\n        _m2m = M2MFilter()\n        _segment = ModelSegmentFilter()\n        _relation = ModelRelationFilter()\n\n        class Meta:\n            model = build_model\n            fields = filter_fields\n            filter_overrides = filter_overrides_value\n\n        @classmethod\n        def get_filters(cls):\n            \"\"\"\n            Get all filters for the filterset. This is the combination of declared and\n            generated filters.\n            \"\"\"\n\n            # No model specified - skip filter generation\n            if not cls._meta.model:\n                return cls.declared_filters.copy()\n\n            # Determine the filters that should be included on the filterset.\n            filters = OrderedDict()\n            fields = cls.get_fields()\n            undefined = []\n\n            for field_name, lookups in fields.items():\n                field = get_model_field(cls._meta.model, field_name)\n\n                # warn if the field doesn't exist.\n                if field is None:\n                    undefined.append(field_name)\n\n                for lookup_expr in lookups:\n                    filter_name = cls.get_filter_name(field_name, lookup_expr)\n\n                    # If the filter is explicitly declared on the class, skip generation\n                    if filter_name in cls.declared_filters:\n                        filters[filter_name] = cls.declared_filters[filter_name]\n                        continue\n\n                    if field is not None:\n                        filters[filter_name] = cls.filter_for_field(field, field_name, lookup_expr)\n                        filters['exclude__{}'.format(filter_name)] = cls.filter_for_field(field, field_name, lookup_expr, exclude=True)\n\n            # filter out declared filters\n            undefined = [f for f in undefined if f not in cls.declared_filters]\n            if undefined:\n                raise TypeError(\n                    \"'Meta.fields' contains fields that are not defined on this FilterSet: \"\n                    \"%s\" % ', '.join(undefined)\n                )\n\n            # Add in declared filters. This is necessary since we don't enforce adding\n            # declared filters to the 'Meta.fields' option\n            filters.update(cls.declared_filters)\n            return filters\n\n        @classmethod\n        def filter_for_field(cls, field, field_name, lookup_expr='exact', exclude=False):\n            field, lookup_type = resolve_field(field, lookup_expr)\n\n            default = {\n                'field_name': field_name,\n                'lookup_expr': lookup_expr,\n                'exclude': exclude\n            }\n\n            filter_class, params = cls.filter_for_lookup(field, lookup_type)\n            default.update(params)\n\n            assert filter_class is not None, (\n                                                 \"%s resolved field '%s' with '%s' lookup to an unrecognized field \"\n                                                 \"type %s. Try adding an override to 'Meta.filter_overrides'. See: \"\n                                                 \"https://django-filter.readthedocs.io/en/master/ref/filterset.html\"\n                                                 \"#customise-filter-generation-with-filter-overrides\"\n        ) % (cls.__name__, field_name, lookup_expr, field.__class__.__name__)\n\n            return filter_class(**default)\n\n    return FilterSet\n"
  },
  {
    "path": "jet_django/filters/model_aggregate.py",
    "content": "from jet_django.deps import django_filters\nfrom django.db.models import Count, Sum, Min, Max, Avg\nfrom jet_django.deps.django_filters.constants import EMPTY_VALUES\n\n\nclass AggregateFilter(django_filters.CharFilter):\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        if value['y_func'] == 'count':\n            y_func = Count(value['y_column'])\n        elif value['y_func'] == 'sum':\n            y_func = Sum(value['y_column'])\n        elif value['y_func'] == 'min':\n            y_func = Min(value['y_column'])\n        elif value['y_func'] == 'max':\n            y_func = Max(value['y_column'])\n        elif value['y_func'] == 'avg':\n            y_func = Avg(value['y_column'])\n        else:\n            return qs.none()\n\n        qs = qs \\\n            .aggregate(y_func=y_func)\n\n        return qs\n"
  },
  {
    "path": "jet_django/filters/model_group.py",
    "content": "from jet_django.deps import django_filters\nfrom django.db.models import Count, Sum, Min, Max, Avg, F\nfrom jet_django.deps.django_filters.constants import EMPTY_VALUES\n\n\nclass GroupFilter(django_filters.CharFilter):\n\n    def filter(self, qs, value):\n        if value in EMPTY_VALUES:\n            return qs\n\n        if value['y_func'] == 'count':\n            y_func = Count(value['y_column'])\n        elif value['y_func'] == 'sum':\n            y_func = Sum(value['y_column'])\n        elif value['y_func'] == 'min':\n            y_func = Min(value['y_column'])\n        elif value['y_func'] == 'max':\n            y_func = Max(value['y_column'])\n        elif value['y_func'] == 'avg':\n            y_func = Avg(value['y_column'])\n        else:\n            return qs.none()\n\n        x_lookup = value['x_lookup'] if value['x_lookup'] else F\n\n        qs = qs \\\n            .annotate(group=x_lookup(value['x_column']))\\\n            .values('group')\\\n            .annotate(y_func=y_func)\\\n            .order_by('group')\n\n        return qs\n"
  },
  {
    "path": "jet_django/management/commands/jet_register_token.py",
    "content": "from django.core.management import BaseCommand\n\nfrom jet_django.utils.backend import register_token\n\n\nclass Command(BaseCommand):\n    def handle(self, *args, **options):\n        token, created = register_token()\n\n        if not created and token:\n            print('Token already exists: {}'.format(token.token))\n        elif not created and not token:\n            print('Token creation failed')\n        elif created and token:\n            print('Token created: {}'.format(token.token))\n"
  },
  {
    "path": "jet_django/management/commands/jet_reset_token.py",
    "content": "from django.core.management import BaseCommand\n\nfrom jet_django.utils.backend import reset_token\n\n\nclass Command(BaseCommand):\n    def handle(self, *args, **options):\n        token, created = reset_token()\n\n        print('Token reset')\n\n        if not created and token:\n            print('Token already exists: {}'.format(token.token))\n        elif not created and not token:\n            print('Token creation failed')\n        elif created and token:\n            print('Token created: {}'.format(token.token))\n"
  },
  {
    "path": "jet_django/management/commands/jet_set_token.py",
    "content": "import uuid\n\nfrom django.core.management import BaseCommand\nfrom django.utils import timezone\n\nfrom jet_django.models.token import Token\n\n\nclass Command(BaseCommand):\n    def add_arguments(self, parser):\n        parser.add_argument('token', nargs='?', type=str)\n\n    def handle(self, *args, **options):\n        token = uuid.UUID(options.get('token'))\n\n        if not token:\n            print('No token was specified')\n            return\n\n        project_token = Token.objects.all().first()\n\n        if project_token:\n            if project_token.token == token:\n                print('This token is already set, ignoring')\n                return\n\n            project_token.token = token\n            project_token.date_add = timezone.now()\n            project_token.save()\n            print('Token changed to {}'.format(project_token.token))\n        else:\n            project_token = Token.objects.create(token=token, date_add=timezone.now())\n            print('Token created {}'.format(project_token.token))\n"
  },
  {
    "path": "jet_django/management/commands/jet_token.py",
    "content": "from django.core.management import BaseCommand\n\nfrom jet_django.utils.backend import get_token\n\n\nclass Command(BaseCommand):\n    def add_arguments(self, parser):\n        parser.add_argument('token', nargs='?', type=str)\n\n    def handle(self, *args, **options):\n        token = get_token()\n\n        if token:\n            print('Jet Admin Token:')\n            print(token)\n        else:\n            print('Jet Admin Token is not set')\n"
  },
  {
    "path": "jet_django/messages.py",
    "content": "\nGET_ACTION_LIST = 'get_action_list'\nEXECUTE_ACTION = 'execute_action'\n"
  },
  {
    "path": "jet_django/migrations/0001_initial.py",
    "content": "# -*- coding: utf-8 -*-\n# Generated by Django 1.11.5 on 2018-08-26 17:24\nfrom __future__ import unicode_literals\n\nfrom django.db import migrations, models\nimport django.db.models.deletion\nimport django.utils.timezone\n\n\nclass Migration(migrations.Migration):\n\n    initial = True\n\n    dependencies = [\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name='Dashboard',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('name', models.CharField(max_length=255, verbose_name='name')),\n                ('ordering', models.PositiveIntegerField(default=0, verbose_name='ordering')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'dashboard',\n                'verbose_name_plural': 'dashboards',\n                'ordering': ('ordering',),\n            },\n        ),\n        migrations.CreateModel(\n            name='MenuSettings',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('items', models.TextField(blank=True, default='', verbose_name='items')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'menu settings',\n                'verbose_name_plural': 'menu settings',\n            },\n        ),\n        migrations.CreateModel(\n            name='ModelDescription',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('app_label', models.CharField(max_length=255, verbose_name='app_label')),\n                ('model', models.CharField(blank=True, default='', max_length=255, verbose_name='model')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'model description',\n                'verbose_name_plural': 'model descriptions',\n            },\n        ),\n        migrations.CreateModel(\n            name='Token',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('project', models.CharField(blank=True, default='', max_length=30, verbose_name='project')),\n                ('token', models.UUIDField(verbose_name='token')),\n                ('date_add', models.DateTimeField(verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'token',\n                'verbose_name_plural': 'tokens',\n            },\n        ),\n        migrations.CreateModel(\n            name='ViewSettings',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('app_label', models.CharField(max_length=255, verbose_name='app_label')),\n                ('model', models.CharField(blank=True, default='', max_length=255, verbose_name='model')),\n                ('view', models.CharField(blank=True, default='change', max_length=255, verbose_name='view')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n            ],\n            options={\n                'verbose_name': 'view settings',\n                'verbose_name_plural': 'views settings',\n            },\n        ),\n        migrations.CreateModel(\n            name='Widget',\n            fields=[\n                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),\n                ('widget_type', models.CharField(max_length=255, verbose_name='type')),\n                ('name', models.CharField(max_length=255, verbose_name='name')),\n                ('x', models.PositiveSmallIntegerField(verbose_name='x')),\n                ('y', models.PositiveSmallIntegerField(verbose_name='y')),\n                ('width', models.PositiveSmallIntegerField(default=1, verbose_name='width')),\n                ('height', models.PositiveSmallIntegerField(default=1, verbose_name='height')),\n                ('params', models.TextField(blank=True, default='', verbose_name='params')),\n                ('date_add', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date added')),\n                ('dashboard', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='widgets', to='jet_django.Dashboard', verbose_name='dashboard')),\n            ],\n            options={\n                'verbose_name': 'widget',\n                'verbose_name_plural': 'widgets',\n                'ordering': ('y', 'x'),\n            },\n        ),\n    ]\n"
  },
  {
    "path": "jet_django/migrations/0002_auto_20181014_2002.py",
    "content": "# -*- coding: utf-8 -*-\n# Generated by Django 1.11 on 2018-10-14 17:02\nfrom __future__ import unicode_literals\n\nfrom django.db import migrations\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        ('jet_django', '0001_initial'),\n    ]\n\n    operations = [\n        migrations.DeleteModel(\n            name='MenuSettings',\n        ),\n        migrations.DeleteModel(\n            name='ModelDescription',\n        ),\n        migrations.DeleteModel(\n            name='ViewSettings',\n        ),\n        migrations.RemoveField(\n            model_name='widget',\n            name='dashboard',\n        ),\n        migrations.DeleteModel(\n            name='Dashboard',\n        ),\n        migrations.DeleteModel(\n            name='Widget',\n        ),\n    ]\n"
  },
  {
    "path": "jet_django/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/mixins/cors_api_view.py",
    "content": "from jet_django import settings\n\n\nclass CORSAPIViewMixin(object):\n    @property\n    def default_response_headers(self):\n        headers = super().default_response_headers\n\n        if not settings.JET_CORS_HEADERS:\n            return headers\n\n        ACCESS_CONTROL_ALLOW_ORIGIN = 'Access-Control-Allow-Origin'\n        ACCESS_CONTROL_EXPOSE_HEADERS = 'Access-Control-Expose-Headers'\n        ACCESS_CONTROL_ALLOW_CREDENTIALS = 'Access-Control-Allow-Credentials'\n        ACCESS_CONTROL_ALLOW_HEADERS = 'Access-Control-Allow-Headers'\n        ACCESS_CONTROL_ALLOW_METHODS = 'Access-Control-Allow-Methods'\n\n        headers[ACCESS_CONTROL_ALLOW_ORIGIN] = '*'\n        headers[ACCESS_CONTROL_ALLOW_METHODS] = 'GET, POST, PUT, PATCH, DELETE, OPTIONS'\n        headers[ACCESS_CONTROL_ALLOW_HEADERS] = 'Authorization,DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,X-Application-Warning,X-HTTP-Method-Override'\n        headers[ACCESS_CONTROL_EXPOSE_HEADERS] = 'Content-Length,Content-Range,X-Application-Warning'\n        headers[ACCESS_CONTROL_ALLOW_CREDENTIALS] = 'true'\n\n        return headers\n"
  },
  {
    "path": "jet_django/mixins/method_override.py",
    "content": "\nclass MethodOverrideViewMixin(object):\n    def dispatch(self, request, *args, **kwargs):\n        METHOD_OVERRIDE_HEADER = 'HTTP_X_HTTP_METHOD_OVERRIDE'\n\n        if METHOD_OVERRIDE_HEADER in request.META:\n            request.method = request.META[METHOD_OVERRIDE_HEADER]\n\n        return super().dispatch(request, *args, **kwargs)\n"
  },
  {
    "path": "jet_django/models/token.py",
    "content": "from django.db import models\nfrom django.utils.translation import ugettext_lazy as _\n\n\nclass Token(models.Model):\n    project = models.CharField(\n        verbose_name=_('project'),\n        max_length=30,\n        blank=True,\n        default=''\n    )\n    token = models.UUIDField(\n        verbose_name=_('token')\n    )\n    date_add = models.DateTimeField(\n        verbose_name=_('date added')\n    )\n\n    class Meta:\n        verbose_name = _('token')\n        verbose_name_plural = _('tokens')\n\n    def __str__(self):\n        return str(self.token)\n"
  },
  {
    "path": "jet_django/pagination.py",
    "content": "from collections import OrderedDict\n\nfrom django.core.paginator import Paginator\nfrom django.db import connection\nfrom django.utils.functional import cached_property\n\nfrom jet_django.deps.rest_framework.pagination import PageNumberPagination\nfrom jet_django.deps.rest_framework.response import Response\n\n\nclass CustomPaginator(Paginator):\n    def count_for_postgresql(self, db_table):\n        cursor = connection.cursor()\n        cursor.execute('SELECT reltuples FROM pg_class WHERE relname = %s', [db_table])\n        return int(cursor.fetchone()[0])\n\n    def count_for_mysql(self, db_table):\n        cursor = connection.cursor()\n        cursor.execute('EXPLAIN SELECT COUNT(*) FROM `{}`'.format(db_table))\n        return int(cursor.fetchone()[8])\n\n    @cached_property\n    def count(self):\n        query = self.object_list.query\n        result = None\n\n        if not query.where:\n            try:\n                if connection.vendor == 'postgresql':\n                    result = self.count_for_postgresql(query.model._meta.db_table)\n                elif connection.vendor == 'mysql':\n                    result = self.count_for_mysql(query.model._meta.db_table)\n            except:\n                pass\n\n        if result is not None and result >= 10000:\n            return result\n\n        return super(CustomPaginator, self).count\n\n\nclass CustomPageNumberPagination(PageNumberPagination):\n    page_size_query_param = '_per_page'\n    django_paginator_class = CustomPaginator\n\n    def get_paginated_response(self, data):\n        return Response(OrderedDict([\n            ('count', self.page.paginator.count),\n            ('next', self.get_next_link()),\n            ('previous', self.get_previous_link()),\n            ('results', data),\n            ('num_pages', self.page.paginator.num_pages),\n            ('per_page', self.page.paginator.per_page),\n        ]))\n"
  },
  {
    "path": "jet_django/permissions.py",
    "content": "from jet_django.deps.rest_framework.permissions import BasePermission\n\nfrom jet_django import settings\nfrom jet_django.utils.backend import project_auth\n\n\nclass HasProjectPermissions(BasePermission):\n    token_prefix = 'Token '\n    project_token_prefix = 'ProjectToken '\n\n    def has_permission(self, request, view):\n    #     return True\n        token = request.META.get('HTTP_AUTHORIZATION')\n        permission = getattr(view, 'required_project_permission', None)\n\n        if not token:\n            return False\n\n        if token[:len(self.token_prefix)] == self.token_prefix:\n            token = token[len(self.token_prefix):]\n\n            result = project_auth(token, permission)\n\n            if result.get('warning'):\n                view.headers['X-Application-Warning'] = result['warning']\n\n            return result['result']\n        elif token[:len(self.project_token_prefix)] == self.project_token_prefix:\n            token = token[len(self.project_token_prefix):]\n\n            result = project_auth(token, permission)\n\n            if result.get('warning'):\n                view.headers['X-Application-Warning'] = result['warning']\n\n            return result['result']\n        else:\n            return False\n\n\nclass ModifyNotInDemo(BasePermission):\n\n    def has_permission(self, request, view):\n        if not settings.JET_DEMO:\n            return True\n        if view.action in ['create', 'update', 'partial_update', 'destroy']:\n            return False\n        return True\n"
  },
  {
    "path": "jet_django/serializers/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/serializers/file_upload.py",
    "content": "import os\n\nfrom django.core.exceptions import SuspiciousFileOperation, ValidationError\nfrom django.core.files.storage import default_storage\nfrom django.utils.translation import ugettext_lazy as _\nfrom jet_django.deps.rest_framework import serializers\n\n\nclass FileUploadSerializer(serializers.Serializer):\n    file = serializers.FileField(write_only=True)\n    path = serializers.CharField(write_only=True)\n    filename = serializers.CharField(write_only=True, required=False)\n    uploaded_path = serializers.CharField(read_only=True)\n    uploaded_url = serializers.CharField(read_only=True)\n\n    def validate(self, attrs):\n        if attrs.get('filename') is None:\n            attrs['filename'] = attrs['file'].name\n\n        attrs['full_path'] = os.path.join(attrs['path'], attrs['filename'])\n\n        try:\n            default_storage.get_available_name(attrs['full_path'])\n        except SuspiciousFileOperation:\n            raise ValidationError(_('forbidden path'))\n\n        return attrs\n\n    def save(self, **kwargs):\n        request = self.context.get('request', None)\n        uploaded_path = default_storage.save(self.validated_data['full_path'], self.validated_data['file'])\n\n        self.instance = {\n            'uploaded_path': uploaded_path,\n            'uploaded_url': request.build_absolute_uri(default_storage.url(uploaded_path))\n        }\n"
  },
  {
    "path": "jet_django/serializers/message.py",
    "content": "from jet_django.admin.jet import jet\nfrom jet_django.deps.rest_framework import serializers\n\n\nclass MessageSerializer(serializers.Serializer):\n    name = serializers.CharField()\n    params = serializers.JSONField(required=False, default={})\n\n    def save(self, **kwargs):\n        handler = jet.get_message_handler(self.validated_data['name'])\n\n        if not handler:\n            return\n\n        return handler(self.validated_data.get('params'))\n"
  },
  {
    "path": "jet_django/serializers/model.py",
    "content": "from django.db import models\nfrom jet_django.deps.rest_framework import serializers\n\nfrom jet_django.fields.raw_file import RawFileField\n\n\ndef model_serializer_factory(build_model, build_fields):\n    class Serializer(serializers.ModelSerializer):\n\n        class Meta:\n            model = build_model\n            fields = build_fields + ['__str__']\n\n        def __new__(cls, *args, **kwargs):\n            cls.serializer_field_mapping[models.FileField] = RawFileField\n            cls.serializer_field_mapping[models.ImageField] = RawFileField\n            return super(Serializer, cls).__new__(cls, *args, **kwargs)\n\n    return Serializer\n"
  },
  {
    "path": "jet_django/serializers/model_detail.py",
    "content": "from jet_django.deps.rest_framework import serializers\n\n\ndef model_detail_serializer_factory(build_model, build_fields):\n    class Serializer(serializers.ModelSerializer):\n        class Meta:\n            model = build_model\n            fields = build_fields + ['__str__']\n\n    return Serializer\n"
  },
  {
    "path": "jet_django/serializers/reorder.py",
    "content": "from django.db import transaction\nfrom django.db.models import F\nfrom jet_django.deps.rest_framework import serializers, relations\n\n\ndef reorder_serializer_factory(build_queryset):\n    class ReorderSerializer(serializers.Serializer):\n        ordering_field = serializers.CharField()\n        forward = serializers.BooleanField()\n        segment_from = serializers.IntegerField()\n        segment_to = serializers.IntegerField()\n        item = relations.PrimaryKeyRelatedField(queryset=build_queryset)\n        segment_by_ordering_field = serializers.BooleanField(default=False)\n\n        def save(self):\n            ordering_field = self.validated_data['ordering_field']\n\n            if self.validated_data.get('segment_by_ordering_field'):\n                segment_from = self.validated_data['segment_from']\n                segment_to = self.validated_data['segment_to']\n            else:\n                segment_from_instance = build_queryset.get(pk=self.validated_data['segment_from'])\n                segment_to_instance = build_queryset.get(pk=self.validated_data['segment_to'])\n\n                segment_from = getattr(segment_from_instance, ordering_field)\n                segment_to = getattr(segment_to_instance, ordering_field)\n\n            with transaction.atomic():\n                if self.validated_data['forward']:\n                    build_queryset.filter(\n                        **{\n                            '{}__gte'.format(ordering_field): segment_from,\n                            '{}__lte'.format(ordering_field): segment_to\n                        }\n                    ).update(\n                        **{ordering_field: F(ordering_field) - 1}\n                    )\n                    build_queryset.filter(\n                        pk=self.validated_data['item'].pk\n                    ).update(\n                        **{ordering_field: segment_to}\n                    )\n                else:\n                    build_queryset.filter(\n                        **{\n                            '{}__gte'.format(ordering_field): segment_from,\n                            '{}__lte'.format(ordering_field): segment_to\n                        }\n                    ).update(\n                        **{ordering_field: F(ordering_field) + 1}\n                    )\n                    build_queryset.filter(\n                        pk=self.validated_data['item'].pk\n                    ).update(\n                        **{ordering_field: segment_from}\n                    )\n\n    return ReorderSerializer\n"
  },
  {
    "path": "jet_django/serializers/reset_order.py",
    "content": "from django.db.models import Case, When, Value, IntegerField\n\nfrom jet_django.deps.rest_framework import serializers\n\n\ndef reset_order_serializer_factory(build_queryset):\n    class ResetOrderSerializer(serializers.Serializer):\n        ordering_field = serializers.CharField()\n        ordering = serializers.CharField(required=False, allow_null=True)\n        value_ordering = serializers.CharField(required=False, allow_null=True)\n\n        def save(self):\n            ordering_field = self.validated_data['ordering_field']\n            ordering = self.validated_data.get('ordering')\n            value_ordering = self.validated_data.get('value_ordering')\n\n            qs = build_queryset\n            order_by = []\n\n            if value_ordering:\n                field, values_str = value_ordering.split('-', 2)\n                values = values_str.split(',')\n                qs = qs.annotate(\n                    __custom_order__=Case(\n                        *[When(**dict([(field, x), ('then', Value(i))])) for i, x in enumerate(values)],\n                        default=Value(len(values)),\n                        output_field=IntegerField()\n                    )\n                )\n                order_by.append('__custom_order__')\n\n            if ordering:\n                order_by.extend(ordering.split(','))\n\n            if len(order_by):\n                qs = qs.order_by(*order_by)\n\n            i = 1\n            for instance in qs:\n                setattr(instance, ordering_field, i)\n                instance.save(update_fields=[ordering_field])\n                i += 1\n\n    return ResetOrderSerializer\n"
  },
  {
    "path": "jet_django/serializers/sql.py",
    "content": "from django.db import connection, DatabaseError\nfrom django.utils import six\nfrom django.utils.translation import ugettext_lazy as _\n\nfrom jet_django.deps.rest_framework import serializers, status\nfrom jet_django.deps.rest_framework.exceptions import ValidationError, APIException\n\n\nclass ParamsSerializers(serializers.CharField):\n    def to_internal_value(self, data):\n        value = super().to_internal_value(data)\n        return list(filter(lambda x: x != '', value.split(',')))\n\n    def to_representation(self, value):\n        return list(value)\n\n\nclass SqlError(APIException):\n    status_code = status.HTTP_400_BAD_REQUEST\n    default_detail = _('Query failed')\n    default_code = 'invalid'\n\n    def __init__(self, detail):\n        self.detail = {'error': str(detail)}\n\n    def __str__(self):\n        return six.text_type(self.detail)\n\n\nclass SqlSerializer(serializers.Serializer):\n    query = serializers.CharField()\n    params = ParamsSerializers(required=False)\n\n    def validate_query(self, value):\n        forbidden = ['insert', 'update', 'delete', 'grant', 'show']\n        for i in range(len(forbidden)):\n            forbidden.append('({}'.format(forbidden[i]))\n        if any(map(lambda x: ' {} '.format(value.lower()).find(' {} '.format(x)) != -1, forbidden)):\n            raise ValidationError('forbidden query')\n        return value\n\n    def execute(self, data):\n        with connection.cursor() as cursor:\n            try:\n                cursor.execute(data['query'], data.get('params', []))\n            except (DatabaseError, TypeError) as e:\n                raise SqlError(e)\n\n            rows = cursor.fetchall()\n\n            def map_column(x):\n                if not isinstance(x, tuple) or len(x) == 0:\n                    return\n                if x[0] == '?column?':\n                    return\n                return x[0]\n\n            return {'data': rows, 'columns': map(map_column, cursor.description)}\n\n\nclass SqlsSerializer(serializers.Serializer):\n    queries = SqlSerializer(many=True)\n\n    def execute(self, data):\n        serializer = SqlSerializer()\n        return map(lambda x: serializer.execute(x), data['queries'])\n"
  },
  {
    "path": "jet_django/settings.py",
    "content": "from django.conf import settings\n\nJET_BACKEND_API_BASE_URL = getattr(settings, 'JET_BACKEND_API_BASE_URL', 'https://api.jetadmin.io/api')\nJET_BACKEND_WEB_BASE_URL = getattr(settings, 'JET_BACKEND_WEB_BASE_URL', 'https://app.jetadmin.io')\nJET_DEMO = getattr(settings, 'JET_DEMO', False)\nJET_REGISTER_TOKEN_ON_START = getattr(settings, 'JET_REGISTER_TOKEN_ON_START', True)\nJET_CORS_HEADERS = getattr(settings, 'JET_CORS_HEADERS', 'corsheaders' not in settings.INSTALLED_APPS)\n\nJET_REST_FRAMEWORK = getattr(settings, 'JET_REST_FRAMEWORK', {\n    'DEFAULT_PAGINATION_CLASS': 'jet_django.deps.rest_framework.pagination.PageNumberPagination',\n    'PAGE_SIZE': 25,\n    'DEFAULT_AUTHENTICATION_CLASSES': (),\n    'DEFAULT_FILTER_BACKENDS': (\n        'jet_django.deps.django_filters.rest_framework.DjangoFilterBackend',\n        'jet_django.deps.rest_framework.filters.OrderingFilter',\n    ),\n    # 'DEFAULT_THROTTLE_CLASSES': (\n    #     'jet_django.deps.rest_framework.throttling.AnonRateThrottle',\n    #     'jet_django.deps.rest_framework.throttling.UserRateThrottle'\n    # ),\n    # 'DEFAULT_THROTTLE_RATES': {\n    #     'anon': '120/minute',\n    #     'user': '480/minute'\n    # },\n    'DEFAULT_RENDERER_CLASSES': (\n        'jet_django.deps.rest_framework.renderers.JSONRenderer',\n    ),\n    'EXCEPTION_HANDLER': 'jet_django.views.exception_handler.jet_exception_handler',\n})\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/css/bootstrap-tweaks.css",
    "content": "/*\n\nThis CSS file contains some tweaks specific to the included Bootstrap theme.\nIt's separate from `style.css` so that it can be easily overridden by replacing\na single block in the template.\n\n*/\n\n.form-actions {\n  background: transparent;\n  border-top-color: transparent;\n  padding-top: 0;\n  text-align: right;\n}\n\n#generic-content-form textarea {\n  font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;\n  font-size: 80%;\n}\n\n.navbar-inverse .brand a {\n  color: #999999;\n}\n.navbar-inverse .brand:hover a {\n  color: white;\n  text-decoration: none;\n}\n\n/* custom navigation styles */\n.navbar {\n  width: 100%;\n  position: fixed;\n  left: 0;\n  top: 0;\n}\n\n.navbar {\n  background: #2C2C2C;\n  color: white;\n  border: none;\n  border-top: 5px solid #A30000;\n  border-radius: 0px;\n}\n\n.navbar .nav li, .navbar .nav li a, .navbar .brand:hover {\n  color: white;\n}\n\n.nav-list > .active > a, .nav-list > .active > a:hover {\n  background: #2C2C2C;\n}\n\n.navbar .dropdown-menu li a, .navbar .dropdown-menu li {\n  color: #A30000;\n}\n\n.navbar .dropdown-menu li a:hover {\n  background: #EEEEEE;\n  color: #C20000;\n}\n\nul.breadcrumb {\n  margin: 70px 0 0 0;\n}\n\n.breadcrumb li.active a {\n  color: #777;\n}\n\n.pagination>.disabled>a,\n.pagination>.disabled>a:hover,\n.pagination>.disabled>a:focus {\n  cursor: not-allowed;\n  pointer-events: none;\n}\n\n.pager>.disabled>a,\n.pager>.disabled>a:hover,\n.pager>.disabled>a:focus {\n  pointer-events: none;\n}\n\n.pager .next {\n  margin-left: 10px;\n}\n\n/*=== dabapps bootstrap styles ====*/\n\nhtml {\n  width:100%;\n  background: none;\n}\n\n/*body, .navbar .container-fluid {\n  max-width: 1150px;\n  margin: 0 auto;\n}*/\n\nbody {\n  background: url(\"../img/grid.png\") repeat-x;\n  background-attachment: fixed;\n}\n\n#content {\n  margin: 0;\n  padding-bottom: 60px;\n}\n\n/* sticky footer and footer */\nhtml, body {\n  height: 100%;\n}\n\n.wrapper {\n  position: relative;\n  top: 0;\n  left: 0;\n  padding-top: 60px;\n  margin: -60px 0;\n  min-height: 100%;\n}\n\n.form-switcher {\n  margin-bottom: 0;\n}\n\n.well {\n  -webkit-box-shadow: none;\n     -moz-box-shadow: none;\n          box-shadow: none;\n}\n\n.well .form-actions {\n  padding-bottom: 0;\n  margin-bottom: 0;\n}\n\n.well form {\n  margin-bottom: 0;\n}\n\n.nav-tabs {\n  border: 0;\n}\n\n.nav-tabs > li {\n  float: right;\n}\n\n.nav-tabs li a {\n  margin-right: 0;\n}\n\n.nav-tabs > .active > a {\n  background: #F5F5F5;\n}\n\n.nav-tabs > .active > a:hover {\n  background: #F5F5F5;\n}\n\n.tabbable.first-tab-active .tab-content {\n  border-top-right-radius: 0;\n}\n\nfooter {\n  position: absolute;\n  bottom: 0;\n  left: 0;\n  clear: both;\n  z-index: 10;\n  height: 60px;\n  width: 95%;\n  margin: 0 2.5%;\n}\n\nfooter p {\n  text-align: center;\n  color: gray;\n  border-top: 1px solid #DDDDDD;\n  padding-top: 10px;\n}\n\nfooter a {\n  color: gray !important;\n  font-weight: bold;\n}\n\nfooter a:hover {\n  color: gray;\n}\n\n.page-header {\n  border-bottom: none;\n  padding-bottom: 0px;\n  margin: 0;\n}\n\n/* custom general page styles */\n.hero-unit h1, .hero-unit h2 {\n  color: #A30000;\n}\n\nbody a {\n  color: #A30000;\n}\n\nbody a:hover {\n  color: #c20000;\n}\n\n.request-info {\n  clear:both;\n}\n\n.horizontal-checkbox label {\n  padding-top: 0;\n}\n\n.horizontal-checkbox label {\n  padding-top: 0 !important;\n}\n\n.horizontal-checkbox input {\n  float: left;\n  width: 20px;\n  margin-top: 3px;\n}\n\n.modal-footer form {\n  margin-left: 5px;\n  margin-right: 5px;\n}\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/css/default.css",
    "content": "/* The navbar is fixed at >= 980px wide, so add padding to the body to prevent\ncontent running up underneath it. */\n\nh1 {\n  font-weight: 300;\n}\n\nh2, h3 {\n  font-weight: 300;\n}\n\n.resource-description, .response-info {\n  margin-bottom: 2em;\n}\n\n.version:before {\n  content: \"v\";\n  opacity: 0.6;\n  padding-right: 0.25em;\n}\n\n.version {\n  font-size: 70%;\n}\n\n.format-option {\n  font-family: Menlo, Consolas, \"Andale Mono\", \"Lucida Console\", monospace;\n}\n\n.button-form {\n  float: right;\n  margin-right: 1em;\n}\n\ntd.nested {\n  padding: 0 !important;\n}\n\ntd.nested > table {\n  margin: 0;\n}\n\nform select, form input, form textarea {\n  width: 90%;\n}\n\nform select[multiple] {\n  height: 150px;\n}\n\n/* To allow tooltips to work on disabled elements */\n.disabled-tooltip-shield {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n}\n\n.errorlist {\n  margin-top: 0.5em;\n}\n\npre {\n  overflow: auto;\n  word-wrap: normal;\n  white-space: pre;\n  font-size: 12px;\n}\n\n.page-header {\n  border-bottom: none;\n  padding-bottom: 0px;\n}\n\n#filtersModal form input[type=submit] {\n    width: auto;\n}\n\n#filtersModal .modal-body h2 {\n    margin-top: 0\n}\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/css/font-awesome-4.0.3.css",
    "content": "/*!\n *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('../fonts/fontawesome-webfont.eot?v=4.0.3');\n  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.fa {\n  display: inline-block;\n  font-family: FontAwesome;\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.3333333333333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.2857142857142858em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.142857142857143em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.142857142857143em;\n  width: 2.142857142857143em;\n  top: 0.14285714285714285em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.8571428571428572em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eeeeee;\n  border-radius: .1em;\n}\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: spin 2s infinite linear;\n  -moz-animation: spin 2s infinite linear;\n  -o-animation: spin 2s infinite linear;\n  animation: spin 2s infinite linear;\n}\n@-moz-keyframes spin {\n  0% {\n    -moz-transform: rotate(0deg);\n  }\n  100% {\n    -moz-transform: rotate(359deg);\n  }\n}\n@-webkit-keyframes spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n  }\n}\n@-o-keyframes spin {\n  0% {\n    -o-transform: rotate(0deg);\n  }\n  100% {\n    -o-transform: rotate(359deg);\n  }\n}\n@-ms-keyframes spin {\n  0% {\n    -ms-transform: rotate(0deg);\n  }\n  100% {\n    -ms-transform: rotate(359deg);\n  }\n}\n@keyframes spin {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n  -webkit-transform: rotate(90deg);\n  -moz-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  -o-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n  -webkit-transform: rotate(180deg);\n  -moz-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  -o-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n  -webkit-transform: rotate(270deg);\n  -moz-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  -o-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n  -webkit-transform: scale(-1, 1);\n  -moz-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  -o-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n  -webkit-transform: scale(1, -1);\n  -moz-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  -o-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.fa-glass:before {\n  content: \"\\f000\";\n}\n.fa-music:before {\n  content: \"\\f001\";\n}\n.fa-search:before {\n  content: \"\\f002\";\n}\n.fa-envelope-o:before {\n  content: \"\\f003\";\n}\n.fa-heart:before {\n  content: \"\\f004\";\n}\n.fa-star:before {\n  content: \"\\f005\";\n}\n.fa-star-o:before {\n  content: \"\\f006\";\n}\n.fa-user:before {\n  content: \"\\f007\";\n}\n.fa-film:before {\n  content: \"\\f008\";\n}\n.fa-th-large:before {\n  content: \"\\f009\";\n}\n.fa-th:before {\n  content: \"\\f00a\";\n}\n.fa-th-list:before {\n  content: \"\\f00b\";\n}\n.fa-check:before {\n  content: \"\\f00c\";\n}\n.fa-times:before {\n  content: \"\\f00d\";\n}\n.fa-search-plus:before {\n  content: \"\\f00e\";\n}\n.fa-search-minus:before {\n  content: \"\\f010\";\n}\n.fa-power-off:before {\n  content: \"\\f011\";\n}\n.fa-signal:before {\n  content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n  content: \"\\f013\";\n}\n.fa-trash-o:before {\n  content: \"\\f014\";\n}\n.fa-home:before {\n  content: \"\\f015\";\n}\n.fa-file-o:before {\n  content: \"\\f016\";\n}\n.fa-clock-o:before {\n  content: \"\\f017\";\n}\n.fa-road:before {\n  content: \"\\f018\";\n}\n.fa-download:before {\n  content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.fa-inbox:before {\n  content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n  content: \"\\f01e\";\n}\n.fa-refresh:before {\n  content: \"\\f021\";\n}\n.fa-list-alt:before {\n  content: \"\\f022\";\n}\n.fa-lock:before {\n  content: \"\\f023\";\n}\n.fa-flag:before {\n  content: \"\\f024\";\n}\n.fa-headphones:before {\n  content: \"\\f025\";\n}\n.fa-volume-off:before {\n  content: \"\\f026\";\n}\n.fa-volume-down:before {\n  content: \"\\f027\";\n}\n.fa-volume-up:before {\n  content: \"\\f028\";\n}\n.fa-qrcode:before {\n  content: \"\\f029\";\n}\n.fa-barcode:before {\n  content: \"\\f02a\";\n}\n.fa-tag:before {\n  content: \"\\f02b\";\n}\n.fa-tags:before {\n  content: \"\\f02c\";\n}\n.fa-book:before {\n  content: \"\\f02d\";\n}\n.fa-bookmark:before {\n  content: \"\\f02e\";\n}\n.fa-print:before {\n  content: \"\\f02f\";\n}\n.fa-camera:before {\n  content: \"\\f030\";\n}\n.fa-font:before {\n  content: \"\\f031\";\n}\n.fa-bold:before {\n  content: \"\\f032\";\n}\n.fa-italic:before {\n  content: \"\\f033\";\n}\n.fa-text-height:before {\n  content: \"\\f034\";\n}\n.fa-text-width:before {\n  content: \"\\f035\";\n}\n.fa-align-left:before {\n  content: \"\\f036\";\n}\n.fa-align-center:before {\n  content: \"\\f037\";\n}\n.fa-align-right:before {\n  content: \"\\f038\";\n}\n.fa-align-justify:before {\n  content: \"\\f039\";\n}\n.fa-list:before {\n  content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n  content: \"\\f03b\";\n}\n.fa-indent:before {\n  content: \"\\f03c\";\n}\n.fa-video-camera:before {\n  content: \"\\f03d\";\n}\n.fa-picture-o:before {\n  content: \"\\f03e\";\n}\n.fa-pencil:before {\n  content: \"\\f040\";\n}\n.fa-map-marker:before {\n  content: \"\\f041\";\n}\n.fa-adjust:before {\n  content: \"\\f042\";\n}\n.fa-tint:before {\n  content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.fa-share-square-o:before {\n  content: \"\\f045\";\n}\n.fa-check-square-o:before {\n  content: \"\\f046\";\n}\n.fa-arrows:before {\n  content: \"\\f047\";\n}\n.fa-step-backward:before {\n  content: \"\\f048\";\n}\n.fa-fast-backward:before {\n  content: \"\\f049\";\n}\n.fa-backward:before {\n  content: \"\\f04a\";\n}\n.fa-play:before {\n  content: \"\\f04b\";\n}\n.fa-pause:before {\n  content: \"\\f04c\";\n}\n.fa-stop:before {\n  content: \"\\f04d\";\n}\n.fa-forward:before {\n  content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n  content: \"\\f050\";\n}\n.fa-step-forward:before {\n  content: \"\\f051\";\n}\n.fa-eject:before {\n  content: \"\\f052\";\n}\n.fa-chevron-left:before {\n  content: \"\\f053\";\n}\n.fa-chevron-right:before {\n  content: \"\\f054\";\n}\n.fa-plus-circle:before {\n  content: \"\\f055\";\n}\n.fa-minus-circle:before {\n  content: \"\\f056\";\n}\n.fa-times-circle:before {\n  content: \"\\f057\";\n}\n.fa-check-circle:before {\n  content: \"\\f058\";\n}\n.fa-question-circle:before {\n  content: \"\\f059\";\n}\n.fa-info-circle:before {\n  content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n  content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.fa-ban:before {\n  content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n  content: \"\\f060\";\n}\n.fa-arrow-right:before {\n  content: \"\\f061\";\n}\n.fa-arrow-up:before {\n  content: \"\\f062\";\n}\n.fa-arrow-down:before {\n  content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n  content: \"\\f064\";\n}\n.fa-expand:before {\n  content: \"\\f065\";\n}\n.fa-compress:before {\n  content: \"\\f066\";\n}\n.fa-plus:before {\n  content: \"\\f067\";\n}\n.fa-minus:before {\n  content: \"\\f068\";\n}\n.fa-asterisk:before {\n  content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.fa-gift:before {\n  content: \"\\f06b\";\n}\n.fa-leaf:before {\n  content: \"\\f06c\";\n}\n.fa-fire:before {\n  content: \"\\f06d\";\n}\n.fa-eye:before {\n  content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n  content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.fa-plane:before {\n  content: \"\\f072\";\n}\n.fa-calendar:before {\n  content: \"\\f073\";\n}\n.fa-random:before {\n  content: \"\\f074\";\n}\n.fa-comment:before {\n  content: \"\\f075\";\n}\n.fa-magnet:before {\n  content: \"\\f076\";\n}\n.fa-chevron-up:before {\n  content: \"\\f077\";\n}\n.fa-chevron-down:before {\n  content: \"\\f078\";\n}\n.fa-retweet:before {\n  content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.fa-folder:before {\n  content: \"\\f07b\";\n}\n.fa-folder-open:before {\n  content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n  content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n  content: \"\\f07e\";\n}\n.fa-bar-chart-o:before {\n  content: \"\\f080\";\n}\n.fa-twitter-square:before {\n  content: \"\\f081\";\n}\n.fa-facebook-square:before {\n  content: \"\\f082\";\n}\n.fa-camera-retro:before {\n  content: \"\\f083\";\n}\n.fa-key:before {\n  content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n  content: \"\\f085\";\n}\n.fa-comments:before {\n  content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.fa-star-half:before {\n  content: \"\\f089\";\n}\n.fa-heart-o:before {\n  content: \"\\f08a\";\n}\n.fa-sign-out:before {\n  content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.fa-external-link:before {\n  content: \"\\f08e\";\n}\n.fa-sign-in:before {\n  content: \"\\f090\";\n}\n.fa-trophy:before {\n  content: \"\\f091\";\n}\n.fa-github-square:before {\n  content: \"\\f092\";\n}\n.fa-upload:before {\n  content: \"\\f093\";\n}\n.fa-lemon-o:before {\n  content: \"\\f094\";\n}\n.fa-phone:before {\n  content: \"\\f095\";\n}\n.fa-square-o:before {\n  content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n  content: \"\\f097\";\n}\n.fa-phone-square:before {\n  content: \"\\f098\";\n}\n.fa-twitter:before {\n  content: \"\\f099\";\n}\n.fa-facebook:before {\n  content: \"\\f09a\";\n}\n.fa-github:before {\n  content: \"\\f09b\";\n}\n.fa-unlock:before {\n  content: \"\\f09c\";\n}\n.fa-credit-card:before {\n  content: \"\\f09d\";\n}\n.fa-rss:before {\n  content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.fa-bell:before {\n  content: \"\\f0f3\";\n}\n.fa-certificate:before {\n  content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.fa-globe:before {\n  content: \"\\f0ac\";\n}\n.fa-wrench:before {\n  content: \"\\f0ad\";\n}\n.fa-tasks:before {\n  content: \"\\f0ae\";\n}\n.fa-filter:before {\n  content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n  content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n  content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n  content: \"\\f0c1\";\n}\n.fa-cloud:before {\n  content: \"\\f0c2\";\n}\n.fa-flask:before {\n  content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n  content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n  content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n  content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.fa-square:before {\n  content: \"\\f0c8\";\n}\n.fa-bars:before {\n  content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n  content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n  content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.fa-underline:before {\n  content: \"\\f0cd\";\n}\n.fa-table:before {\n  content: \"\\f0ce\";\n}\n.fa-magic:before {\n  content: \"\\f0d0\";\n}\n.fa-truck:before {\n  content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n  content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n  content: \"\\f0d5\";\n}\n.fa-money:before {\n  content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n  content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n  content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n  content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n  content: \"\\f0da\";\n}\n.fa-columns:before {\n  content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n  content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-asc:before {\n  content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-desc:before {\n  content: \"\\f0de\";\n}\n.fa-envelope:before {\n  content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n  content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n  content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n  content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n  content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n  content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n  content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n  content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n  content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n  content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n  content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.fa-exchange:before {\n  content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.fa-user-md:before {\n  content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n  content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n  content: \"\\f0a2\";\n}\n.fa-coffee:before {\n  content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n  content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.fa-building-o:before {\n  content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n  content: \"\\f0f9\";\n}\n.fa-medkit:before {\n  content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.fa-beer:before {\n  content: \"\\f0fc\";\n}\n.fa-h-square:before {\n  content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n  content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n  content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n  content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n  content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n  content: \"\\f103\";\n}\n.fa-angle-left:before {\n  content: \"\\f104\";\n}\n.fa-angle-right:before {\n  content: \"\\f105\";\n}\n.fa-angle-up:before {\n  content: \"\\f106\";\n}\n.fa-angle-down:before {\n  content: \"\\f107\";\n}\n.fa-desktop:before {\n  content: \"\\f108\";\n}\n.fa-laptop:before {\n  content: \"\\f109\";\n}\n.fa-tablet:before {\n  content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n  content: \"\\f10b\";\n}\n.fa-circle-o:before {\n  content: \"\\f10c\";\n}\n.fa-quote-left:before {\n  content: \"\\f10d\";\n}\n.fa-quote-right:before {\n  content: \"\\f10e\";\n}\n.fa-spinner:before {\n  content: \"\\f110\";\n}\n.fa-circle:before {\n  content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n  content: \"\\f112\";\n}\n.fa-github-alt:before {\n  content: \"\\f113\";\n}\n.fa-folder-o:before {\n  content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n  content: \"\\f115\";\n}\n.fa-smile-o:before {\n  content: \"\\f118\";\n}\n.fa-frown-o:before {\n  content: \"\\f119\";\n}\n.fa-meh-o:before {\n  content: \"\\f11a\";\n}\n.fa-gamepad:before {\n  content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.fa-flag-o:before {\n  content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.fa-terminal:before {\n  content: \"\\f120\";\n}\n.fa-code:before {\n  content: \"\\f121\";\n}\n.fa-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-mail-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n  content: \"\\f123\";\n}\n.fa-location-arrow:before {\n  content: \"\\f124\";\n}\n.fa-crop:before {\n  content: \"\\f125\";\n}\n.fa-code-fork:before {\n  content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n  content: \"\\f127\";\n}\n.fa-question:before {\n  content: \"\\f128\";\n}\n.fa-info:before {\n  content: \"\\f129\";\n}\n.fa-exclamation:before {\n  content: \"\\f12a\";\n}\n.fa-superscript:before {\n  content: \"\\f12b\";\n}\n.fa-subscript:before {\n  content: \"\\f12c\";\n}\n.fa-eraser:before {\n  content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.fa-microphone:before {\n  content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n  content: \"\\f131\";\n}\n.fa-shield:before {\n  content: \"\\f132\";\n}\n.fa-calendar-o:before {\n  content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.fa-rocket:before {\n  content: \"\\f135\";\n}\n.fa-maxcdn:before {\n  content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.fa-html5:before {\n  content: \"\\f13b\";\n}\n.fa-css3:before {\n  content: \"\\f13c\";\n}\n.fa-anchor:before {\n  content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.fa-bullseye:before {\n  content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.fa-rss-square:before {\n  content: \"\\f143\";\n}\n.fa-play-circle:before {\n  content: \"\\f144\";\n}\n.fa-ticket:before {\n  content: \"\\f145\";\n}\n.fa-minus-square:before {\n  content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n  content: \"\\f147\";\n}\n.fa-level-up:before {\n  content: \"\\f148\";\n}\n.fa-level-down:before {\n  content: \"\\f149\";\n}\n.fa-check-square:before {\n  content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n  content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n  content: \"\\f14c\";\n}\n.fa-share-square:before {\n  content: \"\\f14d\";\n}\n.fa-compass:before {\n  content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n  content: \"\\f153\";\n}\n.fa-gbp:before {\n  content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n  content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n  content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n  content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n  content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n  content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n  content: \"\\f15a\";\n}\n.fa-file:before {\n  content: \"\\f15b\";\n}\n.fa-file-text:before {\n  content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n  content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n  content: \"\\f165\";\n}\n.fa-youtube-square:before {\n  content: \"\\f166\";\n}\n.fa-youtube:before {\n  content: \"\\f167\";\n}\n.fa-xing:before {\n  content: \"\\f168\";\n}\n.fa-xing-square:before {\n  content: \"\\f169\";\n}\n.fa-youtube-play:before {\n  content: \"\\f16a\";\n}\n.fa-dropbox:before {\n  content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.fa-instagram:before {\n  content: \"\\f16d\";\n}\n.fa-flickr:before {\n  content: \"\\f16e\";\n}\n.fa-adn:before {\n  content: \"\\f170\";\n}\n.fa-bitbucket:before {\n  content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.fa-tumblr:before {\n  content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n  content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.fa-apple:before {\n  content: \"\\f179\";\n}\n.fa-windows:before {\n  content: \"\\f17a\";\n}\n.fa-android:before {\n  content: \"\\f17b\";\n}\n.fa-linux:before {\n  content: \"\\f17c\";\n}\n.fa-dribbble:before {\n  content: \"\\f17d\";\n}\n.fa-skype:before {\n  content: \"\\f17e\";\n}\n.fa-foursquare:before {\n  content: \"\\f180\";\n}\n.fa-trello:before {\n  content: \"\\f181\";\n}\n.fa-female:before {\n  content: \"\\f182\";\n}\n.fa-male:before {\n  content: \"\\f183\";\n}\n.fa-gittip:before {\n  content: \"\\f184\";\n}\n.fa-sun-o:before {\n  content: \"\\f185\";\n}\n.fa-moon-o:before {\n  content: \"\\f186\";\n}\n.fa-archive:before {\n  content: \"\\f187\";\n}\n.fa-bug:before {\n  content: \"\\f188\";\n}\n.fa-vk:before {\n  content: \"\\f189\";\n}\n.fa-weibo:before {\n  content: \"\\f18a\";\n}\n.fa-renren:before {\n  content: \"\\f18b\";\n}\n.fa-pagelines:before {\n  content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.fa-wheelchair:before {\n  content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n  content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n  content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n  content: \"\\f196\";\n}\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/css/prettify.css",
    "content": ".com { color: #93a1a1; }\n.lit { color: #195f91; }\n.pun, .opn, .clo { color: #93a1a1; }\n.fun { color: #dc322f; }\n.str, .atv { color: #D14; }\n.kwd, .prettyprint .tag { color: #1e347b; }\n.typ, .atn, .dec, .var { color: teal; }\n.pln { color: #48484c; }\n\n.prettyprint {\n  padding: 8px;\n  background-color: #f7f7f9;\n  border: 1px solid #e1e1e8;\n}\n.prettyprint.linenums {\n  -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;\n     -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;\n          box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;\n}\n\n/* Specify class=linenums on a pre to get line numbering */\nol.linenums {\n  margin: 0 0 0 33px; /* IE indents via margin-left */\n}\nol.linenums li {\n  padding-left: 12px;\n  color: #bebec5;\n  line-height: 20px;\n  text-shadow: 0 1px 0 #fff;\n}"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/docs/css/base.css",
    "content": "h1 {\n    font-size: 45px;\n}\n\n.intro-code {\n    margin-top: 20px;\n}\n\npre.highlight code * {\n  white-space: nowrap;    // this sets all children inside to nowrap\n}\n\npre.highlight {\n  overflow-x: auto;       // this sets the scrolling in x\n}\n\npre.highlight code {\n  white-space: pre;       // forces <code> to respect <pre> formatting\n}\n\n.main-container {\n  padding-left: 30px;\n  padding-right: 30px;\n}\n\n.btn:focus,\n.btn:focus:active {\n  outline: none;\n}\n\n.sidebar {\n  overflow: auto;\n  font-family: verdana;\n  font-size: 12px;\n  font-weight: 200;\n  background-color: #2e353d;\n  position: fixed;\n  top: 0px;\n  width: 225px;\n  height: 100%;\n  color: #FFF;\n}\n\n.sidebar .brand {\n    background-color: #23282e;\n    display: block;\n    text-align: center;\n    padding: 25px 0;\n    margin-top: 0;\n    margin-bottom: 0;\n}\n\n.sidebar .brand a {\n    color: #FFF;\n}\n\n.sidebar .brand a:hover,\n.sidebar .brand a:active,\n.sidebar .brand a:focus {\n  text-decoration: none;\n}\n\n.sidebar .toggle-btn {\n  display: none;\n}\n\n.sidebar .menu-list {\n  width: inherit;\n}\n\n.sidebar .menu-list ul,\n.sidebar .menu-list li {\n  background: #2e353d;\n  list-style: none;\n  padding: 0px;\n  margin: 0px;\n  line-height: 35px;\n  cursor: pointer;\n}\n\n.sidebar .menu-list ul :not(collapsed) .arrow:before,\n.sidebar .menu-list li :not(collapsed) .arrow:before {\n  font-family: FontAwesome;\n  content: \"\\f078\";\n  display: inline-block;\n  padding-left: 10px;\n  padding-right: 10px;\n  vertical-align: middle;\n  float: right;\n}\n\n.sidebar .menu-list ul .active,\n.sidebar .menu-list li .active {\n  border-left: 3px solid #d19b3d;\n  background-color: #4f5b69;\n}\n\n.sidebar .menu-list ul .sub-menu li.active,\n.sidebar .menu-list li .sub-menu li.active {\n  color: #d19b3d;\n}\n\n.sidebar .menu-list ul .sub-menu li.active a,\n.sidebar .menu-list li .sub-menu li.active a {\n  color: #d19b3d;\n}\n\n.sidebar .menu-list ul .sub-menu li,\n.sidebar .menu-list li .sub-menu li {\n  background-color: #181c20;\n  border: none;\n  border-bottom: 1px solid #23282e;\n  margin-left: 0px;\n  text-indent: 10px;\n}\n\n.sidebar .menu-list ul .sub-menu li:hover,\n.sidebar .menu-list li .sub-menu li:hover {\n  background-color: #020203;\n}\n\n\n.sidebar .menu-list ul .sub-menu li a,\n.sidebar .menu-list li .sub-menu li a {\n  display: block;\n}\n\n.sidebar .menu-list ul .sub-menu li a:before,\n.sidebar .menu-list li .sub-menu li a:before {\n  font-family: FontAwesome;\n  content: \"\\f105\";\n  display: inline-block;\n  padding-left: 10px;\n  padding-right: 10px;\n  vertical-align: middle;\n}\n\n.sidebar .menu-list li {\n  padding-left: 0px;\n  border-left: 3px solid #2e353d;\n  border-bottom: 1px solid #23282e;\n}\n\n.sidebar .menu-list li a {\n  text-decoration: none;\n  color: white;\n}\n\n.sidebar .menu-list li a i {\n  padding-left: 10px;\n  width: 20px;\n  padding-right: 20px;\n}\n\n.sidebar .menu-list li:hover {\n  border-left: 3px solid #d19b3d;\n  background-color: #4f5b69;\n  -webkit-transition: all 1s ease;\n  -moz-transition: all 1s ease;\n  -o-transition: all 1s ease;\n  -ms-transition: all 1s ease;\n  transition: all 1s ease;\n}\n\nbody {\n  margin: 0px;\n  padding: 0px;\n}\n\n.coredocs-section-title {\n    margin-top: 20px;\n    padding-bottom: 10px;\n    border-bottom: 1px solid lightgrey;\n}\n\n.coredocs-link-title a,\n.coredocs-section-title a {\n  display: none;\n}\n\n.coredocs-link-title a,\n.coredocs-section-title a {\n  text-decoration: none;\n}\n\n.coredocs-link-title:hover a,\n.coredocs-section-title:hover a {\n  display: inline;\n  font-size: 20px;\n}\n\n.coredocs-section-title:last-child {\n    margin-top: 0;\n}\n\n\n/* @group Language Switcher */\n\n.sidebar .menu-list.menu-list-bottom {\n    margin-bottom: 0;\n    position: fixed;\n    width: inherit;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    border-top: 1px solid #23282e;\n}\n\n.sidebar .menu-list-bottom li span {\n  float: right;\n  margin-right: 20px;\n  color: #d19b3d;\n}\n\n/* @end Language Switcher */\n\n\n/* @group Docs Content */\n\n.docs-content .meta .label {\n    vertical-align: middle;\n    font-size: 14px;\n    font-weight: normal;\n}\n\n.docs-content .meta code {\n    vertical-align: middle;\n    padding: .2em .6em .3em;\n    font-size: 14px;\n}\n\n.docs-content .btn {\n  font-size: inherit;\n}\n\n.code-samples pre {\n  margin-top: 20px;\n}\n\n/* @end Docs Content */\n\n\n@media (max-width: 767px) {\n  .main-container {\n    padding-left: 15px;\n    padding-right: 15px;\n  }\n\n  .sidebar {\n    position: relative;\n    width: 100%;\n    margin-bottom: 10px;\n    overflow: visible;\n  }\n\n  .sidebar .toggle-btn {\n    display: block;\n    cursor: pointer;\n    position: absolute;\n    right: 10px;\n    top: 10px;\n    z-index: 10 !important;\n    padding: 3px;\n    width: 40px;\n    text-align: center;\n  }\n\n  .sidebar .menu-list.menu-list-bottom {\n    position: static;\n  }\n\n  .sidebar .brand {\n    margin-top: 0;\n    margin-bottom: 0;\n\n    text-align: left !important;\n    font-size: 22px;\n    padding: 0;\n    padding-left: 20px;\n    line-height: 50px !important;\n  }\n}\n\n@media (min-width: 767px) {\n  .sidebar .menu-list .menu-content {\n    display: block;\n  }\n  #main {\n    width:calc(100% - 225px);\n    float: right;\n  }\n}\n\n@media (min-width: 992px) {\n  .modal-lg {\n      width: 980px;\n  }\n}\n\n.api-modal .modal-title .fa {\n  color: #93c54b;\n}\n\n.api-modal .modal-body .request-awaiting {\n  padding: 35px 10px;\n  color: #7F8177;\n  text-align: center;\n}\n\n.api-modal .modal-body .meta {\n  margin-bottom: 20px;\n}\n\n.api-modal .modal-body .meta .label {\n    vertical-align: middle;\n    font-size: 14px;\n    font-weight: normal;\n}\n\n.api-modal .modal-body .meta code {\n    vertical-align: middle;\n    padding: .2em .6em .3em;\n    font-size: 14px;\n}\n\n.api-modal .modal-content .toggle-view {\n  text-align: right;\n  float: right;\n}\n\n.api-modal .modal-content .response .well {\n  margin: 0;\n  max-height: 550px;\n}\n\n.highlight {\n    background-color: #f7f7f9\n}\n\n.checkbox label.control-label {\n    font-weight: bold\n}\n\n@media (min-width: 768px) {\n    .navbar-nav.navbar-right:last-child {\n        margin-right: 0 !important;\n    }\n}\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/docs/css/highlight.css",
    "content": "/*\nThis is the GitHub theme for highlight.js\n\ngithub.com style (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #333;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-comment,\n.diff .hljs-header,\n.hljs-javadoc {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.css .rule .hljs-keyword,\n.hljs-winutils,\n.nginx .hljs-title,\n.hljs-subst,\n.hljs-request,\n.hljs-status {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-number,\n.hljs-hexcolor,\n.ruby .hljs-constant {\n  color: #008080;\n}\n\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-phpdoc,\n.hljs-dartdoc,\n.tex .hljs-formula {\n  color: #d14;\n}\n\n.hljs-title,\n.hljs-id,\n.scss .hljs-preprocessor {\n  color: #900;\n  font-weight: bold;\n}\n\n.hljs-list .hljs-keyword,\n.hljs-subst {\n  font-weight: normal;\n}\n\n.hljs-class .hljs-title,\n.hljs-type,\n.vhdl .hljs-literal,\n.tex .hljs-command {\n  color: #458;\n  font-weight: bold;\n}\n\n.hljs-tag,\n.hljs-tag .hljs-title,\n.hljs-rule .hljs-property,\n.django .hljs-tag .hljs-keyword {\n  color: #000080;\n  font-weight: normal;\n}\n\n.hljs-attribute,\n.hljs-variable,\n.lisp .hljs-body,\n.hljs-name {\n  color: #008080;\n}\n\n.hljs-regexp {\n  color: #009926;\n}\n\n.hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.lisp .hljs-keyword,\n.clojure .hljs-keyword,\n.scheme .hljs-keyword,\n.tex .hljs-special,\n.hljs-prompt {\n  color: #990073;\n}\n\n.hljs-built_in {\n  color: #0086b3;\n}\n\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-pi,\n.hljs-doctype,\n.hljs-shebang,\n.hljs-cdata {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  background: #fdd;\n}\n\n.hljs-addition {\n  background: #dfd;\n}\n\n.diff .hljs-change {\n  background: #0086b3;\n}\n\n.hljs-chunk {\n  color: #aaa;\n}\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/docs/js/api.js",
    "content": "var responseDisplay = 'data'\nvar coreapi = window.coreapi\nvar schema = window.schema\n\nfunction normalizeKeys (arr) {\n  var _normarr = [];\n  for (var i = 0; i < arr.length; i++) {\n    _normarr = _normarr.concat(arr[i].split(' > '));\n  }\n  return _normarr;\n}\n\nfunction normalizeHTTPHeader (str) {\n  // Capitalize HTTP headers for display.\n  return (str.charAt(0).toUpperCase() + str.substring(1))\n    .replace(/-(.)/g, function ($1) {\n      return $1.toUpperCase()\n    })\n    .replace(/(Www)/g, function ($1) {\n      return 'WWW'\n    })\n    .replace(/(Xss)/g, function ($1) {\n      return 'XSS'\n    })\n    .replace(/(Md5)/g, function ($1) {\n      return 'MD5'\n    })\n}\n\nfunction formEntries (form) {\n  // Polyfill for new FormData(form).entries()\n  var formData = new FormData(form)\n  if (formData.entries !== undefined) {\n    return Array.from(formData.entries())\n  }\n\n  var entries = []\n\n  for (var i = 0; i < form.elements.length; i++) {\n    var element = form.elements[i]\n\n    if (!element.name) {\n      continue\n    }\n\n    if (element.type === 'file') {\n      for (var j = 0; j < element.files.length; j++) {\n        entries.push([element.name, element.files[j]])\n      }\n    } else if (element.type === 'select-multiple' || element.type === 'select-one') {\n      for (var j = 0; j < element.selectedOptions.length; j++) {\n        entries.push([element.name, element.selectedOptions[j].value])\n      }\n    } else if (element.type === 'checkbox') {\n      if (element.checked) {\n        entries.push([element.name, element.value])\n      }\n    } else {\n      entries.push([element.name, element.value])\n    }\n  }\n\n  return entries\n}\n\n$(function () {\n  var $selectedAuthentication = $('#selected-authentication')\n  var $authControl = $('#auth-control')\n  var $authTokenModal = $('#auth_token_modal')\n  var $authBasicModal = $('#auth_basic_modal')\n  var $authSessionModal = $('#auth_session_modal')\n\n  // Language Control\n  $('#language-control li').click(function (event) {\n    event.preventDefault()\n    var $languageMenuItem = $(this).find('a')\n    var $languageControls = $(this).closest('ul').find('li')\n    var $languageControlLinks = $languageControls.find('a')\n    var language = $languageMenuItem.data('language')\n\n    $languageControlLinks.not('[data-language=\"' + language + '\"]').parent().removeClass('active')\n    $languageControlLinks.filter('[data-language=\"' + language + '\"]').parent().addClass('active')\n\n    $('#selected-language').text(language)\n\n    var $codeBlocks = $('pre.highlight')\n    $codeBlocks.not('[data-language=\"' + language + '\"]').addClass('hide')\n    $codeBlocks.filter('[data-language=\"' + language + '\"]').removeClass('hide')\n  })\n\n  // API Explorer\n  $('form.api-interaction').submit(function (event) {\n    event.preventDefault()\n\n    var $form = $(this).closest('form')\n    var $requestMethod = $form.find('.request-method')\n    var $requestUrl = $form.find('.request-url')\n    var $toggleView = $form.closest('.modal-content').find('.toggle-view')\n    var $responseStatusCode = $form.find('.response-status-code')\n    var $meta = $form.find('.meta')\n    var $responseRawResponse = $form.find('.response-raw-response')\n    var $requestAwaiting = $form.find('.request-awaiting')\n    var $responseRaw = $form.find('.response-raw')\n    var $responseData = $form.find('.response-data')\n    var key = normalizeKeys($form.data('key'))\n    var params = {}\n    var entries = formEntries($form.get()[0])\n\n    for (var i = 0; i < entries.length; i++) {\n      var entry = entries[i]\n      var paramKey = entry[0]\n      var paramValue = entry[1]\n      var $elem = $form.find('[name=\"' + paramKey + '\"]')\n      var dataType = $elem.data('type') || 'string'\n\n      if (dataType === 'integer' && paramValue) {\n        var value = parseInt(paramValue)\n        if (!isNaN(value)) {\n          params[paramKey] = value\n        }\n      } else if (dataType === 'number' && paramValue) {\n        var value = parseFloat(paramValue)\n        if (!isNaN(value)) {\n          params[paramKey] = value\n        }\n      } else if (dataType === 'boolean' && paramValue) {\n        var value = {\n          'true': true,\n          'false': false\n        }[paramValue.toLowerCase()]\n        if (value !== undefined) {\n          params[paramKey] = value\n        }\n      } else if (dataType === 'array' && paramValue) {\n        try {\n          params[paramKey] = JSON.parse(paramValue)\n        } catch (err) {\n          // Ignore malformed JSON\n        }\n      } else if (dataType === 'object' && paramValue) {\n        try {\n          params[paramKey] = JSON.parse(paramValue)\n        } catch (err) {\n          // Ignore malformed JSON\n        }\n      } else if (dataType === 'string' && paramValue) {\n        params[paramKey] = paramValue\n      }\n    }\n\n    $form.find(':checkbox').each(function (index) {\n      // Handle unselected checkboxes\n      var name = $(this).attr('name')\n      if (!params.hasOwnProperty(name)) {\n        params[name] = false\n      }\n    })\n\n    function requestCallback (request) {\n      // Fill in the \"GET /foo/\" display.\n      var parser = document.createElement('a')\n      parser.href = request.url\n      var method = request.options.method\n      var path = parser.pathname + parser.hash + parser.search\n\n      $requestMethod.text(method)\n      $requestUrl.text(path)\n    }\n\n    function responseCallback (response, responseText) {\n      // Display the 'Data'/'Raw' control.\n      $toggleView.removeClass('hide')\n\n      // Fill in the \"200 OK\" display.\n      $responseStatusCode.removeClass('label-success').removeClass('label-danger')\n      if (response.ok) {\n        $responseStatusCode.addClass('label-success')\n      } else {\n        $responseStatusCode.addClass('label-danger')\n      }\n      $responseStatusCode.text(response.status)\n      $meta.removeClass('hide')\n\n      // Fill in the Raw HTTP response display.\n      var panelText = 'HTTP/1.1 ' + response.status + ' ' + response.statusText + '\\n'\n      response.headers.forEach(function (header, key) {\n        panelText += normalizeHTTPHeader(key) + ': ' + header + '\\n'\n      })\n      if (responseText) {\n        panelText += '\\n' + responseText\n      }\n      $responseRawResponse.text(panelText)\n    }\n\n    // Instantiate a client to make the outgoing request.\n    var options = {\n      requestCallback: requestCallback,\n      responseCallback: responseCallback\n    }\n\n    // Setup authentication options.\n    if (window.auth && window.auth.type === 'token') {\n      // Header authentication\n      options.auth = new coreapi.auth.TokenAuthentication({\n        scheme: window.auth.scheme,\n        token: window.auth.token\n      })\n    } else if (window.auth && window.auth.type === 'basic') {\n      // Basic authentication\n      options.auth = new coreapi.auth.BasicAuthentication({\n        username: window.auth.username,\n        password: window.auth.password\n      })\n    } else if (window.auth && window.auth.type === 'session') {\n      // Session authentication\n      options.auth = new coreapi.auth.SessionAuthentication({\n        csrfCookieName: 'csrftoken',\n        csrfHeaderName: 'X-CSRFToken'\n      })\n    }\n\n    var client = new coreapi.Client(options)\n    client.action(schema, key, params).then(function (data) {\n      var response = JSON.stringify(data, null, 2)\n      $requestAwaiting.addClass('hide')\n      $responseRaw.addClass('hide')\n      $responseData.addClass('hide').text('').jsonView(response)\n\n      if (responseDisplay === 'data') {\n        $responseData.removeClass('hide')\n      } else {\n        $responseRaw.removeClass('hide')\n      }\n    }).catch(function (error) {\n      var response = JSON.stringify(error.content, null, 2)\n      $requestAwaiting.addClass('hide')\n      $responseRaw.addClass('hide')\n      $responseData.addClass('hide').text('').jsonView(response)\n\n      if (responseDisplay === 'data') {\n        $responseData.removeClass('hide')\n      } else {\n        $responseRaw.removeClass('hide')\n      }\n    })\n  })\n\n  // 'Data'/'Raw' control\n  $('.toggle-view button').click(function () {\n    var $modalContent = $(this).closest('.modal-content')\n    var $modalResponseRaw = $modalContent.find('.response-raw')\n    var $modalResponseData = $modalContent.find('.response-data')\n\n    responseDisplay = $(this).data('display-toggle')\n\n    $(this).removeClass('btn-default').addClass('btn-info').siblings().removeClass('btn-info')\n\n    if (responseDisplay === 'raw') {\n      $modalResponseRaw.removeClass('hide')\n      $modalResponseData.addClass('hide')\n    } else {\n      $modalResponseData.removeClass('hide')\n      $modalResponseRaw.addClass('hide')\n    }\n  })\n\n  // Authentication: none\n  $authControl.find(\"[data-auth='none']\").click(function (event) {\n    event.preventDefault()\n    window.auth = null\n    $selectedAuthentication.text('none')\n    $authControl.find(\"[data-auth]\").closest('li').removeClass('active')\n    $authControl.find(\"[data-auth='none']\").closest('li').addClass('active')\n  })\n\n  // Authentication: token\n  $('form.authentication-token-form').submit(function (event) {\n    event.preventDefault()\n    var $form = $(this).closest('form')\n    var scheme = $form.find('input#scheme').val()\n    var token = $form.find('input#token').val()\n    window.auth = {\n      'type': 'token',\n      'scheme': scheme,\n      'token': token\n    }\n    $selectedAuthentication.text('token')\n    $authControl.find(\"[data-auth]\").closest('li').removeClass('active')\n    $authControl.find(\"[data-auth='token']\").closest('li').addClass('active')\n    $authTokenModal.modal('hide')\n  })\n\n  // Authentication: basic\n  $('form.authentication-basic-form').submit(function (event) {\n    event.preventDefault()\n    var $form = $(this).closest('form')\n    var username = $form.find('input#username').val()\n    var password = $form.find('input#password').val()\n    window.auth = {\n      'type': 'basic',\n      'username': username,\n      'password': password\n    }\n    $selectedAuthentication.text('basic')\n    $authControl.find(\"[data-auth]\").closest('li').removeClass('active')\n    $authControl.find(\"[data-auth='basic']\").closest('li').addClass('active')\n    $authBasicModal.modal('hide')\n  })\n\n  // Authentication: session\n  $('form.authentication-session-form').submit(function (event) {\n    event.preventDefault()\n    window.auth = {\n      'type': 'session'\n    }\n    $selectedAuthentication.text('session')\n    $authControl.find(\"[data-auth]\").closest('li').removeClass('active')\n    $authControl.find(\"[data-auth='session']\").closest('li').addClass('active')\n    $authSessionModal.modal('hide')\n  })\n})\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/docs/js/highlight.pack.js",
    "content": "!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define([],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){var n=(e.className+\" \"+(e.parentNode?e.parentNode.className:\"\")).split(/\\s+/);return n=n.map(function(e){return e.replace(/^lang(uage)?-/,\"\")}),n.filter(function(e){return N(e)||/no(-?)highlight|plain|text/.test(e)})[0]}function i(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function o(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function u(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function c(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,o){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),o&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&o.tE&&(a.tE+=(a.e?\"|\":\"\")+o.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(i(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,o);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function s(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function f(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=E.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function p(e,n,t,r){var a=r?\"\":x.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function d(){if(!L.k)return n(y);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(y);r;){e+=n(y.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=p(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(y)}return e+n(y.substr(t))}function h(){if(L.sL&&!w[L.sL])return n(y);var e=L.sL?s(L.sL,y,!0,M[L.sL]):l(y);return L.r>0&&(B+=e.r),\"continuous\"==L.subLanguageMode&&(M[L.sL]=e.top),p(e.language,e.value,!1,!0)}function b(){return void 0!==L.sL?h():d()}function v(e,t){var r=e.cN?p(e.cN,\"\",!0):\"\";e.rB?(k+=r,y=\"\"):e.eB?(k+=n(t)+r,y=\"\"):(k+=r,y=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(y+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(y+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),y=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(f(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return y+=t,t.length||1}var E=N(e);if(!E)throw new Error('Unknown language: \"'+e+'\"');c(E);var R,L=i||E,M={},k=\"\";for(R=L;R!=E;R=R.parent)R.cN&&(k=p(R.cN,\"\",!0)+k);var y=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(S){if(-1!=S.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw S}}function l(e,t){t=t||x.languages||Object.keys(w);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(N(n)){var t=s(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function f(e){return x.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,x.tabReplace)})),x.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function g(e,n,t){var r=n?E[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=a(e);if(!/no(-?)highlight|plain|text/.test(n)){var t;x.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,i=n?s(n,r,!0):l(r),c=o(t);if(c.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=i.value,i.value=u(c,o(p),r)}i.value=f(i.value),e.innerHTML=i.value,e.className=g(e.className,n,i.language),e.result={language:i.language,re:i.r},i.second_best&&(e.second_best={language:i.second_best.language,re:i.second_best.r})}}function d(e){x=i(x,e)}function h(){if(!h.called){h.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function b(){addEventListener(\"DOMContentLoaded\",h,!1),addEventListener(\"load\",h,!1)}function v(n,t){var r=w[n]=t(e);r.aliases&&r.aliases.forEach(function(e){E[e]=n})}function m(){return Object.keys(w)}function N(e){return w[e]||w[E[e]]}var x={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},w={},E={};return e.highlight=s,e.highlightAuto=l,e.fixMarkup=f,e.highlightBlock=p,e.configure=d,e.initHighlighting=h,e.initHighlightingOnLoad=b,e.registerLanguage=v,e.listLanguages=m,e.getLanguage=N,e.inherit=i,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"\\\\b(0[xX][a-fA-F0-9]+|(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"m\",\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate savepoint release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abs absolute acos action add adddate addtime aes_decrypt aes_encrypt after aggregate all allocate alter analyze and any are as asc ascii asin assertion at atan atan2 atn2 authorization authors avg backup before begin benchmark between bin binlog bit_and bit_count bit_length bit_or bit_xor both by cache call cascade cascaded case cast catalog ceil ceiling chain change changed char_length character_length charindex charset check checksum checksum_agg choose close coalesce coercibility collate collation collationproperty column columns columns_updated commit compress concat concat_ws concurrent connect connection connection_id consistent constraint constraints continue contributors conv convert convert_tz corresponding cos cot count count_big crc32 create cross cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime data database databases datalength date_add date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts datetimeoffsetfromparts day dayname dayofmonth dayofweek dayofyear deallocate declare decode default deferrable deferred degrees delayed delete des_decrypt des_encrypt des_key_file desc describe descriptor diagnostics difference disconnect distinct distinctrow div do domain double drop dumpfile each else elt enclosed encode encrypt end end-exec engine engines eomonth errors escape escaped event eventdata events except exception exec execute exists exp explain export_set extended external extract fast fetch field fields find_in_set first first_value floor flush for force foreign format found found_rows from from_base64 from_days from_unixtime full function get get_format get_lock getdate getutcdate global go goto grant grants greatest group group_concat grouping grouping_id gtid_subset gtid_subtract handler having help hex high_priority hosts hour ident_current ident_incr ident_seed identified identity if ifnull ignore iif ilike immediate in index indicator inet6_aton inet6_ntoa inet_aton inet_ntoa infile initially inner innodb input insert install instr intersect into is is_free_lock is_ipv4 is_ipv4_compat is_ipv4_mapped is_not is_not_null is_used_lock isdate isnull isolation join key kill language last last_day last_insert_id last_value lcase lead leading least leaves left len lenght level like limit lines ln load load_file local localtime localtimestamp locate lock log log10 log2 logfile logs low_priority lower lpad ltrim make_set makedate maketime master master_pos_wait match matched max md5 medium merge microsecond mid min minute mod mode module month monthname mutex name_const names national natural nchar next no no_write_to_binlog not now nullif nvarchar oct octet_length of old_password on only open optimize option optionally or ord order outer outfile output pad parse partial partition password patindex percent_rank percentile_cont percentile_disc period_add period_diff pi plugin position pow power pragma precision prepare preserve primary prior privileges procedure procedure_analyze processlist profile profiles public publishingservername purge quarter query quick quote quotename radians rand read references regexp relative relaylog release release_lock rename repair repeat replace replicate reset restore restrict return returns reverse revoke right rlike rollback rollup round row row_count rows rpad rtrim savepoint schema scroll sec_to_time second section select serializable server session session_user set sha sha1 sha2 share show sign sin size slave sleep smalldatetimefromparts snapshot some soname soundex sounds_like space sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sql_variant_property sqlstate sqrt square start starting status std stddev stddev_pop stddev_samp stdev stdevp stop str str_to_date straight_join strcmp string stuff subdate substr substring subtime subtring_index sum switchoffset sysdate sysdatetime sysdatetimeoffset system_user sysutcdatetime table tables tablespace tan temporary terminated tertiary_weights then time time_format time_to_sec timediff timefromparts timestamp timestampadd timestampdiff timezone_hour timezone_minute to to_base64 to_days to_seconds todatetimeoffset trailing transaction translation trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse ucase uncompress uncompressed_length unhex unicode uninstall union unique unix_timestamp unknown unlock update upgrade upped upper usage use user user_resources using utc_date utc_time utc_timestamp uuid uuid_short validate_password_strength value values var var_pop var_samp variables variance varp version view warnings week weekday weekofyear weight_string when whenever where with work write xml xor year yearweek zon\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int integer interval number numeric real serial smallint varchar varying int8 serial8 text\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,v:[{b:/^\\s*('|\")use strict('|\")/},{b:/^\\s*('|\")use asm('|\")/}]},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",b:\"\\\\b(0[xXbBoO][a-fA-F0-9]+|(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}]}});hljs.registerLanguage(\"scss\",function(e){{var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}})}return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",b:\"#[a-zA-Z .]+\"}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",reserved:\"case default function var void with const let enum export import native __hasProp __extends __slice __bind __indexOf\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",t={cN:\"subst\",b:/#\\{/,e:/}/,k:c},r=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,t]},{b:/\"/,e:/\"/,c:[e.BE,t]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[t,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];t.c=r;var i=e.inherit(e.TM,{b:n}),s=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(r)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:r.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+s,e:\"[-=]>\",rB:!0,c:[i,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:s,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"vbscript-html\",function(s){return{sL:\"xml\",subLanguageMode:\"continuous\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},a={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},r={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},l={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},n={cN:\"function\",bK:\"def val\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,a,e.QSM,r,c,n,l,e.CNM,t]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"dockerfile\",function(n){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env\"},c:[n.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\",subLanguageMode:\"continuous\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[n.ASM,n.QSM,n.NM,n.HCM]}]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.]\\\\w+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},{cN:\"string\",b:'\"',e:'\"'},{cN:\"string\",b:\"'\",e:\"'\"},{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},{cN:\"string\",b:'\"',e:'\"'},{cN:\"string\",b:\"'\",e:\"'\"},{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e eu eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"ini\",function(e){return{cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),{cN:\"title\",b:\"^\\\\[\",e:\"\\\\]\"},{cN:\"setting\",b:\"^[a-z0-9\\\\[\\\\]_-]+[ \\\\t]*=[ \\\\t]*\",e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[e.QSM,e.NM],r:0}]}]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"class deinit enum extension func import init let protocol static struct subscript typealias var break case continue default do else fallthrough if in for return switch where while as dynamicType is new super self Self Type __COLUMN__ __FILE__ __FUNCTION__ __LINE__ associativity didSet get infix inout left mutating none nonmutating operator override postfix precedence prefix right set unowned unowned safe unsafe weak willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue assert bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal false filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced join lexicographicalCompare map max maxElement min minElement nil numericCast partition posix print println quickSort reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith strideof strideofValue swap swift toString transcode true underestimateCount unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafePointers withVaList\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},s={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[s],{k:i,c:[o,e.CLCM,n,t,s,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",s,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@assignment|@class_protocol|@exported|@final|@lazy|@noreturn|@NSCopying|@NSManaged|@objc|@optional|@required|@auto_closure|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix)\"}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},i={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},a={cN:\"string\",c:[e.BE,i],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"phpdoc\",b:\"\\\\s@[A-Za-z]+\"},i]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},i,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,a,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},a,n]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"(\\\\b(0b[01_]+)|\\\\b0[xX][a-fA-F0-9_]+|(\\\\b[\\\\d_]+(\\\\.[\\\\d_]*)?|\\\\.[\\\\d_]+)([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\//,c:[{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"kotlin\",function(e){var a=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:a},c:[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*//*\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:a,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:a,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|']/,c:[e.CBCM,r,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/,r:0},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,r:0,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"puppet\",function(e){var s=\"augeas computer cron exec file filebucket host interface k5login macauthorization mailalias maillist mcx mount nagios_command nagios_contact nagios_contactgroup nagios_host nagios_hostdependency nagios_hostescalation nagios_hostextinfo nagios_hostgroup nagios_service firewall nagios_servicedependency nagios_serviceescalation nagios_serviceextinfo nagios_servicegroup nagios_timeperiod notify package resources router schedule scheduled_task selboolean selmodule service ssh_authorized_key sshkey stage tidy user vlan yumrepo zfs zone zpool\",r=\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",a={keyword:\"and case class default define else elsif false if in import enherits node or true undef unless main settings $string \"+s,literal:r,built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},i=e.C(\"#\",\"$\"),o={cN:\"string\",c:[e.BE],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},n=[o,i,{cN:\"keyword\",bK:\"class\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"(::)?[A-Za-z_]\\\\w*(::\\\\w+)*\"}),i,o]},{cN:\"keyword\",b:\"([a-zA-Z_(::)]+ *\\\\{)\",c:[o,i],r:0},{cN:\"keyword\",b:\"(\\\\}|\\\\{)\",r:0},{cN:\"function\",b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z][a-z_]*(::)?)+\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0}];return{aliases:[\"pp\"],k:a,c:n}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template|10 try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{cN:\"number\",b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{cN:\"number\",b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[HhXx]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{cN:\"number\",b:\"\\\\b(?:0[HhXx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"},s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"string\",b:\"`\",e:\"[^\\\\\\\\]`\",r:0},{cN:\"string\",b:\"\\\\.[A-Za-z0-9]+\",r:0},{cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0},{cN:\"label\",b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\",r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"yardoctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\" |$|;\",r:0,c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"typescript\",function(e){return{aliases:[\"ts\"],k:{keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private get set super interface extendsstatic constructor implements enum export import declare type protected\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"},c:[{cN:\"pi\",b:/^\\s*('|\")use strict('|\")/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>;/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},i=e.inherit(e.QSM,{i:null}),c=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,i,m,p,c,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,i,m,p,c,u,l,s,d]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},i=e.C(\"^(__END__|__DATA__)\",\"\\\\n$\",{r:5}),o=[e.BE,r,n],a=[n,e.HCM,i,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,i,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0}];return r.c=a,s.c=a,{aliases:[\"pl\"],k:t,c:a}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",bK:\"end\",e:\"$\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"command\",bK:\"end\",e:\"$\",c:[o,a]},{cN:\"preprocessor\",b:\"<\\\\?rev|<\\\\?lc|<\\\\?livecode\",r:10},{cN:\"preprocessor\",b:\"<\\\\?\"},{cN:\"preprocessor\",b:\"\\\\?>\"},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"cpp\",function(t){var i={keyword:\"false int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using true class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue wchar_t inline delete alignof char16_t char32_t constexpr decltype noexcept nullptr static_assert thread_local restrict _Bool complex _Complex _Imaginary intmax_t uintmax_t int8_t uint8_t int16_t uint16_t int32_t uint32_t  int64_t uint64_t int_least8_t uint_least8_t int_least16_t uint_least16_t int_least32_t uint_least32_t int_least64_t uint_least64_t int_fast8_t uint_fast8_t int_fast16_t uint_fast16_t int_fast32_t uint_fast32_t int_fast64_t uint_fast64_t intptr_t uintptr_t atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong atomic_wchar_t atomic_char16_t atomic_char32_t atomic_intmax_t atomic_uintmax_t atomic_intptr_t atomic_uintptr_t atomic_size_t atomic_ptrdiff_t atomic_int_least8_t atomic_int_least16_t atomic_int_least32_t atomic_int_least64_t atomic_uint_least8_t atomic_uint_least16_t atomic_uint_least32_t atomic_uint_least64_t atomic_int_fast8_t atomic_int_fast16_t atomic_int_fast32_t atomic_int_fast64_t atomic_uint_fast8_t atomic_uint_fast16_t atomic_uint_fast32_t atomic_uint_fast64_t\",built_in:\"std string cin cout cerr clog stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:i,i:\"</\",c:[t.CLCM,t.CBCM,t.QSM,{cN:\"string\",b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"},{cN:\"number\",b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},t.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma\",c:[{b:/\\\\\\n/,r:0},{b:'include\\\\s*[<\"]',e:'[>\"]',k:\"include\",i:\"\\\\n\"},t.CLCM]},{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:i,c:[\"self\"]},{b:t.IR+\"::\",k:i},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"\\\\s+)+\"+t.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:t.IR+\"\\\\s*\\\\(\",rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:i,r:0,c:[t.CBCM]},t.CLCM,t.CBCM]}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:\"\",eW:!0}}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\//,c:[{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},l={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},c={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,l,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,l,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,c]},{cN:\"decorator\",b:/@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"rust\",function(e){var t=e.inherit(e.CBCM);return t.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self sizeof static struct super trait true type typeof unsafe unsized use virtual while yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,t,e.inherit(e.QSM,{i:null}),{cN:\"string\",b:/r(#*)\".*?\"\\1(?!#)/},{cN:\"string\",b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/},{cN:\"number\",b:/\\b(0[xbo][A-Fa-f0-9_]+|\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)([uif](8|16|32|64|size))?/,r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"({|<)\",c:[e.UTM],i:\"\\\\S\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*//*\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}]}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"yield! return! let! do!abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",c:[{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{cN:\"string\",b:\"\\\\|\",e:\"\\\\$\"},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"xml\",function(t){var e=\"[A-Za-z0-9\\\\._:-]+\",s={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\",subLanguageMode:\"continuous\"},c={eW:!0,i:/</,r:0,c:[s,{cN:\"attribute\",b:e,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[s],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[c],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[c],starts:{e:\"</script>\",rE:!0,sL:\"\"}},s,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},c]}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class namespace interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),o={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},i={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*!\",e:\"\\\\*/\",c:[e.PWM]},e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(-?infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\":=|/(?!\\\\w)=?|[-+*%=<>&|!?\\\\\\\\]+\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},o,i,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},o,i].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>\"}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"dust\",function(e){var a=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a,r:0}]}]}});hljs.registerLanguage(\"clojure-repl\",function(e){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\",subLanguageMode:\"continuous\"}}]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,{cN:\"dartdoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",sL:\"markdown\",subLanguageMode:\"continuous\"},{cN:\"dartdoc\",b:\"///\",e:\"$\",sL:\"markdown\",subLanguageMode:\"continuous\"},e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/js/ajax-form.js",
    "content": "function replaceDocument(docString) {\n  var doc = document.open(\"text/html\");\n\n  doc.write(docString);\n  doc.close();\n}\n\nfunction doAjaxSubmit(e) {\n  var form = $(this);\n  var btn = $(this.clk);\n  var method = (\n    btn.data('method') ||\n    form.data('method') ||\n    form.attr('method') || 'GET'\n  ).toUpperCase();\n\n  if (method === 'GET') {\n    // GET requests can always use standard form submits.\n    return;\n  }\n\n  var contentType =\n    form.find('input[data-override=\"content-type\"]').val() ||\n    form.find('select[data-override=\"content-type\"] option:selected').text();\n\n  if (method === 'POST' && !contentType) {\n    // POST requests can use standard form submits, unless we have\n    // overridden the content type.\n    return;\n  }\n\n  // At this point we need to make an AJAX form submission.\n  e.preventDefault();\n\n  var url = form.attr('action');\n  var data;\n\n  if (contentType) {\n    data = form.find('[data-override=\"content\"]').val() || ''\n\n    if (contentType === 'multipart/form-data') {\n      // We need to add a boundary parameter to the header\n      // We assume the first valid-looking boundary line in the body is correct\n      // regex is from RFC 2046 appendix A\n      var boundaryCharNoSpace = \"0-9A-Z'()+_,-./:=?\";\n      var boundaryChar = boundaryCharNoSpace + ' ';\n      var re = new RegExp('^--([' + boundaryChar + ']{0,69}[' + boundaryCharNoSpace + '])[\\\\s]*?$', 'im');\n      var boundary = data.match(re);\n      if (boundary !== null) {\n        contentType += '; boundary=\"' + boundary[1] + '\"';\n      }\n      // Fix textarea.value EOL normalisation (multipart/form-data should use CR+NL, not NL)\n      data = data.replace(/\\n/g, '\\r\\n');\n    }\n  } else {\n    contentType = form.attr('enctype') || form.attr('encoding')\n\n    if (contentType === 'multipart/form-data') {\n      if (!window.FormData) {\n        alert('Your browser does not support AJAX multipart form submissions');\n        return;\n      }\n\n      // Use the FormData API and allow the content type to be set automatically,\n      // so it includes the boundary string.\n      // See https://developer.mozilla.org/en-US/docs/Web/API/FormData/Using_FormData_Objects\n      contentType = false;\n      data = new FormData(form[0]);\n    } else {\n      contentType = 'application/x-www-form-urlencoded; charset=UTF-8'\n      data = form.serialize();\n    }\n  }\n\n  var ret = $.ajax({\n    url: url,\n    method: method,\n    data: data,\n    contentType: contentType,\n    processData: false,\n    headers: {\n      'Accept': 'text/html; q=1.0, */*'\n    },\n  });\n\n  ret.always(function(data, textStatus, jqXHR) {\n    if (textStatus != 'success') {\n      jqXHR = data;\n    }\n\n    var responseContentType = jqXHR.getResponseHeader(\"content-type\") || \"\";\n\n    if (responseContentType.toLowerCase().indexOf('text/html') === 0) {\n      replaceDocument(jqXHR.responseText);\n\n      try {\n        // Modify the location and scroll to top, as if after page load.\n        history.replaceState({}, '', url);\n        scroll(0, 0);\n      } catch (err) {\n        // History API not supported, so redirect.\n        window.location = url;\n      }\n    } else {\n      // Not HTML content. We can't open this directly, so redirect.\n      window.location = url;\n    }\n  });\n\n  return ret;\n}\n\nfunction captureSubmittingElement(e) {\n  var target = e.target;\n  var form = this;\n\n  form.clk = target;\n}\n\n$.fn.ajaxForm = function() {\n  var options = {}\n\n  return this\n    .unbind('submit.form-plugin  click.form-plugin')\n    .bind('submit.form-plugin', options, doAjaxSubmit)\n    .bind('click.form-plugin', options, captureSubmittingElement);\n};\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/js/coreapi-0.1.1.js",
    "content": "(function(f){if(typeof exports===\"object\"&&typeof module!==\"undefined\"){module.exports=f()}else if(typeof define===\"function\"&&define.amd){define([],f)}else{var g;if(typeof window!==\"undefined\"){g=window}else if(typeof global!==\"undefined\"){g=global}else if(typeof self!==\"undefined\"){g=self}else{g=this}g.coreapi = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar BasicAuthentication = function () {\n  function BasicAuthentication() {\n    var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n    _classCallCheck(this, BasicAuthentication);\n\n    var username = options.username;\n    var password = options.password;\n    var hash = window.btoa(username + ':' + password);\n    this.auth = 'Basic ' + hash;\n  }\n\n  _createClass(BasicAuthentication, [{\n    key: 'authenticate',\n    value: function authenticate(options) {\n      options.headers['Authorization'] = this.auth;\n      return options;\n    }\n  }]);\n\n  return BasicAuthentication;\n}();\n\nmodule.exports = {\n  BasicAuthentication: BasicAuthentication\n};\n\n},{}],2:[function(require,module,exports){\n'use strict';\n\nvar basic = require('./basic');\nvar session = require('./session');\nvar token = require('./token');\n\nmodule.exports = {\n  BasicAuthentication: basic.BasicAuthentication,\n  SessionAuthentication: session.SessionAuthentication,\n  TokenAuthentication: token.TokenAuthentication\n};\n\n},{\"./basic\":1,\"./session\":3,\"./token\":4}],3:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar utils = require('../utils');\n\nfunction trim(str) {\n  return str.replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n}\n\nfunction getCookie(cookieName, cookieString) {\n  cookieString = cookieString || window.document.cookie;\n  if (cookieString && cookieString !== '') {\n    var cookies = cookieString.split(';');\n    for (var i = 0; i < cookies.length; i++) {\n      var cookie = trim(cookies[i]);\n      // Does this cookie string begin with the name we want?\n      if (cookie.substring(0, cookieName.length + 1) === cookieName + '=') {\n        return decodeURIComponent(cookie.substring(cookieName.length + 1));\n      }\n    }\n  }\n  return null;\n}\n\nvar SessionAuthentication = function () {\n  function SessionAuthentication() {\n    var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n    _classCallCheck(this, SessionAuthentication);\n\n    this.csrfToken = getCookie(options.csrfCookieName, options.cookieString);\n    this.csrfHeaderName = options.csrfHeaderName;\n  }\n\n  _createClass(SessionAuthentication, [{\n    key: 'authenticate',\n    value: function authenticate(options) {\n      options.credentials = 'same-origin';\n      if (this.csrfToken && !utils.csrfSafeMethod(options.method)) {\n        options.headers[this.csrfHeaderName] = this.csrfToken;\n      }\n      return options;\n    }\n  }]);\n\n  return SessionAuthentication;\n}();\n\nmodule.exports = {\n  SessionAuthentication: SessionAuthentication\n};\n\n},{\"../utils\":15}],4:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar TokenAuthentication = function () {\n  function TokenAuthentication() {\n    var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n    _classCallCheck(this, TokenAuthentication);\n\n    this.token = options.token;\n    this.scheme = options.scheme || 'Bearer';\n  }\n\n  _createClass(TokenAuthentication, [{\n    key: 'authenticate',\n    value: function authenticate(options) {\n      options.headers['Authorization'] = this.scheme + ' ' + this.token;\n      return options;\n    }\n  }]);\n\n  return TokenAuthentication;\n}();\n\nmodule.exports = {\n  TokenAuthentication: TokenAuthentication\n};\n\n},{}],5:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar document = require('./document');\nvar codecs = require('./codecs');\nvar errors = require('./errors');\nvar transports = require('./transports');\nvar utils = require('./utils');\n\nfunction lookupLink(node, keys) {\n  var _iteratorNormalCompletion = true;\n  var _didIteratorError = false;\n  var _iteratorError = undefined;\n\n  try {\n    for (var _iterator = keys[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n      var key = _step.value;\n\n      if (node instanceof document.Document) {\n        node = node.content[key];\n      } else {\n        node = node[key];\n      }\n      if (node === undefined) {\n        throw new errors.LinkLookupError('Invalid link lookup: ' + JSON.stringify(keys));\n      }\n    }\n  } catch (err) {\n    _didIteratorError = true;\n    _iteratorError = err;\n  } finally {\n    try {\n      if (!_iteratorNormalCompletion && _iterator.return) {\n        _iterator.return();\n      }\n    } finally {\n      if (_didIteratorError) {\n        throw _iteratorError;\n      }\n    }\n  }\n\n  if (!(node instanceof document.Link)) {\n    throw new errors.LinkLookupError('Invalid link lookup: ' + JSON.stringify(keys));\n  }\n  return node;\n}\n\nvar Client = function () {\n  function Client() {\n    var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n    _classCallCheck(this, Client);\n\n    var transportOptions = {\n      auth: options.auth || null,\n      headers: options.headers || {},\n      requestCallback: options.requestCallback,\n      responseCallback: options.responseCallback\n    };\n\n    this.decoders = options.decoders || [new codecs.CoreJSONCodec(), new codecs.JSONCodec(), new codecs.TextCodec()];\n    this.transports = options.transports || [new transports.HTTPTransport(transportOptions)];\n  }\n\n  _createClass(Client, [{\n    key: 'action',\n    value: function action(document, keys) {\n      var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n      var link = lookupLink(document, keys);\n      var transport = utils.determineTransport(this.transports, link.url);\n      return transport.action(link, this.decoders, params);\n    }\n  }, {\n    key: 'get',\n    value: function get(url) {\n      var link = new document.Link(url, 'get');\n      var transport = utils.determineTransport(this.transports, url);\n      return transport.action(link, this.decoders);\n    }\n  }]);\n\n  return Client;\n}();\n\nmodule.exports = {\n  Client: Client\n};\n\n},{\"./codecs\":7,\"./document\":10,\"./errors\":11,\"./transports\":14,\"./utils\":15}],6:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar document = require('../document');\nvar URL = require('url-parse');\n\nfunction unescapeKey(key) {\n  if (key.match(/__(type|meta)$/)) {\n    return key.substring(1);\n  }\n  return key;\n}\n\nfunction getString(obj, key) {\n  var value = obj[key];\n  if (typeof value === 'string') {\n    return value;\n  }\n  return '';\n}\n\nfunction getBoolean(obj, key) {\n  var value = obj[key];\n  if (typeof value === 'boolean') {\n    return value;\n  }\n  return false;\n}\n\nfunction getObject(obj, key) {\n  var value = obj[key];\n  if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {\n    return value;\n  }\n  return {};\n}\n\nfunction getArray(obj, key) {\n  var value = obj[key];\n  if (value instanceof Array) {\n    return value;\n  }\n  return [];\n}\n\nfunction getContent(data, baseUrl) {\n  var excluded = ['_type', '_meta'];\n  var content = {};\n  for (var property in data) {\n    if (data.hasOwnProperty(property) && !excluded.includes(property)) {\n      var key = unescapeKey(property);\n      var value = primitiveToNode(data[property], baseUrl);\n      content[key] = value;\n    }\n  }\n  return content;\n}\n\nfunction primitiveToNode(data, baseUrl) {\n  var isObject = data instanceof Object && !(data instanceof Array);\n\n  if (isObject && data._type === 'document') {\n    // Document\n    var meta = getObject(data, '_meta');\n    var relativeUrl = getString(meta, 'url');\n    var url = relativeUrl ? URL(relativeUrl, baseUrl).toString() : '';\n    var title = getString(meta, 'title');\n    var description = getString(meta, 'description');\n    var content = getContent(data, url);\n    return new document.Document(url, title, description, content);\n  } else if (isObject && data._type === 'link') {\n    // Link\n    var _relativeUrl = getString(data, 'url');\n    var _url = _relativeUrl ? URL(_relativeUrl, baseUrl).toString() : '';\n    var method = getString(data, 'action') || 'get';\n    var _title = getString(data, 'title');\n    var _description = getString(data, 'description');\n    var fieldsData = getArray(data, 'fields');\n    var fields = [];\n    for (var idx = 0, len = fieldsData.length; idx < len; idx++) {\n      var value = fieldsData[idx];\n      var name = getString(value, 'name');\n      var required = getBoolean(value, 'required');\n      var location = getString(value, 'location');\n      var fieldDescription = getString(value, 'fieldDescription');\n      var field = new document.Field(name, required, location, fieldDescription);\n      fields.push(field);\n    }\n    return new document.Link(_url, method, 'application/json', fields, _title, _description);\n  } else if (isObject) {\n    // Object\n    var _content = {};\n    for (var key in data) {\n      if (data.hasOwnProperty(key)) {\n        _content[key] = primitiveToNode(data[key], baseUrl);\n      }\n    }\n    return _content;\n  } else if (data instanceof Array) {\n    // Object\n    var _content2 = [];\n    for (var _idx = 0, _len = data.length; _idx < _len; _idx++) {\n      _content2.push(primitiveToNode(data[_idx], baseUrl));\n    }\n    return _content2;\n  }\n  // Primitive\n  return data;\n}\n\nvar CoreJSONCodec = function () {\n  function CoreJSONCodec() {\n    _classCallCheck(this, CoreJSONCodec);\n\n    this.mediaType = 'application/coreapi+json';\n  }\n\n  _createClass(CoreJSONCodec, [{\n    key: 'decode',\n    value: function decode(text) {\n      var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n      var data = text;\n      if (options.preloaded === undefined || !options.preloaded) {\n        data = JSON.parse(text);\n      }\n      return primitiveToNode(data, options.url);\n    }\n  }]);\n\n  return CoreJSONCodec;\n}();\n\nmodule.exports = {\n  CoreJSONCodec: CoreJSONCodec\n};\n\n},{\"../document\":10,\"url-parse\":19}],7:[function(require,module,exports){\n'use strict';\n\nvar corejson = require('./corejson');\nvar json = require('./json');\nvar text = require('./text');\n\nmodule.exports = {\n  CoreJSONCodec: corejson.CoreJSONCodec,\n  JSONCodec: json.JSONCodec,\n  TextCodec: text.TextCodec\n};\n\n},{\"./corejson\":6,\"./json\":8,\"./text\":9}],8:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar JSONCodec = function () {\n  function JSONCodec() {\n    _classCallCheck(this, JSONCodec);\n\n    this.mediaType = 'application/json';\n  }\n\n  _createClass(JSONCodec, [{\n    key: 'decode',\n    value: function decode(text) {\n      var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n      return JSON.parse(text);\n    }\n  }]);\n\n  return JSONCodec;\n}();\n\nmodule.exports = {\n  JSONCodec: JSONCodec\n};\n\n},{}],9:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar TextCodec = function () {\n  function TextCodec() {\n    _classCallCheck(this, TextCodec);\n\n    this.mediaType = 'text/*';\n  }\n\n  _createClass(TextCodec, [{\n    key: 'decode',\n    value: function decode(text) {\n      var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n      return text;\n    }\n  }]);\n\n  return TextCodec;\n}();\n\nmodule.exports = {\n  TextCodec: TextCodec\n};\n\n},{}],10:[function(require,module,exports){\n'use strict';\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Document = function Document() {\n  var url = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';\n  var title = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n  var description = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n  var content = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\n  _classCallCheck(this, Document);\n\n  this.url = url;\n  this.title = title;\n  this.description = description;\n  this.content = content;\n};\n\nvar Link = function Link(url, method) {\n  var encoding = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'application/json';\n  var fields = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];\n  var title = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : '';\n  var description = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : '';\n\n  _classCallCheck(this, Link);\n\n  if (url === undefined) {\n    throw new Error('url argument is required');\n  }\n\n  if (method === undefined) {\n    throw new Error('method argument is required');\n  }\n\n  this.url = url;\n  this.method = method;\n  this.encoding = encoding;\n  this.fields = fields;\n  this.title = title;\n  this.description = description;\n};\n\nvar Field = function Field(name) {\n  var required = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n  var location = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n  var description = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '';\n\n  _classCallCheck(this, Field);\n\n  if (name === undefined) {\n    throw new Error('name argument is required');\n  }\n\n  this.name = name;\n  this.required = required;\n  this.location = location;\n  this.description = description;\n};\n\nmodule.exports = {\n  Document: Document,\n  Link: Link,\n  Field: Field\n};\n\n},{}],11:[function(require,module,exports){\n'use strict';\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar ParameterError = function (_Error) {\n  _inherits(ParameterError, _Error);\n\n  function ParameterError(message) {\n    _classCallCheck(this, ParameterError);\n\n    var _this = _possibleConstructorReturn(this, (ParameterError.__proto__ || Object.getPrototypeOf(ParameterError)).call(this, message));\n\n    _this.message = message;\n    _this.name = 'ParameterError';\n    return _this;\n  }\n\n  return ParameterError;\n}(Error);\n\nvar LinkLookupError = function (_Error2) {\n  _inherits(LinkLookupError, _Error2);\n\n  function LinkLookupError(message) {\n    _classCallCheck(this, LinkLookupError);\n\n    var _this2 = _possibleConstructorReturn(this, (LinkLookupError.__proto__ || Object.getPrototypeOf(LinkLookupError)).call(this, message));\n\n    _this2.message = message;\n    _this2.name = 'LinkLookupError';\n    return _this2;\n  }\n\n  return LinkLookupError;\n}(Error);\n\nvar ErrorMessage = function (_Error3) {\n  _inherits(ErrorMessage, _Error3);\n\n  function ErrorMessage(message, content) {\n    _classCallCheck(this, ErrorMessage);\n\n    var _this3 = _possibleConstructorReturn(this, (ErrorMessage.__proto__ || Object.getPrototypeOf(ErrorMessage)).call(this, message));\n\n    _this3.message = message;\n    _this3.content = content;\n    _this3.name = 'ErrorMessage';\n    return _this3;\n  }\n\n  return ErrorMessage;\n}(Error);\n\nmodule.exports = {\n  ParameterError: ParameterError,\n  LinkLookupError: LinkLookupError,\n  ErrorMessage: ErrorMessage\n};\n\n},{}],12:[function(require,module,exports){\n'use strict';\n\nvar auth = require('./auth');\nvar client = require('./client');\nvar codecs = require('./codecs');\nvar document = require('./document');\nvar errors = require('./errors');\nvar transports = require('./transports');\nvar utils = require('./utils');\n\nvar coreapi = {\n  Client: client.Client,\n  Document: document.Document,\n  Link: document.Link,\n  auth: auth,\n  codecs: codecs,\n  errors: errors,\n  transports: transports,\n  utils: utils\n};\n\nmodule.exports = coreapi;\n\n},{\"./auth\":2,\"./client\":5,\"./codecs\":7,\"./document\":10,\"./errors\":11,\"./transports\":14,\"./utils\":15}],13:[function(require,module,exports){\n'use strict';\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar fetch = require('isomorphic-fetch');\nvar errors = require('../errors');\nvar utils = require('../utils');\nvar URL = require('url-parse');\nvar urlTemplate = require('url-template');\n\nvar parseResponse = function parseResponse(response, decoders, responseCallback) {\n  return response.text().then(function (text) {\n    if (responseCallback) {\n      responseCallback(response, text);\n    }\n    var contentType = response.headers.get('Content-Type');\n    var decoder = utils.negotiateDecoder(decoders, contentType);\n    var options = { url: response.url };\n    return decoder.decode(text, options);\n  });\n};\n\nvar HTTPTransport = function () {\n  function HTTPTransport() {\n    var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n    _classCallCheck(this, HTTPTransport);\n\n    this.schemes = ['http', 'https'];\n    this.auth = options.auth || null;\n    this.headers = options.headers || {};\n    this.fetch = options.fetch || fetch;\n    this.FormData = options.FormData || window.FormData;\n    this.requestCallback = options.requestCallback;\n    this.responseCallback = options.responseCallback;\n  }\n\n  _createClass(HTTPTransport, [{\n    key: 'buildRequest',\n    value: function buildRequest(link, decoders) {\n      var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n      var fields = link.fields;\n      var method = link.method.toUpperCase();\n      var queryParams = {};\n      var pathParams = {};\n      var formParams = {};\n      var fieldNames = [];\n      var hasBody = false;\n\n      for (var idx = 0, len = fields.length; idx < len; idx++) {\n        var field = fields[idx];\n\n        // Ensure any required fields are included\n        if (!params.hasOwnProperty(field.name)) {\n          if (field.required) {\n            throw new errors.ParameterError('Missing required field: \"' + field.name + '\"');\n          } else {\n            continue;\n          }\n        }\n\n        fieldNames.push(field.name);\n        if (field.location === 'query') {\n          queryParams[field.name] = params[field.name];\n        } else if (field.location === 'path') {\n          pathParams[field.name] = params[field.name];\n        } else if (field.location === 'form') {\n          formParams[field.name] = params[field.name];\n          hasBody = true;\n        } else if (field.location === 'body') {\n          formParams = params[field.name];\n          hasBody = true;\n        }\n      }\n\n      // Check for any parameters that did not have a matching field\n      for (var property in params) {\n        if (params.hasOwnProperty(property) && !fieldNames.includes(property)) {\n          throw new errors.ParameterError('Unknown parameter: \"' + property + '\"');\n        }\n      }\n\n      var requestOptions = { method: method, headers: {} };\n\n      Object.assign(requestOptions.headers, this.headers);\n\n      if (hasBody) {\n        if (link.encoding === 'application/json') {\n          requestOptions.body = JSON.stringify(formParams);\n          requestOptions.headers['Content-Type'] = 'application/json';\n        } else if (link.encoding === 'multipart/form-data') {\n          var form = new this.FormData();\n\n          for (var paramKey in formParams) {\n            form.append(paramKey, formParams[paramKey]);\n          }\n          requestOptions.body = form;\n        } else if (link.encoding === 'application/x-www-form-urlencoded') {\n          var formBody = [];\n          for (var _paramKey in formParams) {\n            var encodedKey = encodeURIComponent(_paramKey);\n            var encodedValue = encodeURIComponent(formParams[_paramKey]);\n            formBody.push(encodedKey + '=' + encodedValue);\n          }\n          formBody = formBody.join('&');\n\n          requestOptions.body = formBody;\n          requestOptions.headers['Content-Type'] = 'application/x-www-form-urlencoded';\n        }\n      }\n\n      if (this.auth) {\n        requestOptions = this.auth.authenticate(requestOptions);\n      }\n\n      var parsedUrl = urlTemplate.parse(link.url);\n      parsedUrl = parsedUrl.expand(pathParams);\n      parsedUrl = new URL(parsedUrl);\n      parsedUrl.set('query', queryParams);\n\n      return {\n        url: parsedUrl.toString(),\n        options: requestOptions\n      };\n    }\n  }, {\n    key: 'action',\n    value: function action(link, decoders) {\n      var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n      var responseCallback = this.responseCallback;\n      var request = this.buildRequest(link, decoders, params);\n\n      if (this.requestCallback) {\n        this.requestCallback(request);\n      }\n\n      return this.fetch(request.url, request.options).then(function (response) {\n        if (response.status === 204) {\n          return;\n        }\n        return parseResponse(response, decoders, responseCallback).then(function (data) {\n          if (response.ok) {\n            return data;\n          } else {\n            var title = response.status + ' ' + response.statusText;\n            var error = new errors.ErrorMessage(title, data);\n            return Promise.reject(error);\n          }\n        });\n      });\n    }\n  }]);\n\n  return HTTPTransport;\n}();\n\nmodule.exports = {\n  HTTPTransport: HTTPTransport\n};\n\n},{\"../errors\":11,\"../utils\":15,\"isomorphic-fetch\":16,\"url-parse\":19,\"url-template\":21}],14:[function(require,module,exports){\n'use strict';\n\nvar http = require('./http');\n\nmodule.exports = {\n  HTTPTransport: http.HTTPTransport\n};\n\n},{\"./http\":13}],15:[function(require,module,exports){\n'use strict';\n\nvar URL = require('url-parse');\n\nvar determineTransport = function determineTransport(transports, url) {\n  var parsedUrl = new URL(url);\n  var scheme = parsedUrl.protocol.replace(':', '');\n\n  var _iteratorNormalCompletion = true;\n  var _didIteratorError = false;\n  var _iteratorError = undefined;\n\n  try {\n    for (var _iterator = transports[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n      var transport = _step.value;\n\n      if (transport.schemes.includes(scheme)) {\n        return transport;\n      }\n    }\n  } catch (err) {\n    _didIteratorError = true;\n    _iteratorError = err;\n  } finally {\n    try {\n      if (!_iteratorNormalCompletion && _iterator.return) {\n        _iterator.return();\n      }\n    } finally {\n      if (_didIteratorError) {\n        throw _iteratorError;\n      }\n    }\n  }\n\n  throw Error('Unsupported scheme in URL: ' + url);\n};\n\nvar negotiateDecoder = function negotiateDecoder(decoders, contentType) {\n  if (contentType === undefined || contentType === null) {\n    return decoders[0];\n  }\n\n  var fullType = contentType.toLowerCase().split(';')[0].trim();\n  var mainType = fullType.split('/')[0] + '/*';\n  var wildcardType = '*/*';\n  var acceptableTypes = [fullType, mainType, wildcardType];\n\n  var _iteratorNormalCompletion2 = true;\n  var _didIteratorError2 = false;\n  var _iteratorError2 = undefined;\n\n  try {\n    for (var _iterator2 = decoders[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {\n      var decoder = _step2.value;\n\n      if (acceptableTypes.includes(decoder.mediaType)) {\n        return decoder;\n      }\n    }\n  } catch (err) {\n    _didIteratorError2 = true;\n    _iteratorError2 = err;\n  } finally {\n    try {\n      if (!_iteratorNormalCompletion2 && _iterator2.return) {\n        _iterator2.return();\n      }\n    } finally {\n      if (_didIteratorError2) {\n        throw _iteratorError2;\n      }\n    }\n  }\n\n  throw Error('Unsupported media in Content-Type header: ' + contentType);\n};\n\nvar csrfSafeMethod = function csrfSafeMethod(method) {\n  // these HTTP methods do not require CSRF protection\n  return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)\n  );\n};\n\nmodule.exports = {\n  determineTransport: determineTransport,\n  negotiateDecoder: negotiateDecoder,\n  csrfSafeMethod: csrfSafeMethod\n};\n\n},{\"url-parse\":19}],16:[function(require,module,exports){\n// the whatwg-fetch polyfill installs the fetch() function\n// on the global object (window or self)\n//\n// Return that as the export for use in Webpack, Browserify etc.\nrequire('whatwg-fetch');\nmodule.exports = self.fetch.bind(self);\n\n},{\"whatwg-fetch\":22}],17:[function(require,module,exports){\n'use strict';\n\nvar has = Object.prototype.hasOwnProperty;\n\n/**\n * Simple query string parser.\n *\n * @param {String} query The query string that needs to be parsed.\n * @returns {Object}\n * @api public\n */\nfunction querystring(query) {\n  var parser = /([^=?&]+)=?([^&]*)/g\n    , result = {}\n    , part;\n\n  //\n  // Little nifty parsing hack, leverage the fact that RegExp.exec increments\n  // the lastIndex property so we can continue executing this loop until we've\n  // parsed all results.\n  //\n  for (;\n    part = parser.exec(query);\n    result[decodeURIComponent(part[1])] = decodeURIComponent(part[2])\n  );\n\n  return result;\n}\n\n/**\n * Transform a query string to an object.\n *\n * @param {Object} obj Object that should be transformed.\n * @param {String} prefix Optional prefix.\n * @returns {String}\n * @api public\n */\nfunction querystringify(obj, prefix) {\n  prefix = prefix || '';\n\n  var pairs = [];\n\n  //\n  // Optionally prefix with a '?' if needed\n  //\n  if ('string' !== typeof prefix) prefix = '?';\n\n  for (var key in obj) {\n    if (has.call(obj, key)) {\n      pairs.push(encodeURIComponent(key) +'='+ encodeURIComponent(obj[key]));\n    }\n  }\n\n  return pairs.length ? prefix + pairs.join('&') : '';\n}\n\n//\n// Expose the module.\n//\nexports.stringify = querystringify;\nexports.parse = querystring;\n\n},{}],18:[function(require,module,exports){\n'use strict';\n\n/**\n * Check if we're required to add a port number.\n *\n * @see https://url.spec.whatwg.org/#default-port\n * @param {Number|String} port Port number we need to check\n * @param {String} protocol Protocol we need to check against.\n * @returns {Boolean} Is it a default port for the given protocol\n * @api private\n */\nmodule.exports = function required(port, protocol) {\n  protocol = protocol.split(':')[0];\n  port = +port;\n\n  if (!port) return false;\n\n  switch (protocol) {\n    case 'http':\n    case 'ws':\n    return port !== 80;\n\n    case 'https':\n    case 'wss':\n    return port !== 443;\n\n    case 'ftp':\n    return port !== 21;\n\n    case 'gopher':\n    return port !== 70;\n\n    case 'file':\n    return false;\n  }\n\n  return port !== 0;\n};\n\n},{}],19:[function(require,module,exports){\n'use strict';\n\nvar required = require('requires-port')\n  , lolcation = require('./lolcation')\n  , qs = require('querystringify')\n  , protocolre = /^([a-z][a-z0-9.+-]*:)?(\\/\\/)?([\\S\\s]*)/i;\n\n/**\n * These are the parse rules for the URL parser, it informs the parser\n * about:\n *\n * 0. The char it Needs to parse, if it's a string it should be done using\n *    indexOf, RegExp using exec and NaN means set as current value.\n * 1. The property we should set when parsing this value.\n * 2. Indication if it's backwards or forward parsing, when set as number it's\n *    the value of extra chars that should be split off.\n * 3. Inherit from location if non existing in the parser.\n * 4. `toLowerCase` the resulting value.\n */\nvar rules = [\n  ['#', 'hash'],                        // Extract from the back.\n  ['?', 'query'],                       // Extract from the back.\n  ['/', 'pathname'],                    // Extract from the back.\n  ['@', 'auth', 1],                     // Extract from the front.\n  [NaN, 'host', undefined, 1, 1],       // Set left over value.\n  [/:(\\d+)$/, 'port', undefined, 1],    // RegExp the back.\n  [NaN, 'hostname', undefined, 1, 1]    // Set left over.\n];\n\n/**\n * @typedef ProtocolExtract\n * @type Object\n * @property {String} protocol Protocol matched in the URL, in lowercase.\n * @property {Boolean} slashes `true` if protocol is followed by \"//\", else `false`.\n * @property {String} rest Rest of the URL that is not part of the protocol.\n */\n\n/**\n * Extract protocol information from a URL with/without double slash (\"//\").\n *\n * @param {String} address URL we want to extract from.\n * @return {ProtocolExtract} Extracted information.\n * @api private\n */\nfunction extractProtocol(address) {\n  var match = protocolre.exec(address);\n\n  return {\n    protocol: match[1] ? match[1].toLowerCase() : '',\n    slashes: !!match[2],\n    rest: match[3]\n  };\n}\n\n/**\n * Resolve a relative URL pathname against a base URL pathname.\n *\n * @param {String} relative Pathname of the relative URL.\n * @param {String} base Pathname of the base URL.\n * @return {String} Resolved pathname.\n * @api private\n */\nfunction resolve(relative, base) {\n  var path = (base || '/').split('/').slice(0, -1).concat(relative.split('/'))\n    , i = path.length\n    , last = path[i - 1]\n    , unshift = false\n    , up = 0;\n\n  while (i--) {\n    if (path[i] === '.') {\n      path.splice(i, 1);\n    } else if (path[i] === '..') {\n      path.splice(i, 1);\n      up++;\n    } else if (up) {\n      if (i === 0) unshift = true;\n      path.splice(i, 1);\n      up--;\n    }\n  }\n\n  if (unshift) path.unshift('');\n  if (last === '.' || last === '..') path.push('');\n\n  return path.join('/');\n}\n\n/**\n * The actual URL instance. Instead of returning an object we've opted-in to\n * create an actual constructor as it's much more memory efficient and\n * faster and it pleases my OCD.\n *\n * @constructor\n * @param {String} address URL we want to parse.\n * @param {Object|String} location Location defaults for relative paths.\n * @param {Boolean|Function} parser Parser for the query string.\n * @api public\n */\nfunction URL(address, location, parser) {\n  if (!(this instanceof URL)) {\n    return new URL(address, location, parser);\n  }\n\n  var relative, extracted, parse, instruction, index, key\n    , instructions = rules.slice()\n    , type = typeof location\n    , url = this\n    , i = 0;\n\n  //\n  // The following if statements allows this module two have compatibility with\n  // 2 different API:\n  //\n  // 1. Node.js's `url.parse` api which accepts a URL, boolean as arguments\n  //    where the boolean indicates that the query string should also be parsed.\n  //\n  // 2. The `URL` interface of the browser which accepts a URL, object as\n  //    arguments. The supplied object will be used as default values / fall-back\n  //    for relative paths.\n  //\n  if ('object' !== type && 'string' !== type) {\n    parser = location;\n    location = null;\n  }\n\n  if (parser && 'function' !== typeof parser) parser = qs.parse;\n\n  location = lolcation(location);\n\n  //\n  // Extract protocol information before running the instructions.\n  //\n  extracted = extractProtocol(address || '');\n  relative = !extracted.protocol && !extracted.slashes;\n  url.slashes = extracted.slashes || relative && location.slashes;\n  url.protocol = extracted.protocol || location.protocol || '';\n  address = extracted.rest;\n\n  //\n  // When the authority component is absent the URL starts with a path\n  // component.\n  //\n  if (!extracted.slashes) instructions[2] = [/(.*)/, 'pathname'];\n\n  for (; i < instructions.length; i++) {\n    instruction = instructions[i];\n    parse = instruction[0];\n    key = instruction[1];\n\n    if (parse !== parse) {\n      url[key] = address;\n    } else if ('string' === typeof parse) {\n      if (~(index = address.indexOf(parse))) {\n        if ('number' === typeof instruction[2]) {\n          url[key] = address.slice(0, index);\n          address = address.slice(index + instruction[2]);\n        } else {\n          url[key] = address.slice(index);\n          address = address.slice(0, index);\n        }\n      }\n    } else if (index = parse.exec(address)) {\n      url[key] = index[1];\n      address = address.slice(0, index.index);\n    }\n\n    url[key] = url[key] || (\n      relative && instruction[3] ? location[key] || '' : ''\n    );\n\n    //\n    // Hostname, host and protocol should be lowercased so they can be used to\n    // create a proper `origin`.\n    //\n    if (instruction[4]) url[key] = url[key].toLowerCase();\n  }\n\n  //\n  // Also parse the supplied query string in to an object. If we're supplied\n  // with a custom parser as function use that instead of the default build-in\n  // parser.\n  //\n  if (parser) url.query = parser(url.query);\n\n  //\n  // If the URL is relative, resolve the pathname against the base URL.\n  //\n  if (\n      relative\n    && location.slashes\n    && url.pathname.charAt(0) !== '/'\n    && (url.pathname !== '' || location.pathname !== '')\n  ) {\n    url.pathname = resolve(url.pathname, location.pathname);\n  }\n\n  //\n  // We should not add port numbers if they are already the default port number\n  // for a given protocol. As the host also contains the port number we're going\n  // override it with the hostname which contains no port number.\n  //\n  if (!required(url.port, url.protocol)) {\n    url.host = url.hostname;\n    url.port = '';\n  }\n\n  //\n  // Parse down the `auth` for the username and password.\n  //\n  url.username = url.password = '';\n  if (url.auth) {\n    instruction = url.auth.split(':');\n    url.username = instruction[0] || '';\n    url.password = instruction[1] || '';\n  }\n\n  url.origin = url.protocol && url.host && url.protocol !== 'file:'\n    ? url.protocol +'//'+ url.host\n    : 'null';\n\n  //\n  // The href is just the compiled result.\n  //\n  url.href = url.toString();\n}\n\n/**\n * This is convenience method for changing properties in the URL instance to\n * insure that they all propagate correctly.\n *\n * @param {String} part          Property we need to adjust.\n * @param {Mixed} value          The newly assigned value.\n * @param {Boolean|Function} fn  When setting the query, it will be the function\n *                               used to parse the query.\n *                               When setting the protocol, double slash will be\n *                               removed from the final url if it is true.\n * @returns {URL}\n * @api public\n */\nURL.prototype.set = function set(part, value, fn) {\n  var url = this;\n\n  switch (part) {\n    case 'query':\n      if ('string' === typeof value && value.length) {\n        value = (fn || qs.parse)(value);\n      }\n\n      url[part] = value;\n      break;\n\n    case 'port':\n      url[part] = value;\n\n      if (!required(value, url.protocol)) {\n        url.host = url.hostname;\n        url[part] = '';\n      } else if (value) {\n        url.host = url.hostname +':'+ value;\n      }\n\n      break;\n\n    case 'hostname':\n      url[part] = value;\n\n      if (url.port) value += ':'+ url.port;\n      url.host = value;\n      break;\n\n    case 'host':\n      url[part] = value;\n\n      if (/:\\d+$/.test(value)) {\n        value = value.split(':');\n        url.port = value.pop();\n        url.hostname = value.join(':');\n      } else {\n        url.hostname = value;\n        url.port = '';\n      }\n\n      break;\n\n    case 'protocol':\n      url.protocol = value.toLowerCase();\n      url.slashes = !fn;\n      break;\n\n    case 'pathname':\n      url.pathname = value.length && value.charAt(0) !== '/' ? '/' + value : value;\n\n      break;\n\n    default:\n      url[part] = value;\n  }\n\n  for (var i = 0; i < rules.length; i++) {\n    var ins = rules[i];\n\n    if (ins[4]) url[ins[1]] = url[ins[1]].toLowerCase();\n  }\n\n  url.origin = url.protocol && url.host && url.protocol !== 'file:'\n    ? url.protocol +'//'+ url.host\n    : 'null';\n\n  url.href = url.toString();\n\n  return url;\n};\n\n/**\n * Transform the properties back in to a valid and full URL string.\n *\n * @param {Function} stringify Optional query stringify function.\n * @returns {String}\n * @api public\n */\nURL.prototype.toString = function toString(stringify) {\n  if (!stringify || 'function' !== typeof stringify) stringify = qs.stringify;\n\n  var query\n    , url = this\n    , protocol = url.protocol;\n\n  if (protocol && protocol.charAt(protocol.length - 1) !== ':') protocol += ':';\n\n  var result = protocol + (url.slashes ? '//' : '');\n\n  if (url.username) {\n    result += url.username;\n    if (url.password) result += ':'+ url.password;\n    result += '@';\n  }\n\n  result += url.host + url.pathname;\n\n  query = 'object' === typeof url.query ? stringify(url.query) : url.query;\n  if (query) result += '?' !== query.charAt(0) ? '?'+ query : query;\n\n  if (url.hash) result += url.hash;\n\n  return result;\n};\n\n//\n// Expose the URL parser and some additional properties that might be useful for\n// others or testing.\n//\nURL.extractProtocol = extractProtocol;\nURL.location = lolcation;\nURL.qs = qs;\n\nmodule.exports = URL;\n\n},{\"./lolcation\":20,\"querystringify\":17,\"requires-port\":18}],20:[function(require,module,exports){\n(function (global){\n'use strict';\n\nvar slashes = /^[A-Za-z][A-Za-z0-9+-.]*:\\/\\//;\n\n/**\n * These properties should not be copied or inherited from. This is only needed\n * for all non blob URL's as a blob URL does not include a hash, only the\n * origin.\n *\n * @type {Object}\n * @private\n */\nvar ignore = { hash: 1, query: 1 }\n  , URL;\n\n/**\n * The location object differs when your code is loaded through a normal page,\n * Worker or through a worker using a blob. And with the blobble begins the\n * trouble as the location object will contain the URL of the blob, not the\n * location of the page where our code is loaded in. The actual origin is\n * encoded in the `pathname` so we can thankfully generate a good \"default\"\n * location from it so we can generate proper relative URL's again.\n *\n * @param {Object|String} loc Optional default location object.\n * @returns {Object} lolcation object.\n * @api public\n */\nmodule.exports = function lolcation(loc) {\n  loc = loc || global.location || {};\n  URL = URL || require('./');\n\n  var finaldestination = {}\n    , type = typeof loc\n    , key;\n\n  if ('blob:' === loc.protocol) {\n    finaldestination = new URL(unescape(loc.pathname), {});\n  } else if ('string' === type) {\n    finaldestination = new URL(loc, {});\n    for (key in ignore) delete finaldestination[key];\n  } else if ('object' === type) {\n    for (key in loc) {\n      if (key in ignore) continue;\n      finaldestination[key] = loc[key];\n    }\n\n    if (finaldestination.slashes === undefined) {\n      finaldestination.slashes = slashes.test(loc.href);\n    }\n  }\n\n  return finaldestination;\n};\n\n}).call(this,typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n\n},{\"./\":19}],21:[function(require,module,exports){\n(function (root, factory) {\n    if (typeof exports === 'object') {\n        module.exports = factory();\n    } else if (typeof define === 'function' && define.amd) {\n        define([], factory);\n    } else {\n        root.urltemplate = factory();\n    }\n}(this, function () {\n  /**\n   * @constructor\n   */\n  function UrlTemplate() {\n  }\n\n  /**\n   * @private\n   * @param {string} str\n   * @return {string}\n   */\n  UrlTemplate.prototype.encodeReserved = function (str) {\n    return str.split(/(%[0-9A-Fa-f]{2})/g).map(function (part) {\n      if (!/%[0-9A-Fa-f]/.test(part)) {\n        part = encodeURI(part).replace(/%5B/g, '[').replace(/%5D/g, ']');\n      }\n      return part;\n    }).join('');\n  };\n\n  /**\n   * @private\n   * @param {string} str\n   * @return {string}\n   */\n  UrlTemplate.prototype.encodeUnreserved = function (str) {\n    return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n      return '%' + c.charCodeAt(0).toString(16).toUpperCase();\n    });\n  }\n\n  /**\n   * @private\n   * @param {string} operator\n   * @param {string} value\n   * @param {string} key\n   * @return {string}\n   */\n  UrlTemplate.prototype.encodeValue = function (operator, value, key) {\n    value = (operator === '+' || operator === '#') ? this.encodeReserved(value) : this.encodeUnreserved(value);\n\n    if (key) {\n      return this.encodeUnreserved(key) + '=' + value;\n    } else {\n      return value;\n    }\n  };\n\n  /**\n   * @private\n   * @param {*} value\n   * @return {boolean}\n   */\n  UrlTemplate.prototype.isDefined = function (value) {\n    return value !== undefined && value !== null;\n  };\n\n  /**\n   * @private\n   * @param {string}\n   * @return {boolean}\n   */\n  UrlTemplate.prototype.isKeyOperator = function (operator) {\n    return operator === ';' || operator === '&' || operator === '?';\n  };\n\n  /**\n   * @private\n   * @param {Object} context\n   * @param {string} operator\n   * @param {string} key\n   * @param {string} modifier\n   */\n  UrlTemplate.prototype.getValues = function (context, operator, key, modifier) {\n    var value = context[key],\n        result = [];\n\n    if (this.isDefined(value) && value !== '') {\n      if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {\n        value = value.toString();\n\n        if (modifier && modifier !== '*') {\n          value = value.substring(0, parseInt(modifier, 10));\n        }\n\n        result.push(this.encodeValue(operator, value, this.isKeyOperator(operator) ? key : null));\n      } else {\n        if (modifier === '*') {\n          if (Array.isArray(value)) {\n            value.filter(this.isDefined).forEach(function (value) {\n              result.push(this.encodeValue(operator, value, this.isKeyOperator(operator) ? key : null));\n            }, this);\n          } else {\n            Object.keys(value).forEach(function (k) {\n              if (this.isDefined(value[k])) {\n                result.push(this.encodeValue(operator, value[k], k));\n              }\n            }, this);\n          }\n        } else {\n          var tmp = [];\n\n          if (Array.isArray(value)) {\n            value.filter(this.isDefined).forEach(function (value) {\n              tmp.push(this.encodeValue(operator, value));\n            }, this);\n          } else {\n            Object.keys(value).forEach(function (k) {\n              if (this.isDefined(value[k])) {\n                tmp.push(this.encodeUnreserved(k));\n                tmp.push(this.encodeValue(operator, value[k].toString()));\n              }\n            }, this);\n          }\n\n          if (this.isKeyOperator(operator)) {\n            result.push(this.encodeUnreserved(key) + '=' + tmp.join(','));\n          } else if (tmp.length !== 0) {\n            result.push(tmp.join(','));\n          }\n        }\n      }\n    } else {\n      if (operator === ';') {\n        if (this.isDefined(value)) {\n          result.push(this.encodeUnreserved(key));\n        }\n      } else if (value === '' && (operator === '&' || operator === '?')) {\n        result.push(this.encodeUnreserved(key) + '=');\n      } else if (value === '') {\n        result.push('');\n      }\n    }\n    return result;\n  };\n\n  /**\n   * @param {string} template\n   * @return {function(Object):string}\n   */\n  UrlTemplate.prototype.parse = function (template) {\n    var that = this;\n    var operators = ['+', '#', '.', '/', ';', '?', '&'];\n\n    return {\n      expand: function (context) {\n        return template.replace(/\\{([^\\{\\}]+)\\}|([^\\{\\}]+)/g, function (_, expression, literal) {\n          if (expression) {\n            var operator = null,\n                values = [];\n\n            if (operators.indexOf(expression.charAt(0)) !== -1) {\n              operator = expression.charAt(0);\n              expression = expression.substr(1);\n            }\n\n            expression.split(/,/g).forEach(function (variable) {\n              var tmp = /([^:\\*]*)(?::(\\d+)|(\\*))?/.exec(variable);\n              values.push.apply(values, that.getValues(context, operator, tmp[1], tmp[2] || tmp[3]));\n            });\n\n            if (operator && operator !== '+') {\n              var separator = ',';\n\n              if (operator === '?') {\n                separator = '&';\n              } else if (operator !== '#') {\n                separator = operator;\n              }\n              return (values.length !== 0 ? operator : '') + values.join(separator);\n            } else {\n              return values.join(',');\n            }\n          } else {\n            return that.encodeReserved(literal);\n          }\n        });\n      }\n    };\n  };\n\n  return new UrlTemplate();\n}));\n\n},{}],22:[function(require,module,exports){\n(function(self) {\n  'use strict';\n\n  if (self.fetch) {\n    return\n  }\n\n  var support = {\n    searchParams: 'URLSearchParams' in self,\n    iterable: 'Symbol' in self && 'iterator' in Symbol,\n    blob: 'FileReader' in self && 'Blob' in self && (function() {\n      try {\n        new Blob()\n        return true\n      } catch(e) {\n        return false\n      }\n    })(),\n    formData: 'FormData' in self,\n    arrayBuffer: 'ArrayBuffer' in self\n  }\n\n  if (support.arrayBuffer) {\n    var viewClasses = [\n      '[object Int8Array]',\n      '[object Uint8Array]',\n      '[object Uint8ClampedArray]',\n      '[object Int16Array]',\n      '[object Uint16Array]',\n      '[object Int32Array]',\n      '[object Uint32Array]',\n      '[object Float32Array]',\n      '[object Float64Array]'\n    ]\n\n    var isDataView = function(obj) {\n      return obj && DataView.prototype.isPrototypeOf(obj)\n    }\n\n    var isArrayBufferView = ArrayBuffer.isView || function(obj) {\n      return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1\n    }\n  }\n\n  function normalizeName(name) {\n    if (typeof name !== 'string') {\n      name = String(name)\n    }\n    if (/[^a-z0-9\\-#$%&'*+.\\^_`|~]/i.test(name)) {\n      throw new TypeError('Invalid character in header field name')\n    }\n    return name.toLowerCase()\n  }\n\n  function normalizeValue(value) {\n    if (typeof value !== 'string') {\n      value = String(value)\n    }\n    return value\n  }\n\n  // Build a destructive iterator for the value list\n  function iteratorFor(items) {\n    var iterator = {\n      next: function() {\n        var value = items.shift()\n        return {done: value === undefined, value: value}\n      }\n    }\n\n    if (support.iterable) {\n      iterator[Symbol.iterator] = function() {\n        return iterator\n      }\n    }\n\n    return iterator\n  }\n\n  function Headers(headers) {\n    this.map = {}\n\n    if (headers instanceof Headers) {\n      headers.forEach(function(value, name) {\n        this.append(name, value)\n      }, this)\n\n    } else if (headers) {\n      Object.getOwnPropertyNames(headers).forEach(function(name) {\n        this.append(name, headers[name])\n      }, this)\n    }\n  }\n\n  Headers.prototype.append = function(name, value) {\n    name = normalizeName(name)\n    value = normalizeValue(value)\n    var oldValue = this.map[name]\n    this.map[name] = oldValue ? oldValue+','+value : value\n  }\n\n  Headers.prototype['delete'] = function(name) {\n    delete this.map[normalizeName(name)]\n  }\n\n  Headers.prototype.get = function(name) {\n    name = normalizeName(name)\n    return this.has(name) ? this.map[name] : null\n  }\n\n  Headers.prototype.has = function(name) {\n    return this.map.hasOwnProperty(normalizeName(name))\n  }\n\n  Headers.prototype.set = function(name, value) {\n    this.map[normalizeName(name)] = normalizeValue(value)\n  }\n\n  Headers.prototype.forEach = function(callback, thisArg) {\n    for (var name in this.map) {\n      if (this.map.hasOwnProperty(name)) {\n        callback.call(thisArg, this.map[name], name, this)\n      }\n    }\n  }\n\n  Headers.prototype.keys = function() {\n    var items = []\n    this.forEach(function(value, name) { items.push(name) })\n    return iteratorFor(items)\n  }\n\n  Headers.prototype.values = function() {\n    var items = []\n    this.forEach(function(value) { items.push(value) })\n    return iteratorFor(items)\n  }\n\n  Headers.prototype.entries = function() {\n    var items = []\n    this.forEach(function(value, name) { items.push([name, value]) })\n    return iteratorFor(items)\n  }\n\n  if (support.iterable) {\n    Headers.prototype[Symbol.iterator] = Headers.prototype.entries\n  }\n\n  function consumed(body) {\n    if (body.bodyUsed) {\n      return Promise.reject(new TypeError('Already read'))\n    }\n    body.bodyUsed = true\n  }\n\n  function fileReaderReady(reader) {\n    return new Promise(function(resolve, reject) {\n      reader.onload = function() {\n        resolve(reader.result)\n      }\n      reader.onerror = function() {\n        reject(reader.error)\n      }\n    })\n  }\n\n  function readBlobAsArrayBuffer(blob) {\n    var reader = new FileReader()\n    var promise = fileReaderReady(reader)\n    reader.readAsArrayBuffer(blob)\n    return promise\n  }\n\n  function readBlobAsText(blob) {\n    var reader = new FileReader()\n    var promise = fileReaderReady(reader)\n    reader.readAsText(blob)\n    return promise\n  }\n\n  function bufferClone(buf) {\n    if (buf.slice) {\n      return buf.slice(0)\n    } else {\n      var view = new Uint8Array(buf.byteLength)\n      view.set(new Uint8Array(buf))\n      return view.buffer\n    }\n  }\n\n  function Body() {\n    this.bodyUsed = false\n\n    this._initBody = function(body) {\n      this._bodyInit = body\n      if (!body) {\n        this._bodyText = ''\n      } else if (typeof body === 'string') {\n        this._bodyText = body\n      } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {\n        this._bodyBlob = body\n      } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {\n        this._bodyFormData = body\n      } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n        this._bodyText = body.toString()\n      } else if (support.arrayBuffer && support.blob && isDataView(body)) {\n        this._bodyArrayBuffer = bufferClone(body.buffer)\n        // IE 10-11 can't handle a DataView body.\n        this._bodyInit = new Blob([this._bodyArrayBuffer])\n      } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {\n        this._bodyArrayBuffer = bufferClone(body)\n      } else {\n        throw new Error('unsupported BodyInit type')\n      }\n\n      if (!this.headers.get('content-type')) {\n        if (typeof body === 'string') {\n          this.headers.set('content-type', 'text/plain;charset=UTF-8')\n        } else if (this._bodyBlob && this._bodyBlob.type) {\n          this.headers.set('content-type', this._bodyBlob.type)\n        } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n          this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8')\n        }\n      }\n    }\n\n    if (support.blob) {\n      this.blob = function() {\n        var rejected = consumed(this)\n        if (rejected) {\n          return rejected\n        }\n\n        if (this._bodyBlob) {\n          return Promise.resolve(this._bodyBlob)\n        } else if (this._bodyArrayBuffer) {\n          return Promise.resolve(new Blob([this._bodyArrayBuffer]))\n        } else if (this._bodyFormData) {\n          throw new Error('could not read FormData body as blob')\n        } else {\n          return Promise.resolve(new Blob([this._bodyText]))\n        }\n      }\n    }\n\n    this.text = function() {\n      var rejected = consumed(this)\n      if (rejected) {\n        return rejected\n      }\n\n      if (this._bodyBlob) {\n        return readBlobAsText(this._bodyBlob)\n      } else if (this._bodyArrayBuffer) {\n        var view = new Uint8Array(this._bodyArrayBuffer)\n        var str = String.fromCharCode.apply(null, view)\n        return Promise.resolve(str)\n      } else if (this._bodyFormData) {\n        throw new Error('could not read FormData body as text')\n      } else {\n        return Promise.resolve(this._bodyText)\n      }\n    }\n\n    if (support.arrayBuffer) {\n      this.arrayBuffer = function() {\n        if (this._bodyArrayBuffer) {\n          return consumed(this) || Promise.resolve(this._bodyArrayBuffer)\n        } else {\n          return this.blob().then(readBlobAsArrayBuffer)\n        }\n      }\n    }\n\n    if (support.formData) {\n      this.formData = function() {\n        return this.text().then(decode)\n      }\n    }\n\n    this.json = function() {\n      return this.text().then(JSON.parse)\n    }\n\n    return this\n  }\n\n  // HTTP methods whose capitalization should be normalized\n  var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']\n\n  function normalizeMethod(method) {\n    var upcased = method.toUpperCase()\n    return (methods.indexOf(upcased) > -1) ? upcased : method\n  }\n\n  function Request(input, options) {\n    options = options || {}\n    var body = options.body\n\n    if (typeof input === 'string') {\n      this.url = input\n    } else {\n      if (input.bodyUsed) {\n        throw new TypeError('Already read')\n      }\n      this.url = input.url\n      this.credentials = input.credentials\n      if (!options.headers) {\n        this.headers = new Headers(input.headers)\n      }\n      this.method = input.method\n      this.mode = input.mode\n      if (!body && input._bodyInit != null) {\n        body = input._bodyInit\n        input.bodyUsed = true\n      }\n    }\n\n    this.credentials = options.credentials || this.credentials || 'omit'\n    if (options.headers || !this.headers) {\n      this.headers = new Headers(options.headers)\n    }\n    this.method = normalizeMethod(options.method || this.method || 'GET')\n    this.mode = options.mode || this.mode || null\n    this.referrer = null\n\n    if ((this.method === 'GET' || this.method === 'HEAD') && body) {\n      throw new TypeError('Body not allowed for GET or HEAD requests')\n    }\n    this._initBody(body)\n  }\n\n  Request.prototype.clone = function() {\n    return new Request(this, { body: this._bodyInit })\n  }\n\n  function decode(body) {\n    var form = new FormData()\n    body.trim().split('&').forEach(function(bytes) {\n      if (bytes) {\n        var split = bytes.split('=')\n        var name = split.shift().replace(/\\+/g, ' ')\n        var value = split.join('=').replace(/\\+/g, ' ')\n        form.append(decodeURIComponent(name), decodeURIComponent(value))\n      }\n    })\n    return form\n  }\n\n  function parseHeaders(rawHeaders) {\n    var headers = new Headers()\n    rawHeaders.split('\\r\\n').forEach(function(line) {\n      var parts = line.split(':')\n      var key = parts.shift().trim()\n      if (key) {\n        var value = parts.join(':').trim()\n        headers.append(key, value)\n      }\n    })\n    return headers\n  }\n\n  Body.call(Request.prototype)\n\n  function Response(bodyInit, options) {\n    if (!options) {\n      options = {}\n    }\n\n    this.type = 'default'\n    this.status = 'status' in options ? options.status : 200\n    this.ok = this.status >= 200 && this.status < 300\n    this.statusText = 'statusText' in options ? options.statusText : 'OK'\n    this.headers = new Headers(options.headers)\n    this.url = options.url || ''\n    this._initBody(bodyInit)\n  }\n\n  Body.call(Response.prototype)\n\n  Response.prototype.clone = function() {\n    return new Response(this._bodyInit, {\n      status: this.status,\n      statusText: this.statusText,\n      headers: new Headers(this.headers),\n      url: this.url\n    })\n  }\n\n  Response.error = function() {\n    var response = new Response(null, {status: 0, statusText: ''})\n    response.type = 'error'\n    return response\n  }\n\n  var redirectStatuses = [301, 302, 303, 307, 308]\n\n  Response.redirect = function(url, status) {\n    if (redirectStatuses.indexOf(status) === -1) {\n      throw new RangeError('Invalid status code')\n    }\n\n    return new Response(null, {status: status, headers: {location: url}})\n  }\n\n  self.Headers = Headers\n  self.Request = Request\n  self.Response = Response\n\n  self.fetch = function(input, init) {\n    return new Promise(function(resolve, reject) {\n      var request = new Request(input, init)\n      var xhr = new XMLHttpRequest()\n\n      xhr.onload = function() {\n        var options = {\n          status: xhr.status,\n          statusText: xhr.statusText,\n          headers: parseHeaders(xhr.getAllResponseHeaders() || '')\n        }\n        options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL')\n        var body = 'response' in xhr ? xhr.response : xhr.responseText\n        resolve(new Response(body, options))\n      }\n\n      xhr.onerror = function() {\n        reject(new TypeError('Network request failed'))\n      }\n\n      xhr.ontimeout = function() {\n        reject(new TypeError('Network request failed'))\n      }\n\n      xhr.open(request.method, request.url, true)\n\n      if (request.credentials === 'include') {\n        xhr.withCredentials = true\n      }\n\n      if ('responseType' in xhr && support.blob) {\n        xhr.responseType = 'blob'\n      }\n\n      request.headers.forEach(function(value, name) {\n        xhr.setRequestHeader(name, value)\n      })\n\n      xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit)\n    })\n  }\n  self.fetch.polyfill = true\n})(typeof self !== 'undefined' ? self : this);\n\n},{}]},{},[12])(12)\n});\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm5vZGVfbW9kdWxlcy9icm93c2VyLXBhY2svX3ByZWx1ZGUuanMiLCJsaWIvYXV0aC9iYXNpYy5qcyIsImxpYi9hdXRoL2luZGV4LmpzIiwibGliL2F1dGgvc2Vzc2lvbi5qcyIsImxpYi9hdXRoL3Rva2VuLmpzIiwibGliL2NsaWVudC5qcyIsImxpYi9jb2RlY3MvY29yZWpzb24uanMiLCJsaWIvY29kZWNzL2luZGV4LmpzIiwibGliL2NvZGVjcy9qc29uLmpzIiwibGliL2NvZGVjcy90ZXh0LmpzIiwibGliL2RvY3VtZW50LmpzIiwibGliL2Vycm9ycy5qcyIsImxpYi9pbmRleC5qcyIsImxpYi90cmFuc3BvcnRzL2h0dHAuanMiLCJsaWIvdHJhbnNwb3J0cy9pbmRleC5qcyIsImxpYi91dGlscy5qcyIsIm5vZGVfbW9kdWxlcy9pc29tb3JwaGljLWZldGNoL2ZldGNoLW5wbS1icm93c2VyaWZ5LmpzIiwibm9kZV9tb2R1bGVzL3F1ZXJ5c3RyaW5naWZ5L2luZGV4LmpzIiwibm9kZV9tb2R1bGVzL3JlcXVpcmVzLXBvcnQvaW5kZXguanMiLCJub2RlX21vZHVsZXMvdXJsLXBhcnNlL2luZGV4LmpzIiwibm9kZV9tb2R1bGVzL3VybC1wYXJzZS9sb2xjYXRpb24uanMiLCJub2RlX21vZHVsZXMvdXJsLXRlbXBsYXRlL2xpYi91cmwtdGVtcGxhdGUuanMiLCJub2RlX21vZHVsZXMvd2hhdHdnLWZldGNoL2ZldGNoLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O0lDQU0sbUI7QUFDSixpQ0FBMkI7QUFBQSxRQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFBQTs7QUFDekIsUUFBTSxXQUFXLFFBQVEsUUFBekI7QUFDQSxRQUFNLFdBQVcsUUFBUSxRQUF6QjtBQUNBLFFBQU0sT0FBTyxPQUFPLElBQVAsQ0FBWSxXQUFXLEdBQVgsR0FBaUIsUUFBN0IsQ0FBYjtBQUNBLFNBQUssSUFBTCxHQUFZLFdBQVcsSUFBdkI7QUFDRDs7OztpQ0FFYSxPLEVBQVM7QUFDckIsY0FBUSxPQUFSLENBQWdCLGVBQWhCLElBQW1DLEtBQUssSUFBeEM7QUFDQSxhQUFPLE9BQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsdUJBQXFCO0FBRE4sQ0FBakI7Ozs7O0FDZEEsSUFBTSxRQUFRLFFBQVEsU0FBUixDQUFkO0FBQ0EsSUFBTSxVQUFVLFFBQVEsV0FBUixDQUFoQjtBQUNBLElBQU0sUUFBUSxRQUFRLFNBQVIsQ0FBZDs7QUFFQSxPQUFPLE9BQVAsR0FBaUI7QUFDZix1QkFBcUIsTUFBTSxtQkFEWjtBQUVmLHlCQUF1QixRQUFRLHFCQUZoQjtBQUdmLHVCQUFxQixNQUFNO0FBSFosQ0FBakI7Ozs7Ozs7OztBQ0pBLElBQU0sUUFBUSxRQUFRLFVBQVIsQ0FBZDs7QUFFQSxTQUFTLElBQVQsQ0FBZSxHQUFmLEVBQW9CO0FBQ2xCLFNBQU8sSUFBSSxPQUFKLENBQVksUUFBWixFQUFzQixFQUF0QixFQUEwQixPQUExQixDQUFrQyxRQUFsQyxFQUE0QyxFQUE1QyxDQUFQO0FBQ0Q7O0FBRUQsU0FBUyxTQUFULENBQW9CLFVBQXBCLEVBQWdDLFlBQWhDLEVBQThDO0FBQzVDLGlCQUFlLGdCQUFnQixPQUFPLFFBQVAsQ0FBZ0IsTUFBL0M7QUFDQSxNQUFJLGdCQUFnQixpQkFBaUIsRUFBckMsRUFBeUM7QUFDdkMsUUFBTSxVQUFVLGFBQWEsS0FBYixDQUFtQixHQUFuQixDQUFoQjtBQUNBLFNBQUssSUFBSSxJQUFJLENBQWIsRUFBZ0IsSUFBSSxRQUFRLE1BQTVCLEVBQW9DLEdBQXBDLEVBQXlDO0FBQ3ZDLFVBQU0sU0FBUyxLQUFLLFFBQVEsQ0FBUixDQUFMLENBQWY7QUFDQTtBQUNBLFVBQUksT0FBTyxTQUFQLENBQWlCLENBQWpCLEVBQW9CLFdBQVcsTUFBWCxHQUFvQixDQUF4QyxNQUFnRCxhQUFhLEdBQWpFLEVBQXVFO0FBQ3JFLGVBQU8sbUJBQW1CLE9BQU8sU0FBUCxDQUFpQixXQUFXLE1BQVgsR0FBb0IsQ0FBckMsQ0FBbkIsQ0FBUDtBQUNEO0FBQ0Y7QUFDRjtBQUNELFNBQU8sSUFBUDtBQUNEOztJQUVLLHFCO0FBQ0osbUNBQTJCO0FBQUEsUUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ3pCLFNBQUssU0FBTCxHQUFpQixVQUFVLFFBQVEsY0FBbEIsRUFBa0MsUUFBUSxZQUExQyxDQUFqQjtBQUNBLFNBQUssY0FBTCxHQUFzQixRQUFRLGNBQTlCO0FBQ0Q7Ozs7aUNBRWEsTyxFQUFTO0FBQ3JCLGNBQVEsV0FBUixHQUFzQixhQUF0QjtBQUNBLFVBQUksS0FBSyxTQUFMLElBQWtCLENBQUMsTUFBTSxjQUFOLENBQXFCLFFBQVEsTUFBN0IsQ0FBdkIsRUFBNkQ7QUFDM0QsZ0JBQVEsT0FBUixDQUFnQixLQUFLLGNBQXJCLElBQXVDLEtBQUssU0FBNUM7QUFDRDtBQUNELGFBQU8sT0FBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZix5QkFBdUI7QUFEUixDQUFqQjs7Ozs7Ozs7O0lDcENNLG1CO0FBQ0osaUNBQTJCO0FBQUEsUUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ3pCLFNBQUssS0FBTCxHQUFhLFFBQVEsS0FBckI7QUFDQSxTQUFLLE1BQUwsR0FBYyxRQUFRLE1BQVIsSUFBa0IsUUFBaEM7QUFDRDs7OztpQ0FFYSxPLEVBQVM7QUFDckIsY0FBUSxPQUFSLENBQWdCLGVBQWhCLElBQW1DLEtBQUssTUFBTCxHQUFjLEdBQWQsR0FBb0IsS0FBSyxLQUE1RDtBQUNBLGFBQU8sT0FBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZix1QkFBcUI7QUFETixDQUFqQjs7Ozs7Ozs7O0FDWkEsSUFBTSxXQUFXLFFBQVEsWUFBUixDQUFqQjtBQUNBLElBQU0sU0FBUyxRQUFRLFVBQVIsQ0FBZjtBQUNBLElBQU0sU0FBUyxRQUFRLFVBQVIsQ0FBZjtBQUNBLElBQU0sYUFBYSxRQUFRLGNBQVIsQ0FBbkI7QUFDQSxJQUFNLFFBQVEsUUFBUSxTQUFSLENBQWQ7O0FBRUEsU0FBUyxVQUFULENBQXFCLElBQXJCLEVBQTJCLElBQTNCLEVBQWlDO0FBQUE7QUFBQTtBQUFBOztBQUFBO0FBQy9CLHlCQUFnQixJQUFoQiw4SEFBc0I7QUFBQSxVQUFiLEdBQWE7O0FBQ3BCLFVBQUksZ0JBQWdCLFNBQVMsUUFBN0IsRUFBdUM7QUFDckMsZUFBTyxLQUFLLE9BQUwsQ0FBYSxHQUFiLENBQVA7QUFDRCxPQUZELE1BRU87QUFDTCxlQUFPLEtBQUssR0FBTCxDQUFQO0FBQ0Q7QUFDRCxVQUFJLFNBQVMsU0FBYixFQUF3QjtBQUN0QixjQUFNLElBQUksT0FBTyxlQUFYLDJCQUFtRCxLQUFLLFNBQUwsQ0FBZSxJQUFmLENBQW5ELENBQU47QUFDRDtBQUNGO0FBVjhCO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBVy9CLE1BQUksRUFBRSxnQkFBZ0IsU0FBUyxJQUEzQixDQUFKLEVBQXNDO0FBQ3BDLFVBQU0sSUFBSSxPQUFPLGVBQVgsMkJBQW1ELEtBQUssU0FBTCxDQUFlLElBQWYsQ0FBbkQsQ0FBTjtBQUNEO0FBQ0QsU0FBTyxJQUFQO0FBQ0Q7O0lBRUssTTtBQUNKLG9CQUEyQjtBQUFBLFFBQWQsT0FBYyx1RUFBSixFQUFJOztBQUFBOztBQUN6QixRQUFNLG1CQUFtQjtBQUN2QixZQUFNLFFBQVEsSUFBUixJQUFnQixJQURDO0FBRXZCLGVBQVMsUUFBUSxPQUFSLElBQW1CLEVBRkw7QUFHdkIsdUJBQWlCLFFBQVEsZUFIRjtBQUl2Qix3QkFBa0IsUUFBUTtBQUpILEtBQXpCOztBQU9BLFNBQUssUUFBTCxHQUFnQixRQUFRLFFBQVIsSUFBb0IsQ0FBQyxJQUFJLE9BQU8sYUFBWCxFQUFELEVBQTZCLElBQUksT0FBTyxTQUFYLEVBQTdCLEVBQXFELElBQUksT0FBTyxTQUFYLEVBQXJELENBQXBDO0FBQ0EsU0FBSyxVQUFMLEdBQWtCLFFBQVEsVUFBUixJQUFzQixDQUFDLElBQUksV0FBVyxhQUFmLENBQTZCLGdCQUE3QixDQUFELENBQXhDO0FBQ0Q7Ozs7MkJBRU8sUSxFQUFVLEksRUFBbUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDbkMsVUFBTSxPQUFPLFdBQVcsUUFBWCxFQUFxQixJQUFyQixDQUFiO0FBQ0EsVUFBTSxZQUFZLE1BQU0sa0JBQU4sQ0FBeUIsS0FBSyxVQUE5QixFQUEwQyxLQUFLLEdBQS9DLENBQWxCO0FBQ0EsYUFBTyxVQUFVLE1BQVYsQ0FBaUIsSUFBakIsRUFBdUIsS0FBSyxRQUE1QixFQUFzQyxNQUF0QyxDQUFQO0FBQ0Q7Ozt3QkFFSSxHLEVBQUs7QUFDUixVQUFNLE9BQU8sSUFBSSxTQUFTLElBQWIsQ0FBa0IsR0FBbEIsRUFBdUIsS0FBdkIsQ0FBYjtBQUNBLFVBQU0sWUFBWSxNQUFNLGtCQUFOLENBQXlCLEtBQUssVUFBOUIsRUFBMEMsR0FBMUMsQ0FBbEI7QUFDQSxhQUFPLFVBQVUsTUFBVixDQUFpQixJQUFqQixFQUF1QixLQUFLLFFBQTVCLENBQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsVUFBUTtBQURPLENBQWpCOzs7Ozs7Ozs7OztBQ2pEQSxJQUFNLFdBQVcsUUFBUSxhQUFSLENBQWpCO0FBQ0EsSUFBTSxNQUFNLFFBQVEsV0FBUixDQUFaOztBQUVBLFNBQVMsV0FBVCxDQUFzQixHQUF0QixFQUEyQjtBQUN6QixNQUFJLElBQUksS0FBSixDQUFVLGdCQUFWLENBQUosRUFBaUM7QUFDL0IsV0FBTyxJQUFJLFNBQUosQ0FBYyxDQUFkLENBQVA7QUFDRDtBQUNELFNBQU8sR0FBUDtBQUNEOztBQUVELFNBQVMsU0FBVCxDQUFvQixHQUFwQixFQUF5QixHQUF6QixFQUE4QjtBQUM1QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLE9BQVEsS0FBUixLQUFtQixRQUF2QixFQUFpQztBQUMvQixXQUFPLEtBQVA7QUFDRDtBQUNELFNBQU8sRUFBUDtBQUNEOztBQUVELFNBQVMsVUFBVCxDQUFxQixHQUFyQixFQUEwQixHQUExQixFQUErQjtBQUM3QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLE9BQVEsS0FBUixLQUFtQixTQUF2QixFQUFrQztBQUNoQyxXQUFPLEtBQVA7QUFDRDtBQUNELFNBQU8sS0FBUDtBQUNEOztBQUVELFNBQVMsU0FBVCxDQUFvQixHQUFwQixFQUF5QixHQUF6QixFQUE4QjtBQUM1QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLFFBQVEsS0FBUix5Q0FBUSxLQUFSLE9BQW1CLFFBQXZCLEVBQWlDO0FBQy9CLFdBQU8sS0FBUDtBQUNEO0FBQ0QsU0FBTyxFQUFQO0FBQ0Q7O0FBRUQsU0FBUyxRQUFULENBQW1CLEdBQW5CLEVBQXdCLEdBQXhCLEVBQTZCO0FBQzNCLE1BQU0sUUFBUSxJQUFJLEdBQUosQ0FBZDtBQUNBLE1BQUksaUJBQWlCLEtBQXJCLEVBQTRCO0FBQzFCLFdBQU8sS0FBUDtBQUNEO0FBQ0QsU0FBTyxFQUFQO0FBQ0Q7O0FBRUQsU0FBUyxVQUFULENBQXFCLElBQXJCLEVBQTJCLE9BQTNCLEVBQW9DO0FBQ2xDLE1BQU0sV0FBVyxDQUFDLE9BQUQsRUFBVSxPQUFWLENBQWpCO0FBQ0EsTUFBSSxVQUFVLEVBQWQ7QUFDQSxPQUFLLElBQUksUUFBVCxJQUFxQixJQUFyQixFQUEyQjtBQUN6QixRQUFJLEtBQUssY0FBTCxDQUFvQixRQUFwQixLQUFpQyxDQUFDLFNBQVMsUUFBVCxDQUFrQixRQUFsQixDQUF0QyxFQUFtRTtBQUNqRSxVQUFNLE1BQU0sWUFBWSxRQUFaLENBQVo7QUFDQSxVQUFNLFFBQVEsZ0JBQWdCLEtBQUssUUFBTCxDQUFoQixFQUFnQyxPQUFoQyxDQUFkO0FBQ0EsY0FBUSxHQUFSLElBQWUsS0FBZjtBQUNEO0FBQ0Y7QUFDRCxTQUFPLE9BQVA7QUFDRDs7QUFFRCxTQUFTLGVBQVQsQ0FBMEIsSUFBMUIsRUFBZ0MsT0FBaEMsRUFBeUM7QUFDdkMsTUFBTSxXQUFXLGdCQUFnQixNQUFoQixJQUEwQixFQUFFLGdCQUFnQixLQUFsQixDQUEzQzs7QUFFQSxNQUFJLFlBQVksS0FBSyxLQUFMLEtBQWUsVUFBL0IsRUFBMkM7QUFDekM7QUFDQSxRQUFNLE9BQU8sVUFBVSxJQUFWLEVBQWdCLE9BQWhCLENBQWI7QUFDQSxRQUFNLGNBQWMsVUFBVSxJQUFWLEVBQWdCLEtBQWhCLENBQXBCO0FBQ0EsUUFBTSxNQUFNLGNBQWMsSUFBSSxXQUFKLEVBQWlCLE9BQWpCLEVBQTBCLFFBQTFCLEVBQWQsR0FBcUQsRUFBakU7QUFDQSxRQUFNLFFBQVEsVUFBVSxJQUFWLEVBQWdCLE9BQWhCLENBQWQ7QUFDQSxRQUFNLGNBQWMsVUFBVSxJQUFWLEVBQWdCLGFBQWhCLENBQXBCO0FBQ0EsUUFBTSxVQUFVLFdBQVcsSUFBWCxFQUFpQixHQUFqQixDQUFoQjtBQUNBLFdBQU8sSUFBSSxTQUFTLFFBQWIsQ0FBc0IsR0FBdEIsRUFBMkIsS0FBM0IsRUFBa0MsV0FBbEMsRUFBK0MsT0FBL0MsQ0FBUDtBQUNELEdBVEQsTUFTTyxJQUFJLFlBQVksS0FBSyxLQUFMLEtBQWUsTUFBL0IsRUFBdUM7QUFDNUM7QUFDQSxRQUFNLGVBQWMsVUFBVSxJQUFWLEVBQWdCLEtBQWhCLENBQXBCO0FBQ0EsUUFBTSxPQUFNLGVBQWMsSUFBSSxZQUFKLEVBQWlCLE9BQWpCLEVBQTBCLFFBQTFCLEVBQWQsR0FBcUQsRUFBakU7QUFDQSxRQUFNLFNBQVMsVUFBVSxJQUFWLEVBQWdCLFFBQWhCLEtBQTZCLEtBQTVDO0FBQ0EsUUFBTSxTQUFRLFVBQVUsSUFBVixFQUFnQixPQUFoQixDQUFkO0FBQ0EsUUFBTSxlQUFjLFVBQVUsSUFBVixFQUFnQixhQUFoQixDQUFwQjtBQUNBLFFBQU0sYUFBYSxTQUFTLElBQVQsRUFBZSxRQUFmLENBQW5CO0FBQ0EsUUFBSSxTQUFTLEVBQWI7QUFDQSxTQUFLLElBQUksTUFBTSxDQUFWLEVBQWEsTUFBTSxXQUFXLE1BQW5DLEVBQTJDLE1BQU0sR0FBakQsRUFBc0QsS0FBdEQsRUFBNkQ7QUFDM0QsVUFBSSxRQUFRLFdBQVcsR0FBWCxDQUFaO0FBQ0EsVUFBSSxPQUFPLFVBQVUsS0FBVixFQUFpQixNQUFqQixDQUFYO0FBQ0EsVUFBSSxXQUFXLFdBQVcsS0FBWCxFQUFrQixVQUFsQixDQUFmO0FBQ0EsVUFBSSxXQUFXLFVBQVUsS0FBVixFQUFpQixVQUFqQixDQUFmO0FBQ0EsVUFBSSxtQkFBbUIsVUFBVSxLQUFWLEVBQWlCLGtCQUFqQixDQUF2QjtBQUNBLFVBQUksUUFBUSxJQUFJLFNBQVMsS0FBYixDQUFtQixJQUFuQixFQUF5QixRQUF6QixFQUFtQyxRQUFuQyxFQUE2QyxnQkFBN0MsQ0FBWjtBQUNBLGFBQU8sSUFBUCxDQUFZLEtBQVo7QUFDRDtBQUNELFdBQU8sSUFBSSxTQUFTLElBQWIsQ0FBa0IsSUFBbEIsRUFBdUIsTUFBdkIsRUFBK0Isa0JBQS9CLEVBQW1ELE1BQW5ELEVBQTJELE1BQTNELEVBQWtFLFlBQWxFLENBQVA7QUFDRCxHQW5CTSxNQW1CQSxJQUFJLFFBQUosRUFBYztBQUNuQjtBQUNBLFFBQUksV0FBVSxFQUFkO0FBQ0EsU0FBSyxJQUFJLEdBQVQsSUFBZ0IsSUFBaEIsRUFBc0I7QUFDcEIsVUFBSSxLQUFLLGNBQUwsQ0FBb0IsR0FBcEIsQ0FBSixFQUE4QjtBQUM1QixpQkFBUSxHQUFSLElBQWUsZ0JBQWdCLEtBQUssR0FBTCxDQUFoQixFQUEyQixPQUEzQixDQUFmO0FBQ0Q7QUFDRjtBQUNELFdBQU8sUUFBUDtBQUNELEdBVE0sTUFTQSxJQUFJLGdCQUFnQixLQUFwQixFQUEyQjtBQUNoQztBQUNBLFFBQUksWUFBVSxFQUFkO0FBQ0EsU0FBSyxJQUFJLE9BQU0sQ0FBVixFQUFhLE9BQU0sS0FBSyxNQUE3QixFQUFxQyxPQUFNLElBQTNDLEVBQWdELE1BQWhELEVBQXVEO0FBQ3JELGdCQUFRLElBQVIsQ0FBYSxnQkFBZ0IsS0FBSyxJQUFMLENBQWhCLEVBQTJCLE9BQTNCLENBQWI7QUFDRDtBQUNELFdBQU8sU0FBUDtBQUNEO0FBQ0Q7QUFDQSxTQUFPLElBQVA7QUFDRDs7SUFFSyxhO0FBQ0osMkJBQWU7QUFBQTs7QUFDYixTQUFLLFNBQUwsR0FBaUIsMEJBQWpCO0FBQ0Q7Ozs7MkJBRU8sSSxFQUFvQjtBQUFBLFVBQWQsT0FBYyx1RUFBSixFQUFJOztBQUMxQixVQUFJLE9BQU8sSUFBWDtBQUNBLFVBQUksUUFBUSxTQUFSLEtBQXNCLFNBQXRCLElBQW1DLENBQUMsUUFBUSxTQUFoRCxFQUEyRDtBQUN6RCxlQUFPLEtBQUssS0FBTCxDQUFXLElBQVgsQ0FBUDtBQUNEO0FBQ0QsYUFBTyxnQkFBZ0IsSUFBaEIsRUFBc0IsUUFBUSxHQUE5QixDQUFQO0FBQ0Q7Ozs7OztBQUdILE9BQU8sT0FBUCxHQUFpQjtBQUNmLGlCQUFlO0FBREEsQ0FBakI7Ozs7O0FDekhBLElBQU0sV0FBVyxRQUFRLFlBQVIsQ0FBakI7QUFDQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7QUFDQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7O0FBRUEsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsaUJBQWUsU0FBUyxhQURUO0FBRWYsYUFBVyxLQUFLLFNBRkQ7QUFHZixhQUFXLEtBQUs7QUFIRCxDQUFqQjs7Ozs7Ozs7O0lDSk0sUztBQUNKLHVCQUFlO0FBQUE7O0FBQ2IsU0FBSyxTQUFMLEdBQWlCLGtCQUFqQjtBQUNEOzs7OzJCQUVPLEksRUFBb0I7QUFBQSxVQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFDMUIsYUFBTyxLQUFLLEtBQUwsQ0FBVyxJQUFYLENBQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsYUFBVztBQURJLENBQWpCOzs7Ozs7Ozs7SUNWTSxTO0FBQ0osdUJBQWU7QUFBQTs7QUFDYixTQUFLLFNBQUwsR0FBaUIsUUFBakI7QUFDRDs7OzsyQkFFTyxJLEVBQW9CO0FBQUEsVUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQzFCLGFBQU8sSUFBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZixhQUFXO0FBREksQ0FBakI7Ozs7Ozs7SUNWTSxRLEdBQ0osb0JBQW1FO0FBQUEsTUFBdEQsR0FBc0QsdUVBQWhELEVBQWdEO0FBQUEsTUFBNUMsS0FBNEMsdUVBQXBDLEVBQW9DO0FBQUEsTUFBaEMsV0FBZ0MsdUVBQWxCLEVBQWtCO0FBQUEsTUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ2pFLE9BQUssR0FBTCxHQUFXLEdBQVg7QUFDQSxPQUFLLEtBQUwsR0FBYSxLQUFiO0FBQ0EsT0FBSyxXQUFMLEdBQW1CLFdBQW5CO0FBQ0EsT0FBSyxPQUFMLEdBQWUsT0FBZjtBQUNELEM7O0lBR0csSSxHQUNKLGNBQWEsR0FBYixFQUFrQixNQUFsQixFQUFvRztBQUFBLE1BQTFFLFFBQTBFLHVFQUEvRCxrQkFBK0Q7QUFBQSxNQUEzQyxNQUEyQyx1RUFBbEMsRUFBa0M7QUFBQSxNQUE5QixLQUE4Qix1RUFBdEIsRUFBc0I7QUFBQSxNQUFsQixXQUFrQix1RUFBSixFQUFJOztBQUFBOztBQUNsRyxNQUFJLFFBQVEsU0FBWixFQUF1QjtBQUNyQixVQUFNLElBQUksS0FBSixDQUFVLDBCQUFWLENBQU47QUFDRDs7QUFFRCxNQUFJLFdBQVcsU0FBZixFQUEwQjtBQUN4QixVQUFNLElBQUksS0FBSixDQUFVLDZCQUFWLENBQU47QUFDRDs7QUFFRCxPQUFLLEdBQUwsR0FBVyxHQUFYO0FBQ0EsT0FBSyxNQUFMLEdBQWMsTUFBZDtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssTUFBTCxHQUFjLE1BQWQ7QUFDQSxPQUFLLEtBQUwsR0FBYSxLQUFiO0FBQ0EsT0FBSyxXQUFMLEdBQW1CLFdBQW5CO0FBQ0QsQzs7SUFHRyxLLEdBQ0osZUFBYSxJQUFiLEVBQXNFO0FBQUEsTUFBbkQsUUFBbUQsdUVBQXhDLEtBQXdDO0FBQUEsTUFBakMsUUFBaUMsdUVBQXRCLEVBQXNCO0FBQUEsTUFBbEIsV0FBa0IsdUVBQUosRUFBSTs7QUFBQTs7QUFDcEUsTUFBSSxTQUFTLFNBQWIsRUFBd0I7QUFDdEIsVUFBTSxJQUFJLEtBQUosQ0FBVSwyQkFBVixDQUFOO0FBQ0Q7O0FBRUQsT0FBSyxJQUFMLEdBQVksSUFBWjtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssV0FBTCxHQUFtQixXQUFuQjtBQUNELEM7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsWUFBVSxRQURLO0FBRWYsUUFBTSxJQUZTO0FBR2YsU0FBTztBQUhRLENBQWpCOzs7Ozs7Ozs7OztJQ3pDTSxjOzs7QUFDSiwwQkFBYSxPQUFiLEVBQXNCO0FBQUE7O0FBQUEsZ0lBQ2QsT0FEYzs7QUFFcEIsVUFBSyxPQUFMLEdBQWUsT0FBZjtBQUNBLFVBQUssSUFBTCxHQUFZLGdCQUFaO0FBSG9CO0FBSXJCOzs7RUFMMEIsSzs7SUFRdkIsZTs7O0FBQ0osMkJBQWEsT0FBYixFQUFzQjtBQUFBOztBQUFBLG1JQUNkLE9BRGM7O0FBRXBCLFdBQUssT0FBTCxHQUFlLE9BQWY7QUFDQSxXQUFLLElBQUwsR0FBWSxpQkFBWjtBQUhvQjtBQUlyQjs7O0VBTDJCLEs7O0lBUXhCLFk7OztBQUNKLHdCQUFhLE9BQWIsRUFBc0IsT0FBdEIsRUFBK0I7QUFBQTs7QUFBQSw2SEFDdkIsT0FEdUI7O0FBRTdCLFdBQUssT0FBTCxHQUFlLE9BQWY7QUFDQSxXQUFLLE9BQUwsR0FBZSxPQUFmO0FBQ0EsV0FBSyxJQUFMLEdBQVksY0FBWjtBQUo2QjtBQUs5Qjs7O0VBTndCLEs7O0FBUzNCLE9BQU8sT0FBUCxHQUFpQjtBQUNmLGtCQUFnQixjQUREO0FBRWYsbUJBQWlCLGVBRkY7QUFHZixnQkFBYztBQUhDLENBQWpCOzs7OztBQ3pCQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7QUFDQSxJQUFNLFNBQVMsUUFBUSxVQUFSLENBQWY7QUFDQSxJQUFNLFNBQVMsUUFBUSxVQUFSLENBQWY7QUFDQSxJQUFNLFdBQVcsUUFBUSxZQUFSLENBQWpCO0FBQ0EsSUFBTSxTQUFTLFFBQVEsVUFBUixDQUFmO0FBQ0EsSUFBTSxhQUFhLFFBQVEsY0FBUixDQUFuQjtBQUNBLElBQU0sUUFBUSxRQUFRLFNBQVIsQ0FBZDs7QUFFQSxJQUFNLFVBQVU7QUFDZCxVQUFRLE9BQU8sTUFERDtBQUVkLFlBQVUsU0FBUyxRQUZMO0FBR2QsUUFBTSxTQUFTLElBSEQ7QUFJZCxRQUFNLElBSlE7QUFLZCxVQUFRLE1BTE07QUFNZCxVQUFRLE1BTk07QUFPZCxjQUFZLFVBUEU7QUFRZCxTQUFPO0FBUk8sQ0FBaEI7O0FBV0EsT0FBTyxPQUFQLEdBQWlCLE9BQWpCOzs7Ozs7Ozs7QUNuQkEsSUFBTSxRQUFRLFFBQVEsa0JBQVIsQ0FBZDtBQUNBLElBQU0sU0FBUyxRQUFRLFdBQVIsQ0FBZjtBQUNBLElBQU0sUUFBUSxRQUFRLFVBQVIsQ0FBZDtBQUNBLElBQU0sTUFBTSxRQUFRLFdBQVIsQ0FBWjtBQUNBLElBQU0sY0FBYyxRQUFRLGNBQVIsQ0FBcEI7O0FBRUEsSUFBTSxnQkFBZ0IsU0FBaEIsYUFBZ0IsQ0FBQyxRQUFELEVBQVcsUUFBWCxFQUFxQixnQkFBckIsRUFBMEM7QUFDOUQsU0FBTyxTQUFTLElBQVQsR0FBZ0IsSUFBaEIsQ0FBcUIsZ0JBQVE7QUFDbEMsUUFBSSxnQkFBSixFQUFzQjtBQUNwQix1QkFBaUIsUUFBakIsRUFBMkIsSUFBM0I7QUFDRDtBQUNELFFBQU0sY0FBYyxTQUFTLE9BQVQsQ0FBaUIsR0FBakIsQ0FBcUIsY0FBckIsQ0FBcEI7QUFDQSxRQUFNLFVBQVUsTUFBTSxnQkFBTixDQUF1QixRQUF2QixFQUFpQyxXQUFqQyxDQUFoQjtBQUNBLFFBQU0sVUFBVSxFQUFDLEtBQUssU0FBUyxHQUFmLEVBQWhCO0FBQ0EsV0FBTyxRQUFRLE1BQVIsQ0FBZSxJQUFmLEVBQXFCLE9BQXJCLENBQVA7QUFDRCxHQVJNLENBQVA7QUFTRCxDQVZEOztJQVlNLGE7QUFDSiwyQkFBMkI7QUFBQSxRQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFBQTs7QUFDekIsU0FBSyxPQUFMLEdBQWUsQ0FBQyxNQUFELEVBQVMsT0FBVCxDQUFmO0FBQ0EsU0FBSyxJQUFMLEdBQVksUUFBUSxJQUFSLElBQWdCLElBQTVCO0FBQ0EsU0FBSyxPQUFMLEdBQWUsUUFBUSxPQUFSLElBQW1CLEVBQWxDO0FBQ0EsU0FBSyxLQUFMLEdBQWEsUUFBUSxLQUFSLElBQWlCLEtBQTlCO0FBQ0EsU0FBSyxRQUFMLEdBQWdCLFFBQVEsUUFBUixJQUFvQixPQUFPLFFBQTNDO0FBQ0EsU0FBSyxlQUFMLEdBQXVCLFFBQVEsZUFBL0I7QUFDQSxTQUFLLGdCQUFMLEdBQXdCLFFBQVEsZ0JBQWhDO0FBQ0Q7Ozs7aUNBRWEsSSxFQUFNLFEsRUFBdUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDekMsVUFBTSxTQUFTLEtBQUssTUFBcEI7QUFDQSxVQUFNLFNBQVMsS0FBSyxNQUFMLENBQVksV0FBWixFQUFmO0FBQ0EsVUFBSSxjQUFjLEVBQWxCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxVQUFVLEtBQWQ7O0FBRUEsV0FBSyxJQUFJLE1BQU0sQ0FBVixFQUFhLE1BQU0sT0FBTyxNQUEvQixFQUF1QyxNQUFNLEdBQTdDLEVBQWtELEtBQWxELEVBQXlEO0FBQ3ZELFlBQU0sUUFBUSxPQUFPLEdBQVAsQ0FBZDs7QUFFQTtBQUNBLFlBQUksQ0FBQyxPQUFPLGNBQVAsQ0FBc0IsTUFBTSxJQUE1QixDQUFMLEVBQXdDO0FBQ3RDLGNBQUksTUFBTSxRQUFWLEVBQW9CO0FBQ2xCLGtCQUFNLElBQUksT0FBTyxjQUFYLCtCQUFzRCxNQUFNLElBQTVELE9BQU47QUFDRCxXQUZELE1BRU87QUFDTDtBQUNEO0FBQ0Y7O0FBRUQsbUJBQVcsSUFBWCxDQUFnQixNQUFNLElBQXRCO0FBQ0EsWUFBSSxNQUFNLFFBQU4sS0FBbUIsT0FBdkIsRUFBZ0M7QUFDOUIsc0JBQVksTUFBTSxJQUFsQixJQUEwQixPQUFPLE1BQU0sSUFBYixDQUExQjtBQUNELFNBRkQsTUFFTyxJQUFJLE1BQU0sUUFBTixLQUFtQixNQUF2QixFQUErQjtBQUNwQyxxQkFBVyxNQUFNLElBQWpCLElBQXlCLE9BQU8sTUFBTSxJQUFiLENBQXpCO0FBQ0QsU0FGTSxNQUVBLElBQUksTUFBTSxRQUFOLEtBQW1CLE1BQXZCLEVBQStCO0FBQ3BDLHFCQUFXLE1BQU0sSUFBakIsSUFBeUIsT0FBTyxNQUFNLElBQWIsQ0FBekI7QUFDQSxvQkFBVSxJQUFWO0FBQ0QsU0FITSxNQUdBLElBQUksTUFBTSxRQUFOLEtBQW1CLE1BQXZCLEVBQStCO0FBQ3BDLHVCQUFhLE9BQU8sTUFBTSxJQUFiLENBQWI7QUFDQSxvQkFBVSxJQUFWO0FBQ0Q7QUFDRjs7QUFFRDtBQUNBLFdBQUssSUFBSSxRQUFULElBQXFCLE1BQXJCLEVBQTZCO0FBQzNCLFlBQUksT0FBTyxjQUFQLENBQXNCLFFBQXRCLEtBQW1DLENBQUMsV0FBVyxRQUFYLENBQW9CLFFBQXBCLENBQXhDLEVBQXVFO0FBQ3JFLGdCQUFNLElBQUksT0FBTyxjQUFYLDBCQUFpRCxRQUFqRCxPQUFOO0FBQ0Q7QUFDRjs7QUFFRCxVQUFJLGlCQUFpQixFQUFDLFFBQVEsTUFBVCxFQUFpQixTQUFTLEVBQTFCLEVBQXJCOztBQUVBLGFBQU8sTUFBUCxDQUFjLGVBQWUsT0FBN0IsRUFBc0MsS0FBSyxPQUEzQzs7QUFFQSxVQUFJLE9BQUosRUFBYTtBQUNYLFlBQUksS0FBSyxRQUFMLEtBQWtCLGtCQUF0QixFQUEwQztBQUN4Qyx5QkFBZSxJQUFmLEdBQXNCLEtBQUssU0FBTCxDQUFlLFVBQWYsQ0FBdEI7QUFDQSx5QkFBZSxPQUFmLENBQXVCLGNBQXZCLElBQXlDLGtCQUF6QztBQUNELFNBSEQsTUFHTyxJQUFJLEtBQUssUUFBTCxLQUFrQixxQkFBdEIsRUFBNkM7QUFDbEQsY0FBSSxPQUFPLElBQUksS0FBSyxRQUFULEVBQVg7O0FBRUEsZUFBSyxJQUFJLFFBQVQsSUFBcUIsVUFBckIsRUFBaUM7QUFDL0IsaUJBQUssTUFBTCxDQUFZLFFBQVosRUFBc0IsV0FBVyxRQUFYLENBQXRCO0FBQ0Q7QUFDRCx5QkFBZSxJQUFmLEdBQXNCLElBQXRCO0FBQ0QsU0FQTSxNQU9BLElBQUksS0FBSyxRQUFMLEtBQWtCLG1DQUF0QixFQUEyRDtBQUNoRSxjQUFJLFdBQVcsRUFBZjtBQUNBLGVBQUssSUFBSSxTQUFULElBQXFCLFVBQXJCLEVBQWlDO0FBQy9CLGdCQUFNLGFBQWEsbUJBQW1CLFNBQW5CLENBQW5CO0FBQ0EsZ0JBQU0sZUFBZSxtQkFBbUIsV0FBVyxTQUFYLENBQW5CLENBQXJCO0FBQ0EscUJBQVMsSUFBVCxDQUFjLGFBQWEsR0FBYixHQUFtQixZQUFqQztBQUNEO0FBQ0QscUJBQVcsU0FBUyxJQUFULENBQWMsR0FBZCxDQUFYOztBQUVBLHlCQUFlLElBQWYsR0FBc0IsUUFBdEI7QUFDQSx5QkFBZSxPQUFmLENBQXVCLGNBQXZCLElBQXlDLG1DQUF6QztBQUNEO0FBQ0Y7O0FBRUQsVUFBSSxLQUFLLElBQVQsRUFBZTtBQUNiLHlCQUFpQixLQUFLLElBQUwsQ0FBVSxZQUFWLENBQXVCLGNBQXZCLENBQWpCO0FBQ0Q7O0FBRUQsVUFBSSxZQUFZLFlBQVksS0FBWixDQUFrQixLQUFLLEdBQXZCLENBQWhCO0FBQ0Esa0JBQVksVUFBVSxNQUFWLENBQWlCLFVBQWpCLENBQVo7QUFDQSxrQkFBWSxJQUFJLEdBQUosQ0FBUSxTQUFSLENBQVo7QUFDQSxnQkFBVSxHQUFWLENBQWMsT0FBZCxFQUF1QixXQUF2Qjs7QUFFQSxhQUFPO0FBQ0wsYUFBSyxVQUFVLFFBQVYsRUFEQTtBQUVMLGlCQUFTO0FBRkosT0FBUDtBQUlEOzs7MkJBRU8sSSxFQUFNLFEsRUFBdUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDbkMsVUFBTSxtQkFBbUIsS0FBSyxnQkFBOUI7QUFDQSxVQUFNLFVBQVUsS0FBSyxZQUFMLENBQWtCLElBQWxCLEVBQXdCLFFBQXhCLEVBQWtDLE1BQWxDLENBQWhCOztBQUVBLFVBQUksS0FBSyxlQUFULEVBQTBCO0FBQ3hCLGFBQUssZUFBTCxDQUFxQixPQUFyQjtBQUNEOztBQUVELGFBQU8sS0FBSyxLQUFMLENBQVcsUUFBUSxHQUFuQixFQUF3QixRQUFRLE9BQWhDLEVBQ0osSUFESSxDQUNDLFVBQVUsUUFBVixFQUFvQjtBQUN4QixZQUFJLFNBQVMsTUFBVCxLQUFvQixHQUF4QixFQUE2QjtBQUMzQjtBQUNEO0FBQ0QsZUFBTyxjQUFjLFFBQWQsRUFBd0IsUUFBeEIsRUFBa0MsZ0JBQWxDLEVBQ0osSUFESSxDQUNDLFVBQVUsSUFBVixFQUFnQjtBQUNwQixjQUFJLFNBQVMsRUFBYixFQUFpQjtBQUNmLG1CQUFPLElBQVA7QUFDRCxXQUZELE1BRU87QUFDTCxnQkFBTSxRQUFRLFNBQVMsTUFBVCxHQUFrQixHQUFsQixHQUF3QixTQUFTLFVBQS9DO0FBQ0EsZ0JBQU0sUUFBUSxJQUFJLE9BQU8sWUFBWCxDQUF3QixLQUF4QixFQUErQixJQUEvQixDQUFkO0FBQ0EsbUJBQU8sUUFBUSxNQUFSLENBQWUsS0FBZixDQUFQO0FBQ0Q7QUFDRixTQVRJLENBQVA7QUFVRCxPQWZJLENBQVA7QUFnQkQ7Ozs7OztBQUdILE9BQU8sT0FBUCxHQUFpQjtBQUNmLGlCQUFlO0FBREEsQ0FBakI7Ozs7O0FDOUlBLElBQU0sT0FBTyxRQUFRLFFBQVIsQ0FBYjs7QUFFQSxPQUFPLE9BQVAsR0FBaUI7QUFDZixpQkFBZSxLQUFLO0FBREwsQ0FBakI7Ozs7O0FDRkEsSUFBTSxNQUFNLFFBQVEsV0FBUixDQUFaOztBQUVBLElBQU0scUJBQXFCLFNBQXJCLGtCQUFxQixDQUFVLFVBQVYsRUFBc0IsR0FBdEIsRUFBMkI7QUFDcEQsTUFBTSxZQUFZLElBQUksR0FBSixDQUFRLEdBQVIsQ0FBbEI7QUFDQSxNQUFNLFNBQVMsVUFBVSxRQUFWLENBQW1CLE9BQW5CLENBQTJCLEdBQTNCLEVBQWdDLEVBQWhDLENBQWY7O0FBRm9EO0FBQUE7QUFBQTs7QUFBQTtBQUlwRCx5QkFBc0IsVUFBdEIsOEhBQWtDO0FBQUEsVUFBekIsU0FBeUI7O0FBQ2hDLFVBQUksVUFBVSxPQUFWLENBQWtCLFFBQWxCLENBQTJCLE1BQTNCLENBQUosRUFBd0M7QUFDdEMsZUFBTyxTQUFQO0FBQ0Q7QUFDRjtBQVJtRDtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOztBQVVwRCxRQUFNLHNDQUFvQyxHQUFwQyxDQUFOO0FBQ0QsQ0FYRDs7QUFhQSxJQUFNLG1CQUFtQixTQUFuQixnQkFBbUIsQ0FBVSxRQUFWLEVBQW9CLFdBQXBCLEVBQWlDO0FBQ3hELE1BQUksZ0JBQWdCLFNBQWhCLElBQTZCLGdCQUFnQixJQUFqRCxFQUF1RDtBQUNyRCxXQUFPLFNBQVMsQ0FBVCxDQUFQO0FBQ0Q7O0FBRUQsTUFBTSxXQUFXLFlBQVksV0FBWixHQUEwQixLQUExQixDQUFnQyxHQUFoQyxFQUFxQyxDQUFyQyxFQUF3QyxJQUF4QyxFQUFqQjtBQUNBLE1BQU0sV0FBVyxTQUFTLEtBQVQsQ0FBZSxHQUFmLEVBQW9CLENBQXBCLElBQXlCLElBQTFDO0FBQ0EsTUFBTSxlQUFlLEtBQXJCO0FBQ0EsTUFBTSxrQkFBa0IsQ0FBQyxRQUFELEVBQVcsUUFBWCxFQUFxQixZQUFyQixDQUF4Qjs7QUFSd0Q7QUFBQTtBQUFBOztBQUFBO0FBVXhELDBCQUFvQixRQUFwQixtSUFBOEI7QUFBQSxVQUFyQixPQUFxQjs7QUFDNUIsVUFBSSxnQkFBZ0IsUUFBaEIsQ0FBeUIsUUFBUSxTQUFqQyxDQUFKLEVBQWlEO0FBQy9DLGVBQU8sT0FBUDtBQUNEO0FBQ0Y7QUFkdUQ7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTs7QUFnQnhELFFBQU0scURBQW1ELFdBQW5ELENBQU47QUFDRCxDQWpCRDs7QUFtQkEsSUFBTSxpQkFBaUIsU0FBakIsY0FBaUIsQ0FBVSxNQUFWLEVBQWtCO0FBQ3ZDO0FBQ0EsU0FBUSw4QkFBNkIsSUFBN0IsQ0FBa0MsTUFBbEM7QUFBUjtBQUNELENBSEQ7O0FBS0EsT0FBTyxPQUFQLEdBQWlCO0FBQ2Ysc0JBQW9CLGtCQURMO0FBRWYsb0JBQWtCLGdCQUZIO0FBR2Ysa0JBQWdCO0FBSEQsQ0FBakI7OztBQ3ZDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNOQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQzdEQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdENBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUNyV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7O0FDckRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ2hNQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EiLCJmaWxlIjoiZ2VuZXJhdGVkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXNDb250ZW50IjpbIihmdW5jdGlvbiBlKHQsbixyKXtmdW5jdGlvbiBzKG8sdSl7aWYoIW5bb10pe2lmKCF0W29dKXt2YXIgYT10eXBlb2YgcmVxdWlyZT09XCJmdW5jdGlvblwiJiZyZXF1aXJlO2lmKCF1JiZhKXJldHVybiBhKG8sITApO2lmKGkpcmV0dXJuIGkobywhMCk7dmFyIGY9bmV3IEVycm9yKFwiQ2Fubm90IGZpbmQgbW9kdWxlICdcIitvK1wiJ1wiKTt0aHJvdyBmLmNvZGU9XCJNT0RVTEVfTk9UX0ZPVU5EXCIsZn12YXIgbD1uW29dPXtleHBvcnRzOnt9fTt0W29dWzBdLmNhbGwobC5leHBvcnRzLGZ1bmN0aW9uKGUpe3ZhciBuPXRbb11bMV1bZV07cmV0dXJuIHMobj9uOmUpfSxsLGwuZXhwb3J0cyxlLHQsbixyKX1yZXR1cm4gbltvXS5leHBvcnRzfXZhciBpPXR5cGVvZiByZXF1aXJlPT1cImZ1bmN0aW9uXCImJnJlcXVpcmU7Zm9yKHZhciBvPTA7bzxyLmxlbmd0aDtvKyspcyhyW29dKTtyZXR1cm4gc30pIiwiY2xhc3MgQmFzaWNBdXRoZW50aWNhdGlvbiB7XG4gIGNvbnN0cnVjdG9yIChvcHRpb25zID0ge30pIHtcbiAgICBjb25zdCB1c2VybmFtZSA9IG9wdGlvbnMudXNlcm5hbWVcbiAgICBjb25zdCBwYXNzd29yZCA9IG9wdGlvbnMucGFzc3dvcmRcbiAgICBjb25zdCBoYXNoID0gd2luZG93LmJ0b2EodXNlcm5hbWUgKyAnOicgKyBwYXNzd29yZClcbiAgICB0aGlzLmF1dGggPSAnQmFzaWMgJyArIGhhc2hcbiAgfVxuXG4gIGF1dGhlbnRpY2F0ZSAob3B0aW9ucykge1xuICAgIG9wdGlvbnMuaGVhZGVyc1snQXV0aG9yaXphdGlvbiddID0gdGhpcy5hdXRoXG4gICAgcmV0dXJuIG9wdGlvbnNcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgQmFzaWNBdXRoZW50aWNhdGlvbjogQmFzaWNBdXRoZW50aWNhdGlvblxufVxuIiwiY29uc3QgYmFzaWMgPSByZXF1aXJlKCcuL2Jhc2ljJylcbmNvbnN0IHNlc3Npb24gPSByZXF1aXJlKCcuL3Nlc3Npb24nKVxuY29uc3QgdG9rZW4gPSByZXF1aXJlKCcuL3Rva2VuJylcblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIEJhc2ljQXV0aGVudGljYXRpb246IGJhc2ljLkJhc2ljQXV0aGVudGljYXRpb24sXG4gIFNlc3Npb25BdXRoZW50aWNhdGlvbjogc2Vzc2lvbi5TZXNzaW9uQXV0aGVudGljYXRpb24sXG4gIFRva2VuQXV0aGVudGljYXRpb246IHRva2VuLlRva2VuQXV0aGVudGljYXRpb25cbn1cbiIsImNvbnN0IHV0aWxzID0gcmVxdWlyZSgnLi4vdXRpbHMnKVxuXG5mdW5jdGlvbiB0cmltIChzdHIpIHtcbiAgcmV0dXJuIHN0ci5yZXBsYWNlKC9eXFxzXFxzKi8sICcnKS5yZXBsYWNlKC9cXHNcXHMqJC8sICcnKVxufVxuXG5mdW5jdGlvbiBnZXRDb29raWUgKGNvb2tpZU5hbWUsIGNvb2tpZVN0cmluZykge1xuICBjb29raWVTdHJpbmcgPSBjb29raWVTdHJpbmcgfHwgd2luZG93LmRvY3VtZW50LmNvb2tpZVxuICBpZiAoY29va2llU3RyaW5nICYmIGNvb2tpZVN0cmluZyAhPT0gJycpIHtcbiAgICBjb25zdCBjb29raWVzID0gY29va2llU3RyaW5nLnNwbGl0KCc7JylcbiAgICBmb3IgKHZhciBpID0gMDsgaSA8IGNvb2tpZXMubGVuZ3RoOyBpKyspIHtcbiAgICAgIGNvbnN0IGNvb2tpZSA9IHRyaW0oY29va2llc1tpXSlcbiAgICAgIC8vIERvZXMgdGhpcyBjb29raWUgc3RyaW5nIGJlZ2luIHdpdGggdGhlIG5hbWUgd2Ugd2FudD9cbiAgICAgIGlmIChjb29raWUuc3Vic3RyaW5nKDAsIGNvb2tpZU5hbWUubGVuZ3RoICsgMSkgPT09IChjb29raWVOYW1lICsgJz0nKSkge1xuICAgICAgICByZXR1cm4gZGVjb2RlVVJJQ29tcG9uZW50KGNvb2tpZS5zdWJzdHJpbmcoY29va2llTmFtZS5sZW5ndGggKyAxKSlcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgcmV0dXJuIG51bGxcbn1cblxuY2xhc3MgU2Vzc2lvbkF1dGhlbnRpY2F0aW9uIHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIHRoaXMuY3NyZlRva2VuID0gZ2V0Q29va2llKG9wdGlvbnMuY3NyZkNvb2tpZU5hbWUsIG9wdGlvbnMuY29va2llU3RyaW5nKVxuICAgIHRoaXMuY3NyZkhlYWRlck5hbWUgPSBvcHRpb25zLmNzcmZIZWFkZXJOYW1lXG4gIH1cblxuICBhdXRoZW50aWNhdGUgKG9wdGlvbnMpIHtcbiAgICBvcHRpb25zLmNyZWRlbnRpYWxzID0gJ3NhbWUtb3JpZ2luJ1xuICAgIGlmICh0aGlzLmNzcmZUb2tlbiAmJiAhdXRpbHMuY3NyZlNhZmVNZXRob2Qob3B0aW9ucy5tZXRob2QpKSB7XG4gICAgICBvcHRpb25zLmhlYWRlcnNbdGhpcy5jc3JmSGVhZGVyTmFtZV0gPSB0aGlzLmNzcmZUb2tlblxuICAgIH1cbiAgICByZXR1cm4gb3B0aW9uc1xuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBTZXNzaW9uQXV0aGVudGljYXRpb246IFNlc3Npb25BdXRoZW50aWNhdGlvblxufVxuIiwiY2xhc3MgVG9rZW5BdXRoZW50aWNhdGlvbiB7XG4gIGNvbnN0cnVjdG9yIChvcHRpb25zID0ge30pIHtcbiAgICB0aGlzLnRva2VuID0gb3B0aW9ucy50b2tlblxuICAgIHRoaXMuc2NoZW1lID0gb3B0aW9ucy5zY2hlbWUgfHwgJ0JlYXJlcidcbiAgfVxuXG4gIGF1dGhlbnRpY2F0ZSAob3B0aW9ucykge1xuICAgIG9wdGlvbnMuaGVhZGVyc1snQXV0aG9yaXphdGlvbiddID0gdGhpcy5zY2hlbWUgKyAnICcgKyB0aGlzLnRva2VuXG4gICAgcmV0dXJuIG9wdGlvbnNcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgVG9rZW5BdXRoZW50aWNhdGlvbjogVG9rZW5BdXRoZW50aWNhdGlvblxufVxuIiwiY29uc3QgZG9jdW1lbnQgPSByZXF1aXJlKCcuL2RvY3VtZW50JylcbmNvbnN0IGNvZGVjcyA9IHJlcXVpcmUoJy4vY29kZWNzJylcbmNvbnN0IGVycm9ycyA9IHJlcXVpcmUoJy4vZXJyb3JzJylcbmNvbnN0IHRyYW5zcG9ydHMgPSByZXF1aXJlKCcuL3RyYW5zcG9ydHMnKVxuY29uc3QgdXRpbHMgPSByZXF1aXJlKCcuL3V0aWxzJylcblxuZnVuY3Rpb24gbG9va3VwTGluayAobm9kZSwga2V5cykge1xuICBmb3IgKGxldCBrZXkgb2Yga2V5cykge1xuICAgIGlmIChub2RlIGluc3RhbmNlb2YgZG9jdW1lbnQuRG9jdW1lbnQpIHtcbiAgICAgIG5vZGUgPSBub2RlLmNvbnRlbnRba2V5XVxuICAgIH0gZWxzZSB7XG4gICAgICBub2RlID0gbm9kZVtrZXldXG4gICAgfVxuICAgIGlmIChub2RlID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBlcnJvcnMuTGlua0xvb2t1cEVycm9yKGBJbnZhbGlkIGxpbmsgbG9va3VwOiAke0pTT04uc3RyaW5naWZ5KGtleXMpfWApXG4gICAgfVxuICB9XG4gIGlmICghKG5vZGUgaW5zdGFuY2VvZiBkb2N1bWVudC5MaW5rKSkge1xuICAgIHRocm93IG5ldyBlcnJvcnMuTGlua0xvb2t1cEVycm9yKGBJbnZhbGlkIGxpbmsgbG9va3VwOiAke0pTT04uc3RyaW5naWZ5KGtleXMpfWApXG4gIH1cbiAgcmV0dXJuIG5vZGVcbn1cblxuY2xhc3MgQ2xpZW50IHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIGNvbnN0IHRyYW5zcG9ydE9wdGlvbnMgPSB7XG4gICAgICBhdXRoOiBvcHRpb25zLmF1dGggfHwgbnVsbCxcbiAgICAgIGhlYWRlcnM6IG9wdGlvbnMuaGVhZGVycyB8fCB7fSxcbiAgICAgIHJlcXVlc3RDYWxsYmFjazogb3B0aW9ucy5yZXF1ZXN0Q2FsbGJhY2ssXG4gICAgICByZXNwb25zZUNhbGxiYWNrOiBvcHRpb25zLnJlc3BvbnNlQ2FsbGJhY2tcbiAgICB9XG5cbiAgICB0aGlzLmRlY29kZXJzID0gb3B0aW9ucy5kZWNvZGVycyB8fCBbbmV3IGNvZGVjcy5Db3JlSlNPTkNvZGVjKCksIG5ldyBjb2RlY3MuSlNPTkNvZGVjKCksIG5ldyBjb2RlY3MuVGV4dENvZGVjKCldXG4gICAgdGhpcy50cmFuc3BvcnRzID0gb3B0aW9ucy50cmFuc3BvcnRzIHx8IFtuZXcgdHJhbnNwb3J0cy5IVFRQVHJhbnNwb3J0KHRyYW5zcG9ydE9wdGlvbnMpXVxuICB9XG5cbiAgYWN0aW9uIChkb2N1bWVudCwga2V5cywgcGFyYW1zID0ge30pIHtcbiAgICBjb25zdCBsaW5rID0gbG9va3VwTGluayhkb2N1bWVudCwga2V5cylcbiAgICBjb25zdCB0cmFuc3BvcnQgPSB1dGlscy5kZXRlcm1pbmVUcmFuc3BvcnQodGhpcy50cmFuc3BvcnRzLCBsaW5rLnVybClcbiAgICByZXR1cm4gdHJhbnNwb3J0LmFjdGlvbihsaW5rLCB0aGlzLmRlY29kZXJzLCBwYXJhbXMpXG4gIH1cblxuICBnZXQgKHVybCkge1xuICAgIGNvbnN0IGxpbmsgPSBuZXcgZG9jdW1lbnQuTGluayh1cmwsICdnZXQnKVxuICAgIGNvbnN0IHRyYW5zcG9ydCA9IHV0aWxzLmRldGVybWluZVRyYW5zcG9ydCh0aGlzLnRyYW5zcG9ydHMsIHVybClcbiAgICByZXR1cm4gdHJhbnNwb3J0LmFjdGlvbihsaW5rLCB0aGlzLmRlY29kZXJzKVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBDbGllbnQ6IENsaWVudFxufVxuIiwiY29uc3QgZG9jdW1lbnQgPSByZXF1aXJlKCcuLi9kb2N1bWVudCcpXG5jb25zdCBVUkwgPSByZXF1aXJlKCd1cmwtcGFyc2UnKVxuXG5mdW5jdGlvbiB1bmVzY2FwZUtleSAoa2V5KSB7XG4gIGlmIChrZXkubWF0Y2goL19fKHR5cGV8bWV0YSkkLykpIHtcbiAgICByZXR1cm4ga2V5LnN1YnN0cmluZygxKVxuICB9XG4gIHJldHVybiBrZXlcbn1cblxuZnVuY3Rpb24gZ2V0U3RyaW5nIChvYmosIGtleSkge1xuICBjb25zdCB2YWx1ZSA9IG9ialtrZXldXG4gIGlmICh0eXBlb2YgKHZhbHVlKSA9PT0gJ3N0cmluZycpIHtcbiAgICByZXR1cm4gdmFsdWVcbiAgfVxuICByZXR1cm4gJydcbn1cblxuZnVuY3Rpb24gZ2V0Qm9vbGVhbiAob2JqLCBrZXkpIHtcbiAgY29uc3QgdmFsdWUgPSBvYmpba2V5XVxuICBpZiAodHlwZW9mICh2YWx1ZSkgPT09ICdib29sZWFuJykge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiBmYWxzZVxufVxuXG5mdW5jdGlvbiBnZXRPYmplY3QgKG9iaiwga2V5KSB7XG4gIGNvbnN0IHZhbHVlID0gb2JqW2tleV1cbiAgaWYgKHR5cGVvZiAodmFsdWUpID09PSAnb2JqZWN0Jykge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiB7fVxufVxuXG5mdW5jdGlvbiBnZXRBcnJheSAob2JqLCBrZXkpIHtcbiAgY29uc3QgdmFsdWUgPSBvYmpba2V5XVxuICBpZiAodmFsdWUgaW5zdGFuY2VvZiBBcnJheSkge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiBbXVxufVxuXG5mdW5jdGlvbiBnZXRDb250ZW50IChkYXRhLCBiYXNlVXJsKSB7XG4gIGNvbnN0IGV4Y2x1ZGVkID0gWydfdHlwZScsICdfbWV0YSddXG4gIHZhciBjb250ZW50ID0ge31cbiAgZm9yICh2YXIgcHJvcGVydHkgaW4gZGF0YSkge1xuICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KHByb3BlcnR5KSAmJiAhZXhjbHVkZWQuaW5jbHVkZXMocHJvcGVydHkpKSB7XG4gICAgICBjb25zdCBrZXkgPSB1bmVzY2FwZUtleShwcm9wZXJ0eSlcbiAgICAgIGNvbnN0IHZhbHVlID0gcHJpbWl0aXZlVG9Ob2RlKGRhdGFbcHJvcGVydHldLCBiYXNlVXJsKVxuICAgICAgY29udGVudFtrZXldID0gdmFsdWVcbiAgICB9XG4gIH1cbiAgcmV0dXJuIGNvbnRlbnRcbn1cblxuZnVuY3Rpb24gcHJpbWl0aXZlVG9Ob2RlIChkYXRhLCBiYXNlVXJsKSB7XG4gIGNvbnN0IGlzT2JqZWN0ID0gZGF0YSBpbnN0YW5jZW9mIE9iamVjdCAmJiAhKGRhdGEgaW5zdGFuY2VvZiBBcnJheSlcblxuICBpZiAoaXNPYmplY3QgJiYgZGF0YS5fdHlwZSA9PT0gJ2RvY3VtZW50Jykge1xuICAgIC8vIERvY3VtZW50XG4gICAgY29uc3QgbWV0YSA9IGdldE9iamVjdChkYXRhLCAnX21ldGEnKVxuICAgIGNvbnN0IHJlbGF0aXZlVXJsID0gZ2V0U3RyaW5nKG1ldGEsICd1cmwnKVxuICAgIGNvbnN0IHVybCA9IHJlbGF0aXZlVXJsID8gVVJMKHJlbGF0aXZlVXJsLCBiYXNlVXJsKS50b1N0cmluZygpIDogJydcbiAgICBjb25zdCB0aXRsZSA9IGdldFN0cmluZyhtZXRhLCAndGl0bGUnKVxuICAgIGNvbnN0IGRlc2NyaXB0aW9uID0gZ2V0U3RyaW5nKG1ldGEsICdkZXNjcmlwdGlvbicpXG4gICAgY29uc3QgY29udGVudCA9IGdldENvbnRlbnQoZGF0YSwgdXJsKVxuICAgIHJldHVybiBuZXcgZG9jdW1lbnQuRG9jdW1lbnQodXJsLCB0aXRsZSwgZGVzY3JpcHRpb24sIGNvbnRlbnQpXG4gIH0gZWxzZSBpZiAoaXNPYmplY3QgJiYgZGF0YS5fdHlwZSA9PT0gJ2xpbmsnKSB7XG4gICAgLy8gTGlua1xuICAgIGNvbnN0IHJlbGF0aXZlVXJsID0gZ2V0U3RyaW5nKGRhdGEsICd1cmwnKVxuICAgIGNvbnN0IHVybCA9IHJlbGF0aXZlVXJsID8gVVJMKHJlbGF0aXZlVXJsLCBiYXNlVXJsKS50b1N0cmluZygpIDogJydcbiAgICBjb25zdCBtZXRob2QgPSBnZXRTdHJpbmcoZGF0YSwgJ2FjdGlvbicpIHx8ICdnZXQnXG4gICAgY29uc3QgdGl0bGUgPSBnZXRTdHJpbmcoZGF0YSwgJ3RpdGxlJylcbiAgICBjb25zdCBkZXNjcmlwdGlvbiA9IGdldFN0cmluZyhkYXRhLCAnZGVzY3JpcHRpb24nKVxuICAgIGNvbnN0IGZpZWxkc0RhdGEgPSBnZXRBcnJheShkYXRhLCAnZmllbGRzJylcbiAgICB2YXIgZmllbGRzID0gW11cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBmaWVsZHNEYXRhLmxlbmd0aDsgaWR4IDwgbGVuOyBpZHgrKykge1xuICAgICAgbGV0IHZhbHVlID0gZmllbGRzRGF0YVtpZHhdXG4gICAgICBsZXQgbmFtZSA9IGdldFN0cmluZyh2YWx1ZSwgJ25hbWUnKVxuICAgICAgbGV0IHJlcXVpcmVkID0gZ2V0Qm9vbGVhbih2YWx1ZSwgJ3JlcXVpcmVkJylcbiAgICAgIGxldCBsb2NhdGlvbiA9IGdldFN0cmluZyh2YWx1ZSwgJ2xvY2F0aW9uJylcbiAgICAgIGxldCBmaWVsZERlc2NyaXB0aW9uID0gZ2V0U3RyaW5nKHZhbHVlLCAnZmllbGREZXNjcmlwdGlvbicpXG4gICAgICBsZXQgZmllbGQgPSBuZXcgZG9jdW1lbnQuRmllbGQobmFtZSwgcmVxdWlyZWQsIGxvY2F0aW9uLCBmaWVsZERlc2NyaXB0aW9uKVxuICAgICAgZmllbGRzLnB1c2goZmllbGQpXG4gICAgfVxuICAgIHJldHVybiBuZXcgZG9jdW1lbnQuTGluayh1cmwsIG1ldGhvZCwgJ2FwcGxpY2F0aW9uL2pzb24nLCBmaWVsZHMsIHRpdGxlLCBkZXNjcmlwdGlvbilcbiAgfSBlbHNlIGlmIChpc09iamVjdCkge1xuICAgIC8vIE9iamVjdFxuICAgIGxldCBjb250ZW50ID0ge31cbiAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xuICAgICAgaWYgKGRhdGEuaGFzT3duUHJvcGVydHkoa2V5KSkge1xuICAgICAgICBjb250ZW50W2tleV0gPSBwcmltaXRpdmVUb05vZGUoZGF0YVtrZXldLCBiYXNlVXJsKVxuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gY29udGVudFxuICB9IGVsc2UgaWYgKGRhdGEgaW5zdGFuY2VvZiBBcnJheSkge1xuICAgIC8vIE9iamVjdFxuICAgIGxldCBjb250ZW50ID0gW11cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBkYXRhLmxlbmd0aDsgaWR4IDwgbGVuOyBpZHgrKykge1xuICAgICAgY29udGVudC5wdXNoKHByaW1pdGl2ZVRvTm9kZShkYXRhW2lkeF0sIGJhc2VVcmwpKVxuICAgIH1cbiAgICByZXR1cm4gY29udGVudFxuICB9XG4gIC8vIFByaW1pdGl2ZVxuICByZXR1cm4gZGF0YVxufVxuXG5jbGFzcyBDb3JlSlNPTkNvZGVjIHtcbiAgY29uc3RydWN0b3IgKCkge1xuICAgIHRoaXMubWVkaWFUeXBlID0gJ2FwcGxpY2F0aW9uL2NvcmVhcGkranNvbidcbiAgfVxuXG4gIGRlY29kZSAodGV4dCwgb3B0aW9ucyA9IHt9KSB7XG4gICAgbGV0IGRhdGEgPSB0ZXh0XG4gICAgaWYgKG9wdGlvbnMucHJlbG9hZGVkID09PSB1bmRlZmluZWQgfHwgIW9wdGlvbnMucHJlbG9hZGVkKSB7XG4gICAgICBkYXRhID0gSlNPTi5wYXJzZSh0ZXh0KVxuICAgIH1cbiAgICByZXR1cm4gcHJpbWl0aXZlVG9Ob2RlKGRhdGEsIG9wdGlvbnMudXJsKVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBDb3JlSlNPTkNvZGVjOiBDb3JlSlNPTkNvZGVjXG59XG4iLCJjb25zdCBjb3JlanNvbiA9IHJlcXVpcmUoJy4vY29yZWpzb24nKVxuY29uc3QganNvbiA9IHJlcXVpcmUoJy4vanNvbicpXG5jb25zdCB0ZXh0ID0gcmVxdWlyZSgnLi90ZXh0JylcblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIENvcmVKU09OQ29kZWM6IGNvcmVqc29uLkNvcmVKU09OQ29kZWMsXG4gIEpTT05Db2RlYzoganNvbi5KU09OQ29kZWMsXG4gIFRleHRDb2RlYzogdGV4dC5UZXh0Q29kZWNcbn1cbiIsImNsYXNzIEpTT05Db2RlYyB7XG4gIGNvbnN0cnVjdG9yICgpIHtcbiAgICB0aGlzLm1lZGlhVHlwZSA9ICdhcHBsaWNhdGlvbi9qc29uJ1xuICB9XG5cbiAgZGVjb2RlICh0ZXh0LCBvcHRpb25zID0ge30pIHtcbiAgICByZXR1cm4gSlNPTi5wYXJzZSh0ZXh0KVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBKU09OQ29kZWM6IEpTT05Db2RlY1xufVxuIiwiY2xhc3MgVGV4dENvZGVjIHtcbiAgY29uc3RydWN0b3IgKCkge1xuICAgIHRoaXMubWVkaWFUeXBlID0gJ3RleHQvKidcbiAgfVxuXG4gIGRlY29kZSAodGV4dCwgb3B0aW9ucyA9IHt9KSB7XG4gICAgcmV0dXJuIHRleHRcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgVGV4dENvZGVjOiBUZXh0Q29kZWNcbn1cbiIsImNsYXNzIERvY3VtZW50IHtcbiAgY29uc3RydWN0b3IgKHVybCA9ICcnLCB0aXRsZSA9ICcnLCBkZXNjcmlwdGlvbiA9ICcnLCBjb250ZW50ID0ge30pIHtcbiAgICB0aGlzLnVybCA9IHVybFxuICAgIHRoaXMudGl0bGUgPSB0aXRsZVxuICAgIHRoaXMuZGVzY3JpcHRpb24gPSBkZXNjcmlwdGlvblxuICAgIHRoaXMuY29udGVudCA9IGNvbnRlbnRcbiAgfVxufVxuXG5jbGFzcyBMaW5rIHtcbiAgY29uc3RydWN0b3IgKHVybCwgbWV0aG9kLCBlbmNvZGluZyA9ICdhcHBsaWNhdGlvbi9qc29uJywgZmllbGRzID0gW10sIHRpdGxlID0gJycsIGRlc2NyaXB0aW9uID0gJycpIHtcbiAgICBpZiAodXJsID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcigndXJsIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICBpZiAobWV0aG9kID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignbWV0aG9kIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICB0aGlzLnVybCA9IHVybFxuICAgIHRoaXMubWV0aG9kID0gbWV0aG9kXG4gICAgdGhpcy5lbmNvZGluZyA9IGVuY29kaW5nXG4gICAgdGhpcy5maWVsZHMgPSBmaWVsZHNcbiAgICB0aGlzLnRpdGxlID0gdGl0bGVcbiAgICB0aGlzLmRlc2NyaXB0aW9uID0gZGVzY3JpcHRpb25cbiAgfVxufVxuXG5jbGFzcyBGaWVsZCB7XG4gIGNvbnN0cnVjdG9yIChuYW1lLCByZXF1aXJlZCA9IGZhbHNlLCBsb2NhdGlvbiA9ICcnLCBkZXNjcmlwdGlvbiA9ICcnKSB7XG4gICAgaWYgKG5hbWUgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCduYW1lIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICB0aGlzLm5hbWUgPSBuYW1lXG4gICAgdGhpcy5yZXF1aXJlZCA9IHJlcXVpcmVkXG4gICAgdGhpcy5sb2NhdGlvbiA9IGxvY2F0aW9uXG4gICAgdGhpcy5kZXNjcmlwdGlvbiA9IGRlc2NyaXB0aW9uXG4gIH1cbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIERvY3VtZW50OiBEb2N1bWVudCxcbiAgTGluazogTGluayxcbiAgRmllbGQ6IEZpZWxkXG59XG4iLCJjbGFzcyBQYXJhbWV0ZXJFcnJvciBleHRlbmRzIEVycm9yIHtcbiAgY29uc3RydWN0b3IgKG1lc3NhZ2UpIHtcbiAgICBzdXBlcihtZXNzYWdlKVxuICAgIHRoaXMubWVzc2FnZSA9IG1lc3NhZ2VcbiAgICB0aGlzLm5hbWUgPSAnUGFyYW1ldGVyRXJyb3InXG4gIH1cbn1cblxuY2xhc3MgTGlua0xvb2t1cEVycm9yIGV4dGVuZHMgRXJyb3Ige1xuICBjb25zdHJ1Y3RvciAobWVzc2FnZSkge1xuICAgIHN1cGVyKG1lc3NhZ2UpXG4gICAgdGhpcy5tZXNzYWdlID0gbWVzc2FnZVxuICAgIHRoaXMubmFtZSA9ICdMaW5rTG9va3VwRXJyb3InXG4gIH1cbn1cblxuY2xhc3MgRXJyb3JNZXNzYWdlIGV4dGVuZHMgRXJyb3Ige1xuICBjb25zdHJ1Y3RvciAobWVzc2FnZSwgY29udGVudCkge1xuICAgIHN1cGVyKG1lc3NhZ2UpXG4gICAgdGhpcy5tZXNzYWdlID0gbWVzc2FnZVxuICAgIHRoaXMuY29udGVudCA9IGNvbnRlbnRcbiAgICB0aGlzLm5hbWUgPSAnRXJyb3JNZXNzYWdlJ1xuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBQYXJhbWV0ZXJFcnJvcjogUGFyYW1ldGVyRXJyb3IsXG4gIExpbmtMb29rdXBFcnJvcjogTGlua0xvb2t1cEVycm9yLFxuICBFcnJvck1lc3NhZ2U6IEVycm9yTWVzc2FnZVxufVxuIiwiY29uc3QgYXV0aCA9IHJlcXVpcmUoJy4vYXV0aCcpXG5jb25zdCBjbGllbnQgPSByZXF1aXJlKCcuL2NsaWVudCcpXG5jb25zdCBjb2RlY3MgPSByZXF1aXJlKCcuL2NvZGVjcycpXG5jb25zdCBkb2N1bWVudCA9IHJlcXVpcmUoJy4vZG9jdW1lbnQnKVxuY29uc3QgZXJyb3JzID0gcmVxdWlyZSgnLi9lcnJvcnMnKVxuY29uc3QgdHJhbnNwb3J0cyA9IHJlcXVpcmUoJy4vdHJhbnNwb3J0cycpXG5jb25zdCB1dGlscyA9IHJlcXVpcmUoJy4vdXRpbHMnKVxuXG5jb25zdCBjb3JlYXBpID0ge1xuICBDbGllbnQ6IGNsaWVudC5DbGllbnQsXG4gIERvY3VtZW50OiBkb2N1bWVudC5Eb2N1bWVudCxcbiAgTGluazogZG9jdW1lbnQuTGluayxcbiAgYXV0aDogYXV0aCxcbiAgY29kZWNzOiBjb2RlY3MsXG4gIGVycm9yczogZXJyb3JzLFxuICB0cmFuc3BvcnRzOiB0cmFuc3BvcnRzLFxuICB1dGlsczogdXRpbHNcbn1cblxubW9kdWxlLmV4cG9ydHMgPSBjb3JlYXBpXG4iLCJjb25zdCBmZXRjaCA9IHJlcXVpcmUoJ2lzb21vcnBoaWMtZmV0Y2gnKVxuY29uc3QgZXJyb3JzID0gcmVxdWlyZSgnLi4vZXJyb3JzJylcbmNvbnN0IHV0aWxzID0gcmVxdWlyZSgnLi4vdXRpbHMnKVxuY29uc3QgVVJMID0gcmVxdWlyZSgndXJsLXBhcnNlJylcbmNvbnN0IHVybFRlbXBsYXRlID0gcmVxdWlyZSgndXJsLXRlbXBsYXRlJylcblxuY29uc3QgcGFyc2VSZXNwb25zZSA9IChyZXNwb25zZSwgZGVjb2RlcnMsIHJlc3BvbnNlQ2FsbGJhY2spID0+IHtcbiAgcmV0dXJuIHJlc3BvbnNlLnRleHQoKS50aGVuKHRleHQgPT4ge1xuICAgIGlmIChyZXNwb25zZUNhbGxiYWNrKSB7XG4gICAgICByZXNwb25zZUNhbGxiYWNrKHJlc3BvbnNlLCB0ZXh0KVxuICAgIH1cbiAgICBjb25zdCBjb250ZW50VHlwZSA9IHJlc3BvbnNlLmhlYWRlcnMuZ2V0KCdDb250ZW50LVR5cGUnKVxuICAgIGNvbnN0IGRlY29kZXIgPSB1dGlscy5uZWdvdGlhdGVEZWNvZGVyKGRlY29kZXJzLCBjb250ZW50VHlwZSlcbiAgICBjb25zdCBvcHRpb25zID0ge3VybDogcmVzcG9uc2UudXJsfVxuICAgIHJldHVybiBkZWNvZGVyLmRlY29kZSh0ZXh0LCBvcHRpb25zKVxuICB9KVxufVxuXG5jbGFzcyBIVFRQVHJhbnNwb3J0IHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIHRoaXMuc2NoZW1lcyA9IFsnaHR0cCcsICdodHRwcyddXG4gICAgdGhpcy5hdXRoID0gb3B0aW9ucy5hdXRoIHx8IG51bGxcbiAgICB0aGlzLmhlYWRlcnMgPSBvcHRpb25zLmhlYWRlcnMgfHwge31cbiAgICB0aGlzLmZldGNoID0gb3B0aW9ucy5mZXRjaCB8fCBmZXRjaFxuICAgIHRoaXMuRm9ybURhdGEgPSBvcHRpb25zLkZvcm1EYXRhIHx8IHdpbmRvdy5Gb3JtRGF0YVxuICAgIHRoaXMucmVxdWVzdENhbGxiYWNrID0gb3B0aW9ucy5yZXF1ZXN0Q2FsbGJhY2tcbiAgICB0aGlzLnJlc3BvbnNlQ2FsbGJhY2sgPSBvcHRpb25zLnJlc3BvbnNlQ2FsbGJhY2tcbiAgfVxuXG4gIGJ1aWxkUmVxdWVzdCAobGluaywgZGVjb2RlcnMsIHBhcmFtcyA9IHt9KSB7XG4gICAgY29uc3QgZmllbGRzID0gbGluay5maWVsZHNcbiAgICBjb25zdCBtZXRob2QgPSBsaW5rLm1ldGhvZC50b1VwcGVyQ2FzZSgpXG4gICAgbGV0IHF1ZXJ5UGFyYW1zID0ge31cbiAgICBsZXQgcGF0aFBhcmFtcyA9IHt9XG4gICAgbGV0IGZvcm1QYXJhbXMgPSB7fVxuICAgIGxldCBmaWVsZE5hbWVzID0gW11cbiAgICBsZXQgaGFzQm9keSA9IGZhbHNlXG5cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBmaWVsZHMubGVuZ3RoOyBpZHggPCBsZW47IGlkeCsrKSB7XG4gICAgICBjb25zdCBmaWVsZCA9IGZpZWxkc1tpZHhdXG5cbiAgICAgIC8vIEVuc3VyZSBhbnkgcmVxdWlyZWQgZmllbGRzIGFyZSBpbmNsdWRlZFxuICAgICAgaWYgKCFwYXJhbXMuaGFzT3duUHJvcGVydHkoZmllbGQubmFtZSkpIHtcbiAgICAgICAgaWYgKGZpZWxkLnJlcXVpcmVkKSB7XG4gICAgICAgICAgdGhyb3cgbmV3IGVycm9ycy5QYXJhbWV0ZXJFcnJvcihgTWlzc2luZyByZXF1aXJlZCBmaWVsZDogXCIke2ZpZWxkLm5hbWV9XCJgKVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGNvbnRpbnVlXG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgZmllbGROYW1lcy5wdXNoKGZpZWxkLm5hbWUpXG4gICAgICBpZiAoZmllbGQubG9jYXRpb24gPT09ICdxdWVyeScpIHtcbiAgICAgICAgcXVlcnlQYXJhbXNbZmllbGQubmFtZV0gPSBwYXJhbXNbZmllbGQubmFtZV1cbiAgICAgIH0gZWxzZSBpZiAoZmllbGQubG9jYXRpb24gPT09ICdwYXRoJykge1xuICAgICAgICBwYXRoUGFyYW1zW2ZpZWxkLm5hbWVdID0gcGFyYW1zW2ZpZWxkLm5hbWVdXG4gICAgICB9IGVsc2UgaWYgKGZpZWxkLmxvY2F0aW9uID09PSAnZm9ybScpIHtcbiAgICAgICAgZm9ybVBhcmFtc1tmaWVsZC5uYW1lXSA9IHBhcmFtc1tmaWVsZC5uYW1lXVxuICAgICAgICBoYXNCb2R5ID0gdHJ1ZVxuICAgICAgfSBlbHNlIGlmIChmaWVsZC5sb2NhdGlvbiA9PT0gJ2JvZHknKSB7XG4gICAgICAgIGZvcm1QYXJhbXMgPSBwYXJhbXNbZmllbGQubmFtZV1cbiAgICAgICAgaGFzQm9keSA9IHRydWVcbiAgICAgIH1cbiAgICB9XG5cbiAgICAvLyBDaGVjayBmb3IgYW55IHBhcmFtZXRlcnMgdGhhdCBkaWQgbm90IGhhdmUgYSBtYXRjaGluZyBmaWVsZFxuICAgIGZvciAodmFyIHByb3BlcnR5IGluIHBhcmFtcykge1xuICAgICAgaWYgKHBhcmFtcy5oYXNPd25Qcm9wZXJ0eShwcm9wZXJ0eSkgJiYgIWZpZWxkTmFtZXMuaW5jbHVkZXMocHJvcGVydHkpKSB7XG4gICAgICAgIHRocm93IG5ldyBlcnJvcnMuUGFyYW1ldGVyRXJyb3IoYFVua25vd24gcGFyYW1ldGVyOiBcIiR7cHJvcGVydHl9XCJgKVxuICAgICAgfVxuICAgIH1cblxuICAgIGxldCByZXF1ZXN0T3B0aW9ucyA9IHttZXRob2Q6IG1ldGhvZCwgaGVhZGVyczoge319XG5cbiAgICBPYmplY3QuYXNzaWduKHJlcXVlc3RPcHRpb25zLmhlYWRlcnMsIHRoaXMuaGVhZGVycylcblxuICAgIGlmIChoYXNCb2R5KSB7XG4gICAgICBpZiAobGluay5lbmNvZGluZyA9PT0gJ2FwcGxpY2F0aW9uL2pzb24nKSB7XG4gICAgICAgIHJlcXVlc3RPcHRpb25zLmJvZHkgPSBKU09OLnN0cmluZ2lmeShmb3JtUGFyYW1zKVxuICAgICAgICByZXF1ZXN0T3B0aW9ucy5oZWFkZXJzWydDb250ZW50LVR5cGUnXSA9ICdhcHBsaWNhdGlvbi9qc29uJ1xuICAgICAgfSBlbHNlIGlmIChsaW5rLmVuY29kaW5nID09PSAnbXVsdGlwYXJ0L2Zvcm0tZGF0YScpIHtcbiAgICAgICAgbGV0IGZvcm0gPSBuZXcgdGhpcy5Gb3JtRGF0YSgpXG5cbiAgICAgICAgZm9yIChsZXQgcGFyYW1LZXkgaW4gZm9ybVBhcmFtcykge1xuICAgICAgICAgIGZvcm0uYXBwZW5kKHBhcmFtS2V5LCBmb3JtUGFyYW1zW3BhcmFtS2V5XSlcbiAgICAgICAgfVxuICAgICAgICByZXF1ZXN0T3B0aW9ucy5ib2R5ID0gZm9ybVxuICAgICAgfSBlbHNlIGlmIChsaW5rLmVuY29kaW5nID09PSAnYXBwbGljYXRpb24veC13d3ctZm9ybS11cmxlbmNvZGVkJykge1xuICAgICAgICBsZXQgZm9ybUJvZHkgPSBbXVxuICAgICAgICBmb3IgKGxldCBwYXJhbUtleSBpbiBmb3JtUGFyYW1zKSB7XG4gICAgICAgICAgY29uc3QgZW5jb2RlZEtleSA9IGVuY29kZVVSSUNvbXBvbmVudChwYXJhbUtleSlcbiAgICAgICAgICBjb25zdCBlbmNvZGVkVmFsdWUgPSBlbmNvZGVVUklDb21wb25lbnQoZm9ybVBhcmFtc1twYXJhbUtleV0pXG4gICAgICAgICAgZm9ybUJvZHkucHVzaChlbmNvZGVkS2V5ICsgJz0nICsgZW5jb2RlZFZhbHVlKVxuICAgICAgICB9XG4gICAgICAgIGZvcm1Cb2R5ID0gZm9ybUJvZHkuam9pbignJicpXG5cbiAgICAgICAgcmVxdWVzdE9wdGlvbnMuYm9keSA9IGZvcm1Cb2R5XG4gICAgICAgIHJlcXVlc3RPcHRpb25zLmhlYWRlcnNbJ0NvbnRlbnQtVHlwZSddID0gJ2FwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZCdcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAodGhpcy5hdXRoKSB7XG4gICAgICByZXF1ZXN0T3B0aW9ucyA9IHRoaXMuYXV0aC5hdXRoZW50aWNhdGUocmVxdWVzdE9wdGlvbnMpXG4gICAgfVxuXG4gICAgbGV0IHBhcnNlZFVybCA9IHVybFRlbXBsYXRlLnBhcnNlKGxpbmsudXJsKVxuICAgIHBhcnNlZFVybCA9IHBhcnNlZFVybC5leHBhbmQocGF0aFBhcmFtcylcbiAgICBwYXJzZWRVcmwgPSBuZXcgVVJMKHBhcnNlZFVybClcbiAgICBwYXJzZWRVcmwuc2V0KCdxdWVyeScsIHF1ZXJ5UGFyYW1zKVxuXG4gICAgcmV0dXJuIHtcbiAgICAgIHVybDogcGFyc2VkVXJsLnRvU3RyaW5nKCksXG4gICAgICBvcHRpb25zOiByZXF1ZXN0T3B0aW9uc1xuICAgIH1cbiAgfVxuXG4gIGFjdGlvbiAobGluaywgZGVjb2RlcnMsIHBhcmFtcyA9IHt9KSB7XG4gICAgY29uc3QgcmVzcG9uc2VDYWxsYmFjayA9IHRoaXMucmVzcG9uc2VDYWxsYmFja1xuICAgIGNvbnN0IHJlcXVlc3QgPSB0aGlzLmJ1aWxkUmVxdWVzdChsaW5rLCBkZWNvZGVycywgcGFyYW1zKVxuXG4gICAgaWYgKHRoaXMucmVxdWVzdENhbGxiYWNrKSB7XG4gICAgICB0aGlzLnJlcXVlc3RDYWxsYmFjayhyZXF1ZXN0KVxuICAgIH1cblxuICAgIHJldHVybiB0aGlzLmZldGNoKHJlcXVlc3QudXJsLCByZXF1ZXN0Lm9wdGlvbnMpXG4gICAgICAudGhlbihmdW5jdGlvbiAocmVzcG9uc2UpIHtcbiAgICAgICAgaWYgKHJlc3BvbnNlLnN0YXR1cyA9PT0gMjA0KSB7XG4gICAgICAgICAgcmV0dXJuXG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHBhcnNlUmVzcG9uc2UocmVzcG9uc2UsIGRlY29kZXJzLCByZXNwb25zZUNhbGxiYWNrKVxuICAgICAgICAgIC50aGVuKGZ1bmN0aW9uIChkYXRhKSB7XG4gICAgICAgICAgICBpZiAocmVzcG9uc2Uub2spIHtcbiAgICAgICAgICAgICAgcmV0dXJuIGRhdGFcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgIGNvbnN0IHRpdGxlID0gcmVzcG9uc2Uuc3RhdHVzICsgJyAnICsgcmVzcG9uc2Uuc3RhdHVzVGV4dFxuICAgICAgICAgICAgICBjb25zdCBlcnJvciA9IG5ldyBlcnJvcnMuRXJyb3JNZXNzYWdlKHRpdGxlLCBkYXRhKVxuICAgICAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZWplY3QoZXJyb3IpXG4gICAgICAgICAgICB9XG4gICAgICAgICAgfSlcbiAgICAgIH0pXG4gIH1cbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIEhUVFBUcmFuc3BvcnQ6IEhUVFBUcmFuc3BvcnRcbn1cbiIsImNvbnN0IGh0dHAgPSByZXF1aXJlKCcuL2h0dHAnKVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgSFRUUFRyYW5zcG9ydDogaHR0cC5IVFRQVHJhbnNwb3J0XG59XG4iLCJjb25zdCBVUkwgPSByZXF1aXJlKCd1cmwtcGFyc2UnKVxuXG5jb25zdCBkZXRlcm1pbmVUcmFuc3BvcnQgPSBmdW5jdGlvbiAodHJhbnNwb3J0cywgdXJsKSB7XG4gIGNvbnN0IHBhcnNlZFVybCA9IG5ldyBVUkwodXJsKVxuICBjb25zdCBzY2hlbWUgPSBwYXJzZWRVcmwucHJvdG9jb2wucmVwbGFjZSgnOicsICcnKVxuXG4gIGZvciAobGV0IHRyYW5zcG9ydCBvZiB0cmFuc3BvcnRzKSB7XG4gICAgaWYgKHRyYW5zcG9ydC5zY2hlbWVzLmluY2x1ZGVzKHNjaGVtZSkpIHtcbiAgICAgIHJldHVybiB0cmFuc3BvcnRcbiAgICB9XG4gIH1cblxuICB0aHJvdyBFcnJvcihgVW5zdXBwb3J0ZWQgc2NoZW1lIGluIFVSTDogJHt1cmx9YClcbn1cblxuY29uc3QgbmVnb3RpYXRlRGVjb2RlciA9IGZ1bmN0aW9uIChkZWNvZGVycywgY29udGVudFR5cGUpIHtcbiAgaWYgKGNvbnRlbnRUeXBlID09PSB1bmRlZmluZWQgfHwgY29udGVudFR5cGUgPT09IG51bGwpIHtcbiAgICByZXR1cm4gZGVjb2RlcnNbMF1cbiAgfVxuXG4gIGNvbnN0IGZ1bGxUeXBlID0gY29udGVudFR5cGUudG9Mb3dlckNhc2UoKS5zcGxpdCgnOycpWzBdLnRyaW0oKVxuICBjb25zdCBtYWluVHlwZSA9IGZ1bGxUeXBlLnNwbGl0KCcvJylbMF0gKyAnLyonXG4gIGNvbnN0IHdpbGRjYXJkVHlwZSA9ICcqLyonXG4gIGNvbnN0IGFjY2VwdGFibGVUeXBlcyA9IFtmdWxsVHlwZSwgbWFpblR5cGUsIHdpbGRjYXJkVHlwZV1cblxuICBmb3IgKGxldCBkZWNvZGVyIG9mIGRlY29kZXJzKSB7XG4gICAgaWYgKGFjY2VwdGFibGVUeXBlcy5pbmNsdWRlcyhkZWNvZGVyLm1lZGlhVHlwZSkpIHtcbiAgICAgIHJldHVybiBkZWNvZGVyXG4gICAgfVxuICB9XG5cbiAgdGhyb3cgRXJyb3IoYFVuc3VwcG9ydGVkIG1lZGlhIGluIENvbnRlbnQtVHlwZSBoZWFkZXI6ICR7Y29udGVudFR5cGV9YClcbn1cblxuY29uc3QgY3NyZlNhZmVNZXRob2QgPSBmdW5jdGlvbiAobWV0aG9kKSB7XG4gIC8vIHRoZXNlIEhUVFAgbWV0aG9kcyBkbyBub3QgcmVxdWlyZSBDU1JGIHByb3RlY3Rpb25cbiAgcmV0dXJuICgvXihHRVR8SEVBRHxPUFRJT05TfFRSQUNFKSQvLnRlc3QobWV0aG9kKSlcbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIGRldGVybWluZVRyYW5zcG9ydDogZGV0ZXJtaW5lVHJhbnNwb3J0LFxuICBuZWdvdGlhdGVEZWNvZGVyOiBuZWdvdGlhdGVEZWNvZGVyLFxuICBjc3JmU2FmZU1ldGhvZDogY3NyZlNhZmVNZXRob2Rcbn1cbiIsIi8vIHRoZSB3aGF0d2ctZmV0Y2ggcG9seWZpbGwgaW5zdGFsbHMgdGhlIGZldGNoKCkgZnVuY3Rpb25cbi8vIG9uIHRoZSBnbG9iYWwgb2JqZWN0ICh3aW5kb3cgb3Igc2VsZilcbi8vXG4vLyBSZXR1cm4gdGhhdCBhcyB0aGUgZXhwb3J0IGZvciB1c2UgaW4gV2VicGFjaywgQnJvd3NlcmlmeSBldGMuXG5yZXF1aXJlKCd3aGF0d2ctZmV0Y2gnKTtcbm1vZHVsZS5leHBvcnRzID0gc2VsZi5mZXRjaC5iaW5kKHNlbGYpO1xuIiwiJ3VzZSBzdHJpY3QnO1xuXG52YXIgaGFzID0gT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eTtcblxuLyoqXG4gKiBTaW1wbGUgcXVlcnkgc3RyaW5nIHBhcnNlci5cbiAqXG4gKiBAcGFyYW0ge1N0cmluZ30gcXVlcnkgVGhlIHF1ZXJ5IHN0cmluZyB0aGF0IG5lZWRzIHRvIGJlIHBhcnNlZC5cbiAqIEByZXR1cm5zIHtPYmplY3R9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5mdW5jdGlvbiBxdWVyeXN0cmluZyhxdWVyeSkge1xuICB2YXIgcGFyc2VyID0gLyhbXj0/Jl0rKT0/KFteJl0qKS9nXG4gICAgLCByZXN1bHQgPSB7fVxuICAgICwgcGFydDtcblxuICAvL1xuICAvLyBMaXR0bGUgbmlmdHkgcGFyc2luZyBoYWNrLCBsZXZlcmFnZSB0aGUgZmFjdCB0aGF0IFJlZ0V4cC5leGVjIGluY3JlbWVudHNcbiAgLy8gdGhlIGxhc3RJbmRleCBwcm9wZXJ0eSBzbyB3ZSBjYW4gY29udGludWUgZXhlY3V0aW5nIHRoaXMgbG9vcCB1bnRpbCB3ZSd2ZVxuICAvLyBwYXJzZWQgYWxsIHJlc3VsdHMuXG4gIC8vXG4gIGZvciAoO1xuICAgIHBhcnQgPSBwYXJzZXIuZXhlYyhxdWVyeSk7XG4gICAgcmVzdWx0W2RlY29kZVVSSUNvbXBvbmVudChwYXJ0WzFdKV0gPSBkZWNvZGVVUklDb21wb25lbnQocGFydFsyXSlcbiAgKTtcblxuICByZXR1cm4gcmVzdWx0O1xufVxuXG4vKipcbiAqIFRyYW5zZm9ybSBhIHF1ZXJ5IHN0cmluZyB0byBhbiBvYmplY3QuXG4gKlxuICogQHBhcmFtIHtPYmplY3R9IG9iaiBPYmplY3QgdGhhdCBzaG91bGQgYmUgdHJhbnNmb3JtZWQuXG4gKiBAcGFyYW0ge1N0cmluZ30gcHJlZml4IE9wdGlvbmFsIHByZWZpeC5cbiAqIEByZXR1cm5zIHtTdHJpbmd9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5mdW5jdGlvbiBxdWVyeXN0cmluZ2lmeShvYmosIHByZWZpeCkge1xuICBwcmVmaXggPSBwcmVmaXggfHwgJyc7XG5cbiAgdmFyIHBhaXJzID0gW107XG5cbiAgLy9cbiAgLy8gT3B0aW9uYWxseSBwcmVmaXggd2l0aCBhICc/JyBpZiBuZWVkZWRcbiAgLy9cbiAgaWYgKCdzdHJpbmcnICE9PSB0eXBlb2YgcHJlZml4KSBwcmVmaXggPSAnPyc7XG5cbiAgZm9yICh2YXIga2V5IGluIG9iaikge1xuICAgIGlmIChoYXMuY2FsbChvYmosIGtleSkpIHtcbiAgICAgIHBhaXJzLnB1c2goZW5jb2RlVVJJQ29tcG9uZW50KGtleSkgKyc9JysgZW5jb2RlVVJJQ29tcG9uZW50KG9ialtrZXldKSk7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIHBhaXJzLmxlbmd0aCA/IHByZWZpeCArIHBhaXJzLmpvaW4oJyYnKSA6ICcnO1xufVxuXG4vL1xuLy8gRXhwb3NlIHRoZSBtb2R1bGUuXG4vL1xuZXhwb3J0cy5zdHJpbmdpZnkgPSBxdWVyeXN0cmluZ2lmeTtcbmV4cG9ydHMucGFyc2UgPSBxdWVyeXN0cmluZztcbiIsIid1c2Ugc3RyaWN0JztcblxuLyoqXG4gKiBDaGVjayBpZiB3ZSdyZSByZXF1aXJlZCB0byBhZGQgYSBwb3J0IG51bWJlci5cbiAqXG4gKiBAc2VlIGh0dHBzOi8vdXJsLnNwZWMud2hhdHdnLm9yZy8jZGVmYXVsdC1wb3J0XG4gKiBAcGFyYW0ge051bWJlcnxTdHJpbmd9IHBvcnQgUG9ydCBudW1iZXIgd2UgbmVlZCB0byBjaGVja1xuICogQHBhcmFtIHtTdHJpbmd9IHByb3RvY29sIFByb3RvY29sIHdlIG5lZWQgdG8gY2hlY2sgYWdhaW5zdC5cbiAqIEByZXR1cm5zIHtCb29sZWFufSBJcyBpdCBhIGRlZmF1bHQgcG9ydCBmb3IgdGhlIGdpdmVuIHByb3RvY29sXG4gKiBAYXBpIHByaXZhdGVcbiAqL1xubW9kdWxlLmV4cG9ydHMgPSBmdW5jdGlvbiByZXF1aXJlZChwb3J0LCBwcm90b2NvbCkge1xuICBwcm90b2NvbCA9IHByb3RvY29sLnNwbGl0KCc6JylbMF07XG4gIHBvcnQgPSArcG9ydDtcblxuICBpZiAoIXBvcnQpIHJldHVybiBmYWxzZTtcblxuICBzd2l0Y2ggKHByb3RvY29sKSB7XG4gICAgY2FzZSAnaHR0cCc6XG4gICAgY2FzZSAnd3MnOlxuICAgIHJldHVybiBwb3J0ICE9PSA4MDtcblxuICAgIGNhc2UgJ2h0dHBzJzpcbiAgICBjYXNlICd3c3MnOlxuICAgIHJldHVybiBwb3J0ICE9PSA0NDM7XG5cbiAgICBjYXNlICdmdHAnOlxuICAgIHJldHVybiBwb3J0ICE9PSAyMTtcblxuICAgIGNhc2UgJ2dvcGhlcic6XG4gICAgcmV0dXJuIHBvcnQgIT09IDcwO1xuXG4gICAgY2FzZSAnZmlsZSc6XG4gICAgcmV0dXJuIGZhbHNlO1xuICB9XG5cbiAgcmV0dXJuIHBvcnQgIT09IDA7XG59O1xuIiwiJ3VzZSBzdHJpY3QnO1xuXG52YXIgcmVxdWlyZWQgPSByZXF1aXJlKCdyZXF1aXJlcy1wb3J0JylcbiAgLCBsb2xjYXRpb24gPSByZXF1aXJlKCcuL2xvbGNhdGlvbicpXG4gICwgcXMgPSByZXF1aXJlKCdxdWVyeXN0cmluZ2lmeScpXG4gICwgcHJvdG9jb2xyZSA9IC9eKFthLXpdW2EtejAtOS4rLV0qOik/KFxcL1xcLyk/KFtcXFNcXHNdKikvaTtcblxuLyoqXG4gKiBUaGVzZSBhcmUgdGhlIHBhcnNlIHJ1bGVzIGZvciB0aGUgVVJMIHBhcnNlciwgaXQgaW5mb3JtcyB0aGUgcGFyc2VyXG4gKiBhYm91dDpcbiAqXG4gKiAwLiBUaGUgY2hhciBpdCBOZWVkcyB0byBwYXJzZSwgaWYgaXQncyBhIHN0cmluZyBpdCBzaG91bGQgYmUgZG9uZSB1c2luZ1xuICogICAgaW5kZXhPZiwgUmVnRXhwIHVzaW5nIGV4ZWMgYW5kIE5hTiBtZWFucyBzZXQgYXMgY3VycmVudCB2YWx1ZS5cbiAqIDEuIFRoZSBwcm9wZXJ0eSB3ZSBzaG91bGQgc2V0IHdoZW4gcGFyc2luZyB0aGlzIHZhbHVlLlxuICogMi4gSW5kaWNhdGlvbiBpZiBpdCdzIGJhY2t3YXJkcyBvciBmb3J3YXJkIHBhcnNpbmcsIHdoZW4gc2V0IGFzIG51bWJlciBpdCdzXG4gKiAgICB0aGUgdmFsdWUgb2YgZXh0cmEgY2hhcnMgdGhhdCBzaG91bGQgYmUgc3BsaXQgb2ZmLlxuICogMy4gSW5oZXJpdCBmcm9tIGxvY2F0aW9uIGlmIG5vbiBleGlzdGluZyBpbiB0aGUgcGFyc2VyLlxuICogNC4gYHRvTG93ZXJDYXNlYCB0aGUgcmVzdWx0aW5nIHZhbHVlLlxuICovXG52YXIgcnVsZXMgPSBbXG4gIFsnIycsICdoYXNoJ10sICAgICAgICAgICAgICAgICAgICAgICAgLy8gRXh0cmFjdCBmcm9tIHRoZSBiYWNrLlxuICBbJz8nLCAncXVlcnknXSwgICAgICAgICAgICAgICAgICAgICAgIC8vIEV4dHJhY3QgZnJvbSB0aGUgYmFjay5cbiAgWycvJywgJ3BhdGhuYW1lJ10sICAgICAgICAgICAgICAgICAgICAvLyBFeHRyYWN0IGZyb20gdGhlIGJhY2suXG4gIFsnQCcsICdhdXRoJywgMV0sICAgICAgICAgICAgICAgICAgICAgLy8gRXh0cmFjdCBmcm9tIHRoZSBmcm9udC5cbiAgW05hTiwgJ2hvc3QnLCB1bmRlZmluZWQsIDEsIDFdLCAgICAgICAvLyBTZXQgbGVmdCBvdmVyIHZhbHVlLlxuICBbLzooXFxkKykkLywgJ3BvcnQnLCB1bmRlZmluZWQsIDFdLCAgICAvLyBSZWdFeHAgdGhlIGJhY2suXG4gIFtOYU4sICdob3N0bmFtZScsIHVuZGVmaW5lZCwgMSwgMV0gICAgLy8gU2V0IGxlZnQgb3Zlci5cbl07XG5cbi8qKlxuICogQHR5cGVkZWYgUHJvdG9jb2xFeHRyYWN0XG4gKiBAdHlwZSBPYmplY3RcbiAqIEBwcm9wZXJ0eSB7U3RyaW5nfSBwcm90b2NvbCBQcm90b2NvbCBtYXRjaGVkIGluIHRoZSBVUkwsIGluIGxvd2VyY2FzZS5cbiAqIEBwcm9wZXJ0eSB7Qm9vbGVhbn0gc2xhc2hlcyBgdHJ1ZWAgaWYgcHJvdG9jb2wgaXMgZm9sbG93ZWQgYnkgXCIvL1wiLCBlbHNlIGBmYWxzZWAuXG4gKiBAcHJvcGVydHkge1N0cmluZ30gcmVzdCBSZXN0IG9mIHRoZSBVUkwgdGhhdCBpcyBub3QgcGFydCBvZiB0aGUgcHJvdG9jb2wuXG4gKi9cblxuLyoqXG4gKiBFeHRyYWN0IHByb3RvY29sIGluZm9ybWF0aW9uIGZyb20gYSBVUkwgd2l0aC93aXRob3V0IGRvdWJsZSBzbGFzaCAoXCIvL1wiKS5cbiAqXG4gKiBAcGFyYW0ge1N0cmluZ30gYWRkcmVzcyBVUkwgd2Ugd2FudCB0byBleHRyYWN0IGZyb20uXG4gKiBAcmV0dXJuIHtQcm90b2NvbEV4dHJhY3R9IEV4dHJhY3RlZCBpbmZvcm1hdGlvbi5cbiAqIEBhcGkgcHJpdmF0ZVxuICovXG5mdW5jdGlvbiBleHRyYWN0UHJvdG9jb2woYWRkcmVzcykge1xuICB2YXIgbWF0Y2ggPSBwcm90b2NvbHJlLmV4ZWMoYWRkcmVzcyk7XG5cbiAgcmV0dXJuIHtcbiAgICBwcm90b2NvbDogbWF0Y2hbMV0gPyBtYXRjaFsxXS50b0xvd2VyQ2FzZSgpIDogJycsXG4gICAgc2xhc2hlczogISFtYXRjaFsyXSxcbiAgICByZXN0OiBtYXRjaFszXVxuICB9O1xufVxuXG4vKipcbiAqIFJlc29sdmUgYSByZWxhdGl2ZSBVUkwgcGF0aG5hbWUgYWdhaW5zdCBhIGJhc2UgVVJMIHBhdGhuYW1lLlxuICpcbiAqIEBwYXJhbSB7U3RyaW5nfSByZWxhdGl2ZSBQYXRobmFtZSBvZiB0aGUgcmVsYXRpdmUgVVJMLlxuICogQHBhcmFtIHtTdHJpbmd9IGJhc2UgUGF0aG5hbWUgb2YgdGhlIGJhc2UgVVJMLlxuICogQHJldHVybiB7U3RyaW5nfSBSZXNvbHZlZCBwYXRobmFtZS5cbiAqIEBhcGkgcHJpdmF0ZVxuICovXG5mdW5jdGlvbiByZXNvbHZlKHJlbGF0aXZlLCBiYXNlKSB7XG4gIHZhciBwYXRoID0gKGJhc2UgfHwgJy8nKS5zcGxpdCgnLycpLnNsaWNlKDAsIC0xKS5jb25jYXQocmVsYXRpdmUuc3BsaXQoJy8nKSlcbiAgICAsIGkgPSBwYXRoLmxlbmd0aFxuICAgICwgbGFzdCA9IHBhdGhbaSAtIDFdXG4gICAgLCB1bnNoaWZ0ID0gZmFsc2VcbiAgICAsIHVwID0gMDtcblxuICB3aGlsZSAoaS0tKSB7XG4gICAgaWYgKHBhdGhbaV0gPT09ICcuJykge1xuICAgICAgcGF0aC5zcGxpY2UoaSwgMSk7XG4gICAgfSBlbHNlIGlmIChwYXRoW2ldID09PSAnLi4nKSB7XG4gICAgICBwYXRoLnNwbGljZShpLCAxKTtcbiAgICAgIHVwKys7XG4gICAgfSBlbHNlIGlmICh1cCkge1xuICAgICAgaWYgKGkgPT09IDApIHVuc2hpZnQgPSB0cnVlO1xuICAgICAgcGF0aC5zcGxpY2UoaSwgMSk7XG4gICAgICB1cC0tO1xuICAgIH1cbiAgfVxuXG4gIGlmICh1bnNoaWZ0KSBwYXRoLnVuc2hpZnQoJycpO1xuICBpZiAobGFzdCA9PT0gJy4nIHx8IGxhc3QgPT09ICcuLicpIHBhdGgucHVzaCgnJyk7XG5cbiAgcmV0dXJuIHBhdGguam9pbignLycpO1xufVxuXG4vKipcbiAqIFRoZSBhY3R1YWwgVVJMIGluc3RhbmNlLiBJbnN0ZWFkIG9mIHJldHVybmluZyBhbiBvYmplY3Qgd2UndmUgb3B0ZWQtaW4gdG9cbiAqIGNyZWF0ZSBhbiBhY3R1YWwgY29uc3RydWN0b3IgYXMgaXQncyBtdWNoIG1vcmUgbWVtb3J5IGVmZmljaWVudCBhbmRcbiAqIGZhc3RlciBhbmQgaXQgcGxlYXNlcyBteSBPQ0QuXG4gKlxuICogQGNvbnN0cnVjdG9yXG4gKiBAcGFyYW0ge1N0cmluZ30gYWRkcmVzcyBVUkwgd2Ugd2FudCB0byBwYXJzZS5cbiAqIEBwYXJhbSB7T2JqZWN0fFN0cmluZ30gbG9jYXRpb24gTG9jYXRpb24gZGVmYXVsdHMgZm9yIHJlbGF0aXZlIHBhdGhzLlxuICogQHBhcmFtIHtCb29sZWFufEZ1bmN0aW9ufSBwYXJzZXIgUGFyc2VyIGZvciB0aGUgcXVlcnkgc3RyaW5nLlxuICogQGFwaSBwdWJsaWNcbiAqL1xuZnVuY3Rpb24gVVJMKGFkZHJlc3MsIGxvY2F0aW9uLCBwYXJzZXIpIHtcbiAgaWYgKCEodGhpcyBpbnN0YW5jZW9mIFVSTCkpIHtcbiAgICByZXR1cm4gbmV3IFVSTChhZGRyZXNzLCBsb2NhdGlvbiwgcGFyc2VyKTtcbiAgfVxuXG4gIHZhciByZWxhdGl2ZSwgZXh0cmFjdGVkLCBwYXJzZSwgaW5zdHJ1Y3Rpb24sIGluZGV4LCBrZXlcbiAgICAsIGluc3RydWN0aW9ucyA9IHJ1bGVzLnNsaWNlKClcbiAgICAsIHR5cGUgPSB0eXBlb2YgbG9jYXRpb25cbiAgICAsIHVybCA9IHRoaXNcbiAgICAsIGkgPSAwO1xuXG4gIC8vXG4gIC8vIFRoZSBmb2xsb3dpbmcgaWYgc3RhdGVtZW50cyBhbGxvd3MgdGhpcyBtb2R1bGUgdHdvIGhhdmUgY29tcGF0aWJpbGl0eSB3aXRoXG4gIC8vIDIgZGlmZmVyZW50IEFQSTpcbiAgLy9cbiAgLy8gMS4gTm9kZS5qcydzIGB1cmwucGFyc2VgIGFwaSB3aGljaCBhY2NlcHRzIGEgVVJMLCBib29sZWFuIGFzIGFyZ3VtZW50c1xuICAvLyAgICB3aGVyZSB0aGUgYm9vbGVhbiBpbmRpY2F0ZXMgdGhhdCB0aGUgcXVlcnkgc3RyaW5nIHNob3VsZCBhbHNvIGJlIHBhcnNlZC5cbiAgLy9cbiAgLy8gMi4gVGhlIGBVUkxgIGludGVyZmFjZSBvZiB0aGUgYnJvd3NlciB3aGljaCBhY2NlcHRzIGEgVVJMLCBvYmplY3QgYXNcbiAgLy8gICAgYXJndW1lbnRzLiBUaGUgc3VwcGxpZWQgb2JqZWN0IHdpbGwgYmUgdXNlZCBhcyBkZWZhdWx0IHZhbHVlcyAvIGZhbGwtYmFja1xuICAvLyAgICBmb3IgcmVsYXRpdmUgcGF0aHMuXG4gIC8vXG4gIGlmICgnb2JqZWN0JyAhPT0gdHlwZSAmJiAnc3RyaW5nJyAhPT0gdHlwZSkge1xuICAgIHBhcnNlciA9IGxvY2F0aW9uO1xuICAgIGxvY2F0aW9uID0gbnVsbDtcbiAgfVxuXG4gIGlmIChwYXJzZXIgJiYgJ2Z1bmN0aW9uJyAhPT0gdHlwZW9mIHBhcnNlcikgcGFyc2VyID0gcXMucGFyc2U7XG5cbiAgbG9jYXRpb24gPSBsb2xjYXRpb24obG9jYXRpb24pO1xuXG4gIC8vXG4gIC8vIEV4dHJhY3QgcHJvdG9jb2wgaW5mb3JtYXRpb24gYmVmb3JlIHJ1bm5pbmcgdGhlIGluc3RydWN0aW9ucy5cbiAgLy9cbiAgZXh0cmFjdGVkID0gZXh0cmFjdFByb3RvY29sKGFkZHJlc3MgfHwgJycpO1xuICByZWxhdGl2ZSA9ICFleHRyYWN0ZWQucHJvdG9jb2wgJiYgIWV4dHJhY3RlZC5zbGFzaGVzO1xuICB1cmwuc2xhc2hlcyA9IGV4dHJhY3RlZC5zbGFzaGVzIHx8IHJlbGF0aXZlICYmIGxvY2F0aW9uLnNsYXNoZXM7XG4gIHVybC5wcm90b2NvbCA9IGV4dHJhY3RlZC5wcm90b2NvbCB8fCBsb2NhdGlvbi5wcm90b2NvbCB8fCAnJztcbiAgYWRkcmVzcyA9IGV4dHJhY3RlZC5yZXN0O1xuXG4gIC8vXG4gIC8vIFdoZW4gdGhlIGF1dGhvcml0eSBjb21wb25lbnQgaXMgYWJzZW50IHRoZSBVUkwgc3RhcnRzIHdpdGggYSBwYXRoXG4gIC8vIGNvbXBvbmVudC5cbiAgLy9cbiAgaWYgKCFleHRyYWN0ZWQuc2xhc2hlcykgaW5zdHJ1Y3Rpb25zWzJdID0gWy8oLiopLywgJ3BhdGhuYW1lJ107XG5cbiAgZm9yICg7IGkgPCBpbnN0cnVjdGlvbnMubGVuZ3RoOyBpKyspIHtcbiAgICBpbnN0cnVjdGlvbiA9IGluc3RydWN0aW9uc1tpXTtcbiAgICBwYXJzZSA9IGluc3RydWN0aW9uWzBdO1xuICAgIGtleSA9IGluc3RydWN0aW9uWzFdO1xuXG4gICAgaWYgKHBhcnNlICE9PSBwYXJzZSkge1xuICAgICAgdXJsW2tleV0gPSBhZGRyZXNzO1xuICAgIH0gZWxzZSBpZiAoJ3N0cmluZycgPT09IHR5cGVvZiBwYXJzZSkge1xuICAgICAgaWYgKH4oaW5kZXggPSBhZGRyZXNzLmluZGV4T2YocGFyc2UpKSkge1xuICAgICAgICBpZiAoJ251bWJlcicgPT09IHR5cGVvZiBpbnN0cnVjdGlvblsyXSkge1xuICAgICAgICAgIHVybFtrZXldID0gYWRkcmVzcy5zbGljZSgwLCBpbmRleCk7XG4gICAgICAgICAgYWRkcmVzcyA9IGFkZHJlc3Muc2xpY2UoaW5kZXggKyBpbnN0cnVjdGlvblsyXSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgdXJsW2tleV0gPSBhZGRyZXNzLnNsaWNlKGluZGV4KTtcbiAgICAgICAgICBhZGRyZXNzID0gYWRkcmVzcy5zbGljZSgwLCBpbmRleCk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9IGVsc2UgaWYgKGluZGV4ID0gcGFyc2UuZXhlYyhhZGRyZXNzKSkge1xuICAgICAgdXJsW2tleV0gPSBpbmRleFsxXTtcbiAgICAgIGFkZHJlc3MgPSBhZGRyZXNzLnNsaWNlKDAsIGluZGV4LmluZGV4KTtcbiAgICB9XG5cbiAgICB1cmxba2V5XSA9IHVybFtrZXldIHx8IChcbiAgICAgIHJlbGF0aXZlICYmIGluc3RydWN0aW9uWzNdID8gbG9jYXRpb25ba2V5XSB8fCAnJyA6ICcnXG4gICAgKTtcblxuICAgIC8vXG4gICAgLy8gSG9zdG5hbWUsIGhvc3QgYW5kIHByb3RvY29sIHNob3VsZCBiZSBsb3dlcmNhc2VkIHNvIHRoZXkgY2FuIGJlIHVzZWQgdG9cbiAgICAvLyBjcmVhdGUgYSBwcm9wZXIgYG9yaWdpbmAuXG4gICAgLy9cbiAgICBpZiAoaW5zdHJ1Y3Rpb25bNF0pIHVybFtrZXldID0gdXJsW2tleV0udG9Mb3dlckNhc2UoKTtcbiAgfVxuXG4gIC8vXG4gIC8vIEFsc28gcGFyc2UgdGhlIHN1cHBsaWVkIHF1ZXJ5IHN0cmluZyBpbiB0byBhbiBvYmplY3QuIElmIHdlJ3JlIHN1cHBsaWVkXG4gIC8vIHdpdGggYSBjdXN0b20gcGFyc2VyIGFzIGZ1bmN0aW9uIHVzZSB0aGF0IGluc3RlYWQgb2YgdGhlIGRlZmF1bHQgYnVpbGQtaW5cbiAgLy8gcGFyc2VyLlxuICAvL1xuICBpZiAocGFyc2VyKSB1cmwucXVlcnkgPSBwYXJzZXIodXJsLnF1ZXJ5KTtcblxuICAvL1xuICAvLyBJZiB0aGUgVVJMIGlzIHJlbGF0aXZlLCByZXNvbHZlIHRoZSBwYXRobmFtZSBhZ2FpbnN0IHRoZSBiYXNlIFVSTC5cbiAgLy9cbiAgaWYgKFxuICAgICAgcmVsYXRpdmVcbiAgICAmJiBsb2NhdGlvbi5zbGFzaGVzXG4gICAgJiYgdXJsLnBhdGhuYW1lLmNoYXJBdCgwKSAhPT0gJy8nXG4gICAgJiYgKHVybC5wYXRobmFtZSAhPT0gJycgfHwgbG9jYXRpb24ucGF0aG5hbWUgIT09ICcnKVxuICApIHtcbiAgICB1cmwucGF0aG5hbWUgPSByZXNvbHZlKHVybC5wYXRobmFtZSwgbG9jYXRpb24ucGF0aG5hbWUpO1xuICB9XG5cbiAgLy9cbiAgLy8gV2Ugc2hvdWxkIG5vdCBhZGQgcG9ydCBudW1iZXJzIGlmIHRoZXkgYXJlIGFscmVhZHkgdGhlIGRlZmF1bHQgcG9ydCBudW1iZXJcbiAgLy8gZm9yIGEgZ2l2ZW4gcHJvdG9jb2wuIEFzIHRoZSBob3N0IGFsc28gY29udGFpbnMgdGhlIHBvcnQgbnVtYmVyIHdlJ3JlIGdvaW5nXG4gIC8vIG92ZXJyaWRlIGl0IHdpdGggdGhlIGhvc3RuYW1lIHdoaWNoIGNvbnRhaW5zIG5vIHBvcnQgbnVtYmVyLlxuICAvL1xuICBpZiAoIXJlcXVpcmVkKHVybC5wb3J0LCB1cmwucHJvdG9jb2wpKSB7XG4gICAgdXJsLmhvc3QgPSB1cmwuaG9zdG5hbWU7XG4gICAgdXJsLnBvcnQgPSAnJztcbiAgfVxuXG4gIC8vXG4gIC8vIFBhcnNlIGRvd24gdGhlIGBhdXRoYCBmb3IgdGhlIHVzZXJuYW1lIGFuZCBwYXNzd29yZC5cbiAgLy9cbiAgdXJsLnVzZXJuYW1lID0gdXJsLnBhc3N3b3JkID0gJyc7XG4gIGlmICh1cmwuYXV0aCkge1xuICAgIGluc3RydWN0aW9uID0gdXJsLmF1dGguc3BsaXQoJzonKTtcbiAgICB1cmwudXNlcm5hbWUgPSBpbnN0cnVjdGlvblswXSB8fCAnJztcbiAgICB1cmwucGFzc3dvcmQgPSBpbnN0cnVjdGlvblsxXSB8fCAnJztcbiAgfVxuXG4gIHVybC5vcmlnaW4gPSB1cmwucHJvdG9jb2wgJiYgdXJsLmhvc3QgJiYgdXJsLnByb3RvY29sICE9PSAnZmlsZTonXG4gICAgPyB1cmwucHJvdG9jb2wgKycvLycrIHVybC5ob3N0XG4gICAgOiAnbnVsbCc7XG5cbiAgLy9cbiAgLy8gVGhlIGhyZWYgaXMganVzdCB0aGUgY29tcGlsZWQgcmVzdWx0LlxuICAvL1xuICB1cmwuaHJlZiA9IHVybC50b1N0cmluZygpO1xufVxuXG4vKipcbiAqIFRoaXMgaXMgY29udmVuaWVuY2UgbWV0aG9kIGZvciBjaGFuZ2luZyBwcm9wZXJ0aWVzIGluIHRoZSBVUkwgaW5zdGFuY2UgdG9cbiAqIGluc3VyZSB0aGF0IHRoZXkgYWxsIHByb3BhZ2F0ZSBjb3JyZWN0bHkuXG4gKlxuICogQHBhcmFtIHtTdHJpbmd9IHBhcnQgICAgICAgICAgUHJvcGVydHkgd2UgbmVlZCB0byBhZGp1c3QuXG4gKiBAcGFyYW0ge01peGVkfSB2YWx1ZSAgICAgICAgICBUaGUgbmV3bHkgYXNzaWduZWQgdmFsdWUuXG4gKiBAcGFyYW0ge0Jvb2xlYW58RnVuY3Rpb259IGZuICBXaGVuIHNldHRpbmcgdGhlIHF1ZXJ5LCBpdCB3aWxsIGJlIHRoZSBmdW5jdGlvblxuICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdXNlZCB0byBwYXJzZSB0aGUgcXVlcnkuXG4gKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBXaGVuIHNldHRpbmcgdGhlIHByb3RvY29sLCBkb3VibGUgc2xhc2ggd2lsbCBiZVxuICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVtb3ZlZCBmcm9tIHRoZSBmaW5hbCB1cmwgaWYgaXQgaXMgdHJ1ZS5cbiAqIEByZXR1cm5zIHtVUkx9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5VUkwucHJvdG90eXBlLnNldCA9IGZ1bmN0aW9uIHNldChwYXJ0LCB2YWx1ZSwgZm4pIHtcbiAgdmFyIHVybCA9IHRoaXM7XG5cbiAgc3dpdGNoIChwYXJ0KSB7XG4gICAgY2FzZSAncXVlcnknOlxuICAgICAgaWYgKCdzdHJpbmcnID09PSB0eXBlb2YgdmFsdWUgJiYgdmFsdWUubGVuZ3RoKSB7XG4gICAgICAgIHZhbHVlID0gKGZuIHx8IHFzLnBhcnNlKSh2YWx1ZSk7XG4gICAgICB9XG5cbiAgICAgIHVybFtwYXJ0XSA9IHZhbHVlO1xuICAgICAgYnJlYWs7XG5cbiAgICBjYXNlICdwb3J0JzpcbiAgICAgIHVybFtwYXJ0XSA9IHZhbHVlO1xuXG4gICAgICBpZiAoIXJlcXVpcmVkKHZhbHVlLCB1cmwucHJvdG9jb2wpKSB7XG4gICAgICAgIHVybC5ob3N0ID0gdXJsLmhvc3RuYW1lO1xuICAgICAgICB1cmxbcGFydF0gPSAnJztcbiAgICAgIH0gZWxzZSBpZiAodmFsdWUpIHtcbiAgICAgICAgdXJsLmhvc3QgPSB1cmwuaG9zdG5hbWUgKyc6JysgdmFsdWU7XG4gICAgICB9XG5cbiAgICAgIGJyZWFrO1xuXG4gICAgY2FzZSAnaG9zdG5hbWUnOlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG5cbiAgICAgIGlmICh1cmwucG9ydCkgdmFsdWUgKz0gJzonKyB1cmwucG9ydDtcbiAgICAgIHVybC5ob3N0ID0gdmFsdWU7XG4gICAgICBicmVhaztcblxuICAgIGNhc2UgJ2hvc3QnOlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG5cbiAgICAgIGlmICgvOlxcZCskLy50ZXN0KHZhbHVlKSkge1xuICAgICAgICB2YWx1ZSA9IHZhbHVlLnNwbGl0KCc6Jyk7XG4gICAgICAgIHVybC5wb3J0ID0gdmFsdWUucG9wKCk7XG4gICAgICAgIHVybC5ob3N0bmFtZSA9IHZhbHVlLmpvaW4oJzonKTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHVybC5ob3N0bmFtZSA9IHZhbHVlO1xuICAgICAgICB1cmwucG9ydCA9ICcnO1xuICAgICAgfVxuXG4gICAgICBicmVhaztcblxuICAgIGNhc2UgJ3Byb3RvY29sJzpcbiAgICAgIHVybC5wcm90b2NvbCA9IHZhbHVlLnRvTG93ZXJDYXNlKCk7XG4gICAgICB1cmwuc2xhc2hlcyA9ICFmbjtcbiAgICAgIGJyZWFrO1xuXG4gICAgY2FzZSAncGF0aG5hbWUnOlxuICAgICAgdXJsLnBhdGhuYW1lID0gdmFsdWUubGVuZ3RoICYmIHZhbHVlLmNoYXJBdCgwKSAhPT0gJy8nID8gJy8nICsgdmFsdWUgOiB2YWx1ZTtcblxuICAgICAgYnJlYWs7XG5cbiAgICBkZWZhdWx0OlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG4gIH1cblxuICBmb3IgKHZhciBpID0gMDsgaSA8IHJ1bGVzLmxlbmd0aDsgaSsrKSB7XG4gICAgdmFyIGlucyA9IHJ1bGVzW2ldO1xuXG4gICAgaWYgKGluc1s0XSkgdXJsW2luc1sxXV0gPSB1cmxbaW5zWzFdXS50b0xvd2VyQ2FzZSgpO1xuICB9XG5cbiAgdXJsLm9yaWdpbiA9IHVybC5wcm90b2NvbCAmJiB1cmwuaG9zdCAmJiB1cmwucHJvdG9jb2wgIT09ICdmaWxlOidcbiAgICA/IHVybC5wcm90b2NvbCArJy8vJysgdXJsLmhvc3RcbiAgICA6ICdudWxsJztcblxuICB1cmwuaHJlZiA9IHVybC50b1N0cmluZygpO1xuXG4gIHJldHVybiB1cmw7XG59O1xuXG4vKipcbiAqIFRyYW5zZm9ybSB0aGUgcHJvcGVydGllcyBiYWNrIGluIHRvIGEgdmFsaWQgYW5kIGZ1bGwgVVJMIHN0cmluZy5cbiAqXG4gKiBAcGFyYW0ge0Z1bmN0aW9ufSBzdHJpbmdpZnkgT3B0aW9uYWwgcXVlcnkgc3RyaW5naWZ5IGZ1bmN0aW9uLlxuICogQHJldHVybnMge1N0cmluZ31cbiAqIEBhcGkgcHVibGljXG4gKi9cblVSTC5wcm90b3R5cGUudG9TdHJpbmcgPSBmdW5jdGlvbiB0b1N0cmluZyhzdHJpbmdpZnkpIHtcbiAgaWYgKCFzdHJpbmdpZnkgfHwgJ2Z1bmN0aW9uJyAhPT0gdHlwZW9mIHN0cmluZ2lmeSkgc3RyaW5naWZ5ID0gcXMuc3RyaW5naWZ5O1xuXG4gIHZhciBxdWVyeVxuICAgICwgdXJsID0gdGhpc1xuICAgICwgcHJvdG9jb2wgPSB1cmwucHJvdG9jb2w7XG5cbiAgaWYgKHByb3RvY29sICYmIHByb3RvY29sLmNoYXJBdChwcm90b2NvbC5sZW5ndGggLSAxKSAhPT0gJzonKSBwcm90b2NvbCArPSAnOic7XG5cbiAgdmFyIHJlc3VsdCA9IHByb3RvY29sICsgKHVybC5zbGFzaGVzID8gJy8vJyA6ICcnKTtcblxuICBpZiAodXJsLnVzZXJuYW1lKSB7XG4gICAgcmVzdWx0ICs9IHVybC51c2VybmFtZTtcbiAgICBpZiAodXJsLnBhc3N3b3JkKSByZXN1bHQgKz0gJzonKyB1cmwucGFzc3dvcmQ7XG4gICAgcmVzdWx0ICs9ICdAJztcbiAgfVxuXG4gIHJlc3VsdCArPSB1cmwuaG9zdCArIHVybC5wYXRobmFtZTtcblxuICBxdWVyeSA9ICdvYmplY3QnID09PSB0eXBlb2YgdXJsLnF1ZXJ5ID8gc3RyaW5naWZ5KHVybC5xdWVyeSkgOiB1cmwucXVlcnk7XG4gIGlmIChxdWVyeSkgcmVzdWx0ICs9ICc/JyAhPT0gcXVlcnkuY2hhckF0KDApID8gJz8nKyBxdWVyeSA6IHF1ZXJ5O1xuXG4gIGlmICh1cmwuaGFzaCkgcmVzdWx0ICs9IHVybC5oYXNoO1xuXG4gIHJldHVybiByZXN1bHQ7XG59O1xuXG4vL1xuLy8gRXhwb3NlIHRoZSBVUkwgcGFyc2VyIGFuZCBzb21lIGFkZGl0aW9uYWwgcHJvcGVydGllcyB0aGF0IG1pZ2h0IGJlIHVzZWZ1bCBmb3Jcbi8vIG90aGVycyBvciB0ZXN0aW5nLlxuLy9cblVSTC5leHRyYWN0UHJvdG9jb2wgPSBleHRyYWN0UHJvdG9jb2w7XG5VUkwubG9jYXRpb24gPSBsb2xjYXRpb247XG5VUkwucXMgPSBxcztcblxubW9kdWxlLmV4cG9ydHMgPSBVUkw7XG4iLCIndXNlIHN0cmljdCc7XG5cbnZhciBzbGFzaGVzID0gL15bQS1aYS16XVtBLVphLXowLTkrLS5dKjpcXC9cXC8vO1xuXG4vKipcbiAqIFRoZXNlIHByb3BlcnRpZXMgc2hvdWxkIG5vdCBiZSBjb3BpZWQgb3IgaW5oZXJpdGVkIGZyb20uIFRoaXMgaXMgb25seSBuZWVkZWRcbiAqIGZvciBhbGwgbm9uIGJsb2IgVVJMJ3MgYXMgYSBibG9iIFVSTCBkb2VzIG5vdCBpbmNsdWRlIGEgaGFzaCwgb25seSB0aGVcbiAqIG9yaWdpbi5cbiAqXG4gKiBAdHlwZSB7T2JqZWN0fVxuICogQHByaXZhdGVcbiAqL1xudmFyIGlnbm9yZSA9IHsgaGFzaDogMSwgcXVlcnk6IDEgfVxuICAsIFVSTDtcblxuLyoqXG4gKiBUaGUgbG9jYXRpb24gb2JqZWN0IGRpZmZlcnMgd2hlbiB5b3VyIGNvZGUgaXMgbG9hZGVkIHRocm91Z2ggYSBub3JtYWwgcGFnZSxcbiAqIFdvcmtlciBvciB0aHJvdWdoIGEgd29ya2VyIHVzaW5nIGEgYmxvYi4gQW5kIHdpdGggdGhlIGJsb2JibGUgYmVnaW5zIHRoZVxuICogdHJvdWJsZSBhcyB0aGUgbG9jYXRpb24gb2JqZWN0IHdpbGwgY29udGFpbiB0aGUgVVJMIG9mIHRoZSBibG9iLCBub3QgdGhlXG4gKiBsb2NhdGlvbiBvZiB0aGUgcGFnZSB3aGVyZSBvdXIgY29kZSBpcyBsb2FkZWQgaW4uIFRoZSBhY3R1YWwgb3JpZ2luIGlzXG4gKiBlbmNvZGVkIGluIHRoZSBgcGF0aG5hbWVgIHNvIHdlIGNhbiB0aGFua2Z1bGx5IGdlbmVyYXRlIGEgZ29vZCBcImRlZmF1bHRcIlxuICogbG9jYXRpb24gZnJvbSBpdCBzbyB3ZSBjYW4gZ2VuZXJhdGUgcHJvcGVyIHJlbGF0aXZlIFVSTCdzIGFnYWluLlxuICpcbiAqIEBwYXJhbSB7T2JqZWN0fFN0cmluZ30gbG9jIE9wdGlvbmFsIGRlZmF1bHQgbG9jYXRpb24gb2JqZWN0LlxuICogQHJldHVybnMge09iamVjdH0gbG9sY2F0aW9uIG9iamVjdC5cbiAqIEBhcGkgcHVibGljXG4gKi9cbm1vZHVsZS5leHBvcnRzID0gZnVuY3Rpb24gbG9sY2F0aW9uKGxvYykge1xuICBsb2MgPSBsb2MgfHwgZ2xvYmFsLmxvY2F0aW9uIHx8IHt9O1xuICBVUkwgPSBVUkwgfHwgcmVxdWlyZSgnLi8nKTtcblxuICB2YXIgZmluYWxkZXN0aW5hdGlvbiA9IHt9XG4gICAgLCB0eXBlID0gdHlwZW9mIGxvY1xuICAgICwga2V5O1xuXG4gIGlmICgnYmxvYjonID09PSBsb2MucHJvdG9jb2wpIHtcbiAgICBmaW5hbGRlc3RpbmF0aW9uID0gbmV3IFVSTCh1bmVzY2FwZShsb2MucGF0aG5hbWUpLCB7fSk7XG4gIH0gZWxzZSBpZiAoJ3N0cmluZycgPT09IHR5cGUpIHtcbiAgICBmaW5hbGRlc3RpbmF0aW9uID0gbmV3IFVSTChsb2MsIHt9KTtcbiAgICBmb3IgKGtleSBpbiBpZ25vcmUpIGRlbGV0ZSBmaW5hbGRlc3RpbmF0aW9uW2tleV07XG4gIH0gZWxzZSBpZiAoJ29iamVjdCcgPT09IHR5cGUpIHtcbiAgICBmb3IgKGtleSBpbiBsb2MpIHtcbiAgICAgIGlmIChrZXkgaW4gaWdub3JlKSBjb250aW51ZTtcbiAgICAgIGZpbmFsZGVzdGluYXRpb25ba2V5XSA9IGxvY1trZXldO1xuICAgIH1cblxuICAgIGlmIChmaW5hbGRlc3RpbmF0aW9uLnNsYXNoZXMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgZmluYWxkZXN0aW5hdGlvbi5zbGFzaGVzID0gc2xhc2hlcy50ZXN0KGxvYy5ocmVmKTtcbiAgICB9XG4gIH1cblxuICByZXR1cm4gZmluYWxkZXN0aW5hdGlvbjtcbn07XG4iLCIoZnVuY3Rpb24gKHJvb3QsIGZhY3RvcnkpIHtcbiAgICBpZiAodHlwZW9mIGV4cG9ydHMgPT09ICdvYmplY3QnKSB7XG4gICAgICAgIG1vZHVsZS5leHBvcnRzID0gZmFjdG9yeSgpO1xuICAgIH0gZWxzZSBpZiAodHlwZW9mIGRlZmluZSA9PT0gJ2Z1bmN0aW9uJyAmJiBkZWZpbmUuYW1kKSB7XG4gICAgICAgIGRlZmluZShbXSwgZmFjdG9yeSk7XG4gICAgfSBlbHNlIHtcbiAgICAgICAgcm9vdC51cmx0ZW1wbGF0ZSA9IGZhY3RvcnkoKTtcbiAgICB9XG59KHRoaXMsIGZ1bmN0aW9uICgpIHtcbiAgLyoqXG4gICAqIEBjb25zdHJ1Y3RvclxuICAgKi9cbiAgZnVuY3Rpb24gVXJsVGVtcGxhdGUoKSB7XG4gIH1cblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtzdHJpbmd9IHN0clxuICAgKiBAcmV0dXJuIHtzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZW5jb2RlUmVzZXJ2ZWQgPSBmdW5jdGlvbiAoc3RyKSB7XG4gICAgcmV0dXJuIHN0ci5zcGxpdCgvKCVbMC05QS1GYS1mXXsyfSkvZykubWFwKGZ1bmN0aW9uIChwYXJ0KSB7XG4gICAgICBpZiAoIS8lWzAtOUEtRmEtZl0vLnRlc3QocGFydCkpIHtcbiAgICAgICAgcGFydCA9IGVuY29kZVVSSShwYXJ0KS5yZXBsYWNlKC8lNUIvZywgJ1snKS5yZXBsYWNlKC8lNUQvZywgJ10nKTtcbiAgICAgIH1cbiAgICAgIHJldHVybiBwYXJ0O1xuICAgIH0pLmpvaW4oJycpO1xuICB9O1xuXG4gIC8qKlxuICAgKiBAcHJpdmF0ZVxuICAgKiBAcGFyYW0ge3N0cmluZ30gc3RyXG4gICAqIEByZXR1cm4ge3N0cmluZ31cbiAgICovXG4gIFVybFRlbXBsYXRlLnByb3RvdHlwZS5lbmNvZGVVbnJlc2VydmVkID0gZnVuY3Rpb24gKHN0cikge1xuICAgIHJldHVybiBlbmNvZGVVUklDb21wb25lbnQoc3RyKS5yZXBsYWNlKC9bIScoKSpdL2csIGZ1bmN0aW9uIChjKSB7XG4gICAgICByZXR1cm4gJyUnICsgYy5jaGFyQ29kZUF0KDApLnRvU3RyaW5nKDE2KS50b1VwcGVyQ2FzZSgpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIEBwcml2YXRlXG4gICAqIEBwYXJhbSB7c3RyaW5nfSBvcGVyYXRvclxuICAgKiBAcGFyYW0ge3N0cmluZ30gdmFsdWVcbiAgICogQHBhcmFtIHtzdHJpbmd9IGtleVxuICAgKiBAcmV0dXJuIHtzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZW5jb2RlVmFsdWUgPSBmdW5jdGlvbiAob3BlcmF0b3IsIHZhbHVlLCBrZXkpIHtcbiAgICB2YWx1ZSA9IChvcGVyYXRvciA9PT0gJysnIHx8IG9wZXJhdG9yID09PSAnIycpID8gdGhpcy5lbmNvZGVSZXNlcnZlZCh2YWx1ZSkgOiB0aGlzLmVuY29kZVVucmVzZXJ2ZWQodmFsdWUpO1xuXG4gICAgaWYgKGtleSkge1xuICAgICAgcmV0dXJuIHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpICsgJz0nICsgdmFsdWU7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB2YWx1ZTtcbiAgICB9XG4gIH07XG5cbiAgLyoqXG4gICAqIEBwcml2YXRlXG4gICAqIEBwYXJhbSB7Kn0gdmFsdWVcbiAgICogQHJldHVybiB7Ym9vbGVhbn1cbiAgICovXG4gIFVybFRlbXBsYXRlLnByb3RvdHlwZS5pc0RlZmluZWQgPSBmdW5jdGlvbiAodmFsdWUpIHtcbiAgICByZXR1cm4gdmFsdWUgIT09IHVuZGVmaW5lZCAmJiB2YWx1ZSAhPT0gbnVsbDtcbiAgfTtcblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtzdHJpbmd9XG4gICAqIEByZXR1cm4ge2Jvb2xlYW59XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuaXNLZXlPcGVyYXRvciA9IGZ1bmN0aW9uIChvcGVyYXRvcikge1xuICAgIHJldHVybiBvcGVyYXRvciA9PT0gJzsnIHx8IG9wZXJhdG9yID09PSAnJicgfHwgb3BlcmF0b3IgPT09ICc/JztcbiAgfTtcblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtPYmplY3R9IGNvbnRleHRcbiAgICogQHBhcmFtIHtzdHJpbmd9IG9wZXJhdG9yXG4gICAqIEBwYXJhbSB7c3RyaW5nfSBrZXlcbiAgICogQHBhcmFtIHtzdHJpbmd9IG1vZGlmaWVyXG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZ2V0VmFsdWVzID0gZnVuY3Rpb24gKGNvbnRleHQsIG9wZXJhdG9yLCBrZXksIG1vZGlmaWVyKSB7XG4gICAgdmFyIHZhbHVlID0gY29udGV4dFtrZXldLFxuICAgICAgICByZXN1bHQgPSBbXTtcblxuICAgIGlmICh0aGlzLmlzRGVmaW5lZCh2YWx1ZSkgJiYgdmFsdWUgIT09ICcnKSB7XG4gICAgICBpZiAodHlwZW9mIHZhbHVlID09PSAnc3RyaW5nJyB8fCB0eXBlb2YgdmFsdWUgPT09ICdudW1iZXInIHx8IHR5cGVvZiB2YWx1ZSA9PT0gJ2Jvb2xlYW4nKSB7XG4gICAgICAgIHZhbHVlID0gdmFsdWUudG9TdHJpbmcoKTtcblxuICAgICAgICBpZiAobW9kaWZpZXIgJiYgbW9kaWZpZXIgIT09ICcqJykge1xuICAgICAgICAgIHZhbHVlID0gdmFsdWUuc3Vic3RyaW5nKDAsIHBhcnNlSW50KG1vZGlmaWVyLCAxMCkpO1xuICAgICAgICB9XG5cbiAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVWYWx1ZShvcGVyYXRvciwgdmFsdWUsIHRoaXMuaXNLZXlPcGVyYXRvcihvcGVyYXRvcikgPyBrZXkgOiBudWxsKSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBpZiAobW9kaWZpZXIgPT09ICcqJykge1xuICAgICAgICAgIGlmIChBcnJheS5pc0FycmF5KHZhbHVlKSkge1xuICAgICAgICAgICAgdmFsdWUuZmlsdGVyKHRoaXMuaXNEZWZpbmVkKS5mb3JFYWNoKGZ1bmN0aW9uICh2YWx1ZSkge1xuICAgICAgICAgICAgICByZXN1bHQucHVzaCh0aGlzLmVuY29kZVZhbHVlKG9wZXJhdG9yLCB2YWx1ZSwgdGhpcy5pc0tleU9wZXJhdG9yKG9wZXJhdG9yKSA/IGtleSA6IG51bGwpKTtcbiAgICAgICAgICAgIH0sIHRoaXMpO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICBPYmplY3Qua2V5cyh2YWx1ZSkuZm9yRWFjaChmdW5jdGlvbiAoaykge1xuICAgICAgICAgICAgICBpZiAodGhpcy5pc0RlZmluZWQodmFsdWVba10pKSB7XG4gICAgICAgICAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVWYWx1ZShvcGVyYXRvciwgdmFsdWVba10sIGspKTtcbiAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHZhciB0bXAgPSBbXTtcblxuICAgICAgICAgIGlmIChBcnJheS5pc0FycmF5KHZhbHVlKSkge1xuICAgICAgICAgICAgdmFsdWUuZmlsdGVyKHRoaXMuaXNEZWZpbmVkKS5mb3JFYWNoKGZ1bmN0aW9uICh2YWx1ZSkge1xuICAgICAgICAgICAgICB0bXAucHVzaCh0aGlzLmVuY29kZVZhbHVlKG9wZXJhdG9yLCB2YWx1ZSkpO1xuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIE9iamVjdC5rZXlzKHZhbHVlKS5mb3JFYWNoKGZ1bmN0aW9uIChrKSB7XG4gICAgICAgICAgICAgIGlmICh0aGlzLmlzRGVmaW5lZCh2YWx1ZVtrXSkpIHtcbiAgICAgICAgICAgICAgICB0bXAucHVzaCh0aGlzLmVuY29kZVVucmVzZXJ2ZWQoaykpO1xuICAgICAgICAgICAgICAgIHRtcC5wdXNoKHRoaXMuZW5jb2RlVmFsdWUob3BlcmF0b3IsIHZhbHVlW2tdLnRvU3RyaW5nKCkpKTtcbiAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgaWYgKHRoaXMuaXNLZXlPcGVyYXRvcihvcGVyYXRvcikpIHtcbiAgICAgICAgICAgIHJlc3VsdC5wdXNoKHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpICsgJz0nICsgdG1wLmpvaW4oJywnKSk7XG4gICAgICAgICAgfSBlbHNlIGlmICh0bXAubGVuZ3RoICE9PSAwKSB7XG4gICAgICAgICAgICByZXN1bHQucHVzaCh0bXAuam9pbignLCcpKTtcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgaWYgKG9wZXJhdG9yID09PSAnOycpIHtcbiAgICAgICAgaWYgKHRoaXMuaXNEZWZpbmVkKHZhbHVlKSkge1xuICAgICAgICAgIHJlc3VsdC5wdXNoKHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpKTtcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIGlmICh2YWx1ZSA9PT0gJycgJiYgKG9wZXJhdG9yID09PSAnJicgfHwgb3BlcmF0b3IgPT09ICc/JykpIHtcbiAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVVbnJlc2VydmVkKGtleSkgKyAnPScpO1xuICAgICAgfSBlbHNlIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgICAgcmVzdWx0LnB1c2goJycpO1xuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gcmVzdWx0O1xuICB9O1xuXG4gIC8qKlxuICAgKiBAcGFyYW0ge3N0cmluZ30gdGVtcGxhdGVcbiAgICogQHJldHVybiB7ZnVuY3Rpb24oT2JqZWN0KTpzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUucGFyc2UgPSBmdW5jdGlvbiAodGVtcGxhdGUpIHtcbiAgICB2YXIgdGhhdCA9IHRoaXM7XG4gICAgdmFyIG9wZXJhdG9ycyA9IFsnKycsICcjJywgJy4nLCAnLycsICc7JywgJz8nLCAnJiddO1xuXG4gICAgcmV0dXJuIHtcbiAgICAgIGV4cGFuZDogZnVuY3Rpb24gKGNvbnRleHQpIHtcbiAgICAgICAgcmV0dXJuIHRlbXBsYXRlLnJlcGxhY2UoL1xceyhbXlxce1xcfV0rKVxcfXwoW15cXHtcXH1dKykvZywgZnVuY3Rpb24gKF8sIGV4cHJlc3Npb24sIGxpdGVyYWwpIHtcbiAgICAgICAgICBpZiAoZXhwcmVzc2lvbikge1xuICAgICAgICAgICAgdmFyIG9wZXJhdG9yID0gbnVsbCxcbiAgICAgICAgICAgICAgICB2YWx1ZXMgPSBbXTtcblxuICAgICAgICAgICAgaWYgKG9wZXJhdG9ycy5pbmRleE9mKGV4cHJlc3Npb24uY2hhckF0KDApKSAhPT0gLTEpIHtcbiAgICAgICAgICAgICAgb3BlcmF0b3IgPSBleHByZXNzaW9uLmNoYXJBdCgwKTtcbiAgICAgICAgICAgICAgZXhwcmVzc2lvbiA9IGV4cHJlc3Npb24uc3Vic3RyKDEpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBleHByZXNzaW9uLnNwbGl0KC8sL2cpLmZvckVhY2goZnVuY3Rpb24gKHZhcmlhYmxlKSB7XG4gICAgICAgICAgICAgIHZhciB0bXAgPSAvKFteOlxcKl0qKSg/OjooXFxkKyl8KFxcKikpPy8uZXhlYyh2YXJpYWJsZSk7XG4gICAgICAgICAgICAgIHZhbHVlcy5wdXNoLmFwcGx5KHZhbHVlcywgdGhhdC5nZXRWYWx1ZXMoY29udGV4dCwgb3BlcmF0b3IsIHRtcFsxXSwgdG1wWzJdIHx8IHRtcFszXSkpO1xuICAgICAgICAgICAgfSk7XG5cbiAgICAgICAgICAgIGlmIChvcGVyYXRvciAmJiBvcGVyYXRvciAhPT0gJysnKSB7XG4gICAgICAgICAgICAgIHZhciBzZXBhcmF0b3IgPSAnLCc7XG5cbiAgICAgICAgICAgICAgaWYgKG9wZXJhdG9yID09PSAnPycpIHtcbiAgICAgICAgICAgICAgICBzZXBhcmF0b3IgPSAnJic7XG4gICAgICAgICAgICAgIH0gZWxzZSBpZiAob3BlcmF0b3IgIT09ICcjJykge1xuICAgICAgICAgICAgICAgIHNlcGFyYXRvciA9IG9wZXJhdG9yO1xuICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgIHJldHVybiAodmFsdWVzLmxlbmd0aCAhPT0gMCA/IG9wZXJhdG9yIDogJycpICsgdmFsdWVzLmpvaW4oc2VwYXJhdG9yKTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgIHJldHVybiB2YWx1ZXMuam9pbignLCcpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gdGhhdC5lbmNvZGVSZXNlcnZlZChsaXRlcmFsKTtcbiAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgICAgfVxuICAgIH07XG4gIH07XG5cbiAgcmV0dXJuIG5ldyBVcmxUZW1wbGF0ZSgpO1xufSkpO1xuIiwiKGZ1bmN0aW9uKHNlbGYpIHtcbiAgJ3VzZSBzdHJpY3QnO1xuXG4gIGlmIChzZWxmLmZldGNoKSB7XG4gICAgcmV0dXJuXG4gIH1cblxuICB2YXIgc3VwcG9ydCA9IHtcbiAgICBzZWFyY2hQYXJhbXM6ICdVUkxTZWFyY2hQYXJhbXMnIGluIHNlbGYsXG4gICAgaXRlcmFibGU6ICdTeW1ib2wnIGluIHNlbGYgJiYgJ2l0ZXJhdG9yJyBpbiBTeW1ib2wsXG4gICAgYmxvYjogJ0ZpbGVSZWFkZXInIGluIHNlbGYgJiYgJ0Jsb2InIGluIHNlbGYgJiYgKGZ1bmN0aW9uKCkge1xuICAgICAgdHJ5IHtcbiAgICAgICAgbmV3IEJsb2IoKVxuICAgICAgICByZXR1cm4gdHJ1ZVxuICAgICAgfSBjYXRjaChlKSB7XG4gICAgICAgIHJldHVybiBmYWxzZVxuICAgICAgfVxuICAgIH0pKCksXG4gICAgZm9ybURhdGE6ICdGb3JtRGF0YScgaW4gc2VsZixcbiAgICBhcnJheUJ1ZmZlcjogJ0FycmF5QnVmZmVyJyBpbiBzZWxmXG4gIH1cblxuICBpZiAoc3VwcG9ydC5hcnJheUJ1ZmZlcikge1xuICAgIHZhciB2aWV3Q2xhc3NlcyA9IFtcbiAgICAgICdbb2JqZWN0IEludDhBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgVWludDhBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgVWludDhDbGFtcGVkQXJyYXldJyxcbiAgICAgICdbb2JqZWN0IEludDE2QXJyYXldJyxcbiAgICAgICdbb2JqZWN0IFVpbnQxNkFycmF5XScsXG4gICAgICAnW29iamVjdCBJbnQzMkFycmF5XScsXG4gICAgICAnW29iamVjdCBVaW50MzJBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgRmxvYXQzMkFycmF5XScsXG4gICAgICAnW29iamVjdCBGbG9hdDY0QXJyYXldJ1xuICAgIF1cblxuICAgIHZhciBpc0RhdGFWaWV3ID0gZnVuY3Rpb24ob2JqKSB7XG4gICAgICByZXR1cm4gb2JqICYmIERhdGFWaWV3LnByb3RvdHlwZS5pc1Byb3RvdHlwZU9mKG9iailcbiAgICB9XG5cbiAgICB2YXIgaXNBcnJheUJ1ZmZlclZpZXcgPSBBcnJheUJ1ZmZlci5pc1ZpZXcgfHwgZnVuY3Rpb24ob2JqKSB7XG4gICAgICByZXR1cm4gb2JqICYmIHZpZXdDbGFzc2VzLmluZGV4T2YoT2JqZWN0LnByb3RvdHlwZS50b1N0cmluZy5jYWxsKG9iaikpID4gLTFcbiAgICB9XG4gIH1cblxuICBmdW5jdGlvbiBub3JtYWxpemVOYW1lKG5hbWUpIHtcbiAgICBpZiAodHlwZW9mIG5hbWUgIT09ICdzdHJpbmcnKSB7XG4gICAgICBuYW1lID0gU3RyaW5nKG5hbWUpXG4gICAgfVxuICAgIGlmICgvW15hLXowLTlcXC0jJCUmJyorLlxcXl9gfH5dL2kudGVzdChuYW1lKSkge1xuICAgICAgdGhyb3cgbmV3IFR5cGVFcnJvcignSW52YWxpZCBjaGFyYWN0ZXIgaW4gaGVhZGVyIGZpZWxkIG5hbWUnKVxuICAgIH1cbiAgICByZXR1cm4gbmFtZS50b0xvd2VyQ2FzZSgpXG4gIH1cblxuICBmdW5jdGlvbiBub3JtYWxpemVWYWx1ZSh2YWx1ZSkge1xuICAgIGlmICh0eXBlb2YgdmFsdWUgIT09ICdzdHJpbmcnKSB7XG4gICAgICB2YWx1ZSA9IFN0cmluZyh2YWx1ZSlcbiAgICB9XG4gICAgcmV0dXJuIHZhbHVlXG4gIH1cblxuICAvLyBCdWlsZCBhIGRlc3RydWN0aXZlIGl0ZXJhdG9yIGZvciB0aGUgdmFsdWUgbGlzdFxuICBmdW5jdGlvbiBpdGVyYXRvckZvcihpdGVtcykge1xuICAgIHZhciBpdGVyYXRvciA9IHtcbiAgICAgIG5leHQ6IGZ1bmN0aW9uKCkge1xuICAgICAgICB2YXIgdmFsdWUgPSBpdGVtcy5zaGlmdCgpXG4gICAgICAgIHJldHVybiB7ZG9uZTogdmFsdWUgPT09IHVuZGVmaW5lZCwgdmFsdWU6IHZhbHVlfVxuICAgICAgfVxuICAgIH1cblxuICAgIGlmIChzdXBwb3J0Lml0ZXJhYmxlKSB7XG4gICAgICBpdGVyYXRvcltTeW1ib2wuaXRlcmF0b3JdID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHJldHVybiBpdGVyYXRvclxuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiBpdGVyYXRvclxuICB9XG5cbiAgZnVuY3Rpb24gSGVhZGVycyhoZWFkZXJzKSB7XG4gICAgdGhpcy5tYXAgPSB7fVxuXG4gICAgaWYgKGhlYWRlcnMgaW5zdGFuY2VvZiBIZWFkZXJzKSB7XG4gICAgICBoZWFkZXJzLmZvckVhY2goZnVuY3Rpb24odmFsdWUsIG5hbWUpIHtcbiAgICAgICAgdGhpcy5hcHBlbmQobmFtZSwgdmFsdWUpXG4gICAgICB9LCB0aGlzKVxuXG4gICAgfSBlbHNlIGlmIChoZWFkZXJzKSB7XG4gICAgICBPYmplY3QuZ2V0T3duUHJvcGVydHlOYW1lcyhoZWFkZXJzKS5mb3JFYWNoKGZ1bmN0aW9uKG5hbWUpIHtcbiAgICAgICAgdGhpcy5hcHBlbmQobmFtZSwgaGVhZGVyc1tuYW1lXSlcbiAgICAgIH0sIHRoaXMpXG4gICAgfVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuYXBwZW5kID0gZnVuY3Rpb24obmFtZSwgdmFsdWUpIHtcbiAgICBuYW1lID0gbm9ybWFsaXplTmFtZShuYW1lKVxuICAgIHZhbHVlID0gbm9ybWFsaXplVmFsdWUodmFsdWUpXG4gICAgdmFyIG9sZFZhbHVlID0gdGhpcy5tYXBbbmFtZV1cbiAgICB0aGlzLm1hcFtuYW1lXSA9IG9sZFZhbHVlID8gb2xkVmFsdWUrJywnK3ZhbHVlIDogdmFsdWVcbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlWydkZWxldGUnXSA9IGZ1bmN0aW9uKG5hbWUpIHtcbiAgICBkZWxldGUgdGhpcy5tYXBbbm9ybWFsaXplTmFtZShuYW1lKV1cbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlLmdldCA9IGZ1bmN0aW9uKG5hbWUpIHtcbiAgICBuYW1lID0gbm9ybWFsaXplTmFtZShuYW1lKVxuICAgIHJldHVybiB0aGlzLmhhcyhuYW1lKSA/IHRoaXMubWFwW25hbWVdIDogbnVsbFxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuaGFzID0gZnVuY3Rpb24obmFtZSkge1xuICAgIHJldHVybiB0aGlzLm1hcC5oYXNPd25Qcm9wZXJ0eShub3JtYWxpemVOYW1lKG5hbWUpKVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuc2V0ID0gZnVuY3Rpb24obmFtZSwgdmFsdWUpIHtcbiAgICB0aGlzLm1hcFtub3JtYWxpemVOYW1lKG5hbWUpXSA9IG5vcm1hbGl6ZVZhbHVlKHZhbHVlKVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuZm9yRWFjaCA9IGZ1bmN0aW9uKGNhbGxiYWNrLCB0aGlzQXJnKSB7XG4gICAgZm9yICh2YXIgbmFtZSBpbiB0aGlzLm1hcCkge1xuICAgICAgaWYgKHRoaXMubWFwLmhhc093blByb3BlcnR5KG5hbWUpKSB7XG4gICAgICAgIGNhbGxiYWNrLmNhbGwodGhpc0FyZywgdGhpcy5tYXBbbmFtZV0sIG5hbWUsIHRoaXMpXG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUua2V5cyA9IGZ1bmN0aW9uKCkge1xuICAgIHZhciBpdGVtcyA9IFtdXG4gICAgdGhpcy5mb3JFYWNoKGZ1bmN0aW9uKHZhbHVlLCBuYW1lKSB7IGl0ZW1zLnB1c2gobmFtZSkgfSlcbiAgICByZXR1cm4gaXRlcmF0b3JGb3IoaXRlbXMpXG4gIH1cblxuICBIZWFkZXJzLnByb3RvdHlwZS52YWx1ZXMgPSBmdW5jdGlvbigpIHtcbiAgICB2YXIgaXRlbXMgPSBbXVxuICAgIHRoaXMuZm9yRWFjaChmdW5jdGlvbih2YWx1ZSkgeyBpdGVtcy5wdXNoKHZhbHVlKSB9KVxuICAgIHJldHVybiBpdGVyYXRvckZvcihpdGVtcylcbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlLmVudHJpZXMgPSBmdW5jdGlvbigpIHtcbiAgICB2YXIgaXRlbXMgPSBbXVxuICAgIHRoaXMuZm9yRWFjaChmdW5jdGlvbih2YWx1ZSwgbmFtZSkgeyBpdGVtcy5wdXNoKFtuYW1lLCB2YWx1ZV0pIH0pXG4gICAgcmV0dXJuIGl0ZXJhdG9yRm9yKGl0ZW1zKVxuICB9XG5cbiAgaWYgKHN1cHBvcnQuaXRlcmFibGUpIHtcbiAgICBIZWFkZXJzLnByb3RvdHlwZVtTeW1ib2wuaXRlcmF0b3JdID0gSGVhZGVycy5wcm90b3R5cGUuZW50cmllc1xuICB9XG5cbiAgZnVuY3Rpb24gY29uc3VtZWQoYm9keSkge1xuICAgIGlmIChib2R5LmJvZHlVc2VkKSB7XG4gICAgICByZXR1cm4gUHJvbWlzZS5yZWplY3QobmV3IFR5cGVFcnJvcignQWxyZWFkeSByZWFkJykpXG4gICAgfVxuICAgIGJvZHkuYm9keVVzZWQgPSB0cnVlXG4gIH1cblxuICBmdW5jdGlvbiBmaWxlUmVhZGVyUmVhZHkocmVhZGVyKSB7XG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKGZ1bmN0aW9uKHJlc29sdmUsIHJlamVjdCkge1xuICAgICAgcmVhZGVyLm9ubG9hZCA9IGZ1bmN0aW9uKCkge1xuICAgICAgICByZXNvbHZlKHJlYWRlci5yZXN1bHQpXG4gICAgICB9XG4gICAgICByZWFkZXIub25lcnJvciA9IGZ1bmN0aW9uKCkge1xuICAgICAgICByZWplY3QocmVhZGVyLmVycm9yKVxuICAgICAgfVxuICAgIH0pXG4gIH1cblxuICBmdW5jdGlvbiByZWFkQmxvYkFzQXJyYXlCdWZmZXIoYmxvYikge1xuICAgIHZhciByZWFkZXIgPSBuZXcgRmlsZVJlYWRlcigpXG4gICAgdmFyIHByb21pc2UgPSBmaWxlUmVhZGVyUmVhZHkocmVhZGVyKVxuICAgIHJlYWRlci5yZWFkQXNBcnJheUJ1ZmZlcihibG9iKVxuICAgIHJldHVybiBwcm9taXNlXG4gIH1cblxuICBmdW5jdGlvbiByZWFkQmxvYkFzVGV4dChibG9iKSB7XG4gICAgdmFyIHJlYWRlciA9IG5ldyBGaWxlUmVhZGVyKClcbiAgICB2YXIgcHJvbWlzZSA9IGZpbGVSZWFkZXJSZWFkeShyZWFkZXIpXG4gICAgcmVhZGVyLnJlYWRBc1RleHQoYmxvYilcbiAgICByZXR1cm4gcHJvbWlzZVxuICB9XG5cbiAgZnVuY3Rpb24gYnVmZmVyQ2xvbmUoYnVmKSB7XG4gICAgaWYgKGJ1Zi5zbGljZSkge1xuICAgICAgcmV0dXJuIGJ1Zi5zbGljZSgwKVxuICAgIH0gZWxzZSB7XG4gICAgICB2YXIgdmlldyA9IG5ldyBVaW50OEFycmF5KGJ1Zi5ieXRlTGVuZ3RoKVxuICAgICAgdmlldy5zZXQobmV3IFVpbnQ4QXJyYXkoYnVmKSlcbiAgICAgIHJldHVybiB2aWV3LmJ1ZmZlclxuICAgIH1cbiAgfVxuXG4gIGZ1bmN0aW9uIEJvZHkoKSB7XG4gICAgdGhpcy5ib2R5VXNlZCA9IGZhbHNlXG5cbiAgICB0aGlzLl9pbml0Qm9keSA9IGZ1bmN0aW9uKGJvZHkpIHtcbiAgICAgIHRoaXMuX2JvZHlJbml0ID0gYm9keVxuICAgICAgaWYgKCFib2R5KSB7XG4gICAgICAgIHRoaXMuX2JvZHlUZXh0ID0gJydcbiAgICAgIH0gZWxzZSBpZiAodHlwZW9mIGJvZHkgPT09ICdzdHJpbmcnKSB7XG4gICAgICAgIHRoaXMuX2JvZHlUZXh0ID0gYm9keVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmJsb2IgJiYgQmxvYi5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5QmxvYiA9IGJvZHlcbiAgICAgIH0gZWxzZSBpZiAoc3VwcG9ydC5mb3JtRGF0YSAmJiBGb3JtRGF0YS5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5Rm9ybURhdGEgPSBib2R5XG4gICAgICB9IGVsc2UgaWYgKHN1cHBvcnQuc2VhcmNoUGFyYW1zICYmIFVSTFNlYXJjaFBhcmFtcy5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5VGV4dCA9IGJvZHkudG9TdHJpbmcoKVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmFycmF5QnVmZmVyICYmIHN1cHBvcnQuYmxvYiAmJiBpc0RhdGFWaWV3KGJvZHkpKSB7XG4gICAgICAgIHRoaXMuX2JvZHlBcnJheUJ1ZmZlciA9IGJ1ZmZlckNsb25lKGJvZHkuYnVmZmVyKVxuICAgICAgICAvLyBJRSAxMC0xMSBjYW4ndCBoYW5kbGUgYSBEYXRhVmlldyBib2R5LlxuICAgICAgICB0aGlzLl9ib2R5SW5pdCA9IG5ldyBCbG9iKFt0aGlzLl9ib2R5QXJyYXlCdWZmZXJdKVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmFycmF5QnVmZmVyICYmIChBcnJheUJ1ZmZlci5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSB8fCBpc0FycmF5QnVmZmVyVmlldyhib2R5KSkpIHtcbiAgICAgICAgdGhpcy5fYm9keUFycmF5QnVmZmVyID0gYnVmZmVyQ2xvbmUoYm9keSlcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcigndW5zdXBwb3J0ZWQgQm9keUluaXQgdHlwZScpXG4gICAgICB9XG5cbiAgICAgIGlmICghdGhpcy5oZWFkZXJzLmdldCgnY29udGVudC10eXBlJykpIHtcbiAgICAgICAgaWYgKHR5cGVvZiBib2R5ID09PSAnc3RyaW5nJykge1xuICAgICAgICAgIHRoaXMuaGVhZGVycy5zZXQoJ2NvbnRlbnQtdHlwZScsICd0ZXh0L3BsYWluO2NoYXJzZXQ9VVRGLTgnKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlCbG9iICYmIHRoaXMuX2JvZHlCbG9iLnR5cGUpIHtcbiAgICAgICAgICB0aGlzLmhlYWRlcnMuc2V0KCdjb250ZW50LXR5cGUnLCB0aGlzLl9ib2R5QmxvYi50eXBlKVxuICAgICAgICB9IGVsc2UgaWYgKHN1cHBvcnQuc2VhcmNoUGFyYW1zICYmIFVSTFNlYXJjaFBhcmFtcy5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICAgIHRoaXMuaGVhZGVycy5zZXQoJ2NvbnRlbnQtdHlwZScsICdhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQ7Y2hhcnNldD1VVEYtOCcpXG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAoc3VwcG9ydC5ibG9iKSB7XG4gICAgICB0aGlzLmJsb2IgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgdmFyIHJlamVjdGVkID0gY29uc3VtZWQodGhpcylcbiAgICAgICAgaWYgKHJlamVjdGVkKSB7XG4gICAgICAgICAgcmV0dXJuIHJlamVjdGVkXG4gICAgICAgIH1cblxuICAgICAgICBpZiAodGhpcy5fYm9keUJsb2IpIHtcbiAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKHRoaXMuX2JvZHlCbG9iKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlBcnJheUJ1ZmZlcikge1xuICAgICAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUobmV3IEJsb2IoW3RoaXMuX2JvZHlBcnJheUJ1ZmZlcl0pKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlGb3JtRGF0YSkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcignY291bGQgbm90IHJlYWQgRm9ybURhdGEgYm9keSBhcyBibG9iJylcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKG5ldyBCbG9iKFt0aGlzLl9ib2R5VGV4dF0pKVxuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy50ZXh0ID0gZnVuY3Rpb24oKSB7XG4gICAgICB2YXIgcmVqZWN0ZWQgPSBjb25zdW1lZCh0aGlzKVxuICAgICAgaWYgKHJlamVjdGVkKSB7XG4gICAgICAgIHJldHVybiByZWplY3RlZFxuICAgICAgfVxuXG4gICAgICBpZiAodGhpcy5fYm9keUJsb2IpIHtcbiAgICAgICAgcmV0dXJuIHJlYWRCbG9iQXNUZXh0KHRoaXMuX2JvZHlCbG9iKVxuICAgICAgfSBlbHNlIGlmICh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpIHtcbiAgICAgICAgdmFyIHZpZXcgPSBuZXcgVWludDhBcnJheSh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpXG4gICAgICAgIHZhciBzdHIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlLmFwcGx5KG51bGwsIHZpZXcpXG4gICAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoc3RyKVxuICAgICAgfSBlbHNlIGlmICh0aGlzLl9ib2R5Rm9ybURhdGEpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdjb3VsZCBub3QgcmVhZCBGb3JtRGF0YSBib2R5IGFzIHRleHQnKVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIFByb21pc2UucmVzb2x2ZSh0aGlzLl9ib2R5VGV4dClcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAoc3VwcG9ydC5hcnJheUJ1ZmZlcikge1xuICAgICAgdGhpcy5hcnJheUJ1ZmZlciA9IGZ1bmN0aW9uKCkge1xuICAgICAgICBpZiAodGhpcy5fYm9keUFycmF5QnVmZmVyKSB7XG4gICAgICAgICAgcmV0dXJuIGNvbnN1bWVkKHRoaXMpIHx8IFByb21pc2UucmVzb2x2ZSh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpXG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgcmV0dXJuIHRoaXMuYmxvYigpLnRoZW4ocmVhZEJsb2JBc0FycmF5QnVmZmVyKVxuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgaWYgKHN1cHBvcnQuZm9ybURhdGEpIHtcbiAgICAgIHRoaXMuZm9ybURhdGEgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMudGV4dCgpLnRoZW4oZGVjb2RlKVxuICAgICAgfVxuICAgIH1cblxuICAgIHRoaXMuanNvbiA9IGZ1bmN0aW9uKCkge1xuICAgICAgcmV0dXJuIHRoaXMudGV4dCgpLnRoZW4oSlNPTi5wYXJzZSlcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpc1xuICB9XG5cbiAgLy8gSFRUUCBtZXRob2RzIHdob3NlIGNhcGl0YWxpemF0aW9uIHNob3VsZCBiZSBub3JtYWxpemVkXG4gIHZhciBtZXRob2RzID0gWydERUxFVEUnLCAnR0VUJywgJ0hFQUQnLCAnT1BUSU9OUycsICdQT1NUJywgJ1BVVCddXG5cbiAgZnVuY3Rpb24gbm9ybWFsaXplTWV0aG9kKG1ldGhvZCkge1xuICAgIHZhciB1cGNhc2VkID0gbWV0aG9kLnRvVXBwZXJDYXNlKClcbiAgICByZXR1cm4gKG1ldGhvZHMuaW5kZXhPZih1cGNhc2VkKSA+IC0xKSA/IHVwY2FzZWQgOiBtZXRob2RcbiAgfVxuXG4gIGZ1bmN0aW9uIFJlcXVlc3QoaW5wdXQsIG9wdGlvbnMpIHtcbiAgICBvcHRpb25zID0gb3B0aW9ucyB8fCB7fVxuICAgIHZhciBib2R5ID0gb3B0aW9ucy5ib2R5XG5cbiAgICBpZiAodHlwZW9mIGlucHV0ID09PSAnc3RyaW5nJykge1xuICAgICAgdGhpcy51cmwgPSBpbnB1dFxuICAgIH0gZWxzZSB7XG4gICAgICBpZiAoaW5wdXQuYm9keVVzZWQpIHtcbiAgICAgICAgdGhyb3cgbmV3IFR5cGVFcnJvcignQWxyZWFkeSByZWFkJylcbiAgICAgIH1cbiAgICAgIHRoaXMudXJsID0gaW5wdXQudXJsXG4gICAgICB0aGlzLmNyZWRlbnRpYWxzID0gaW5wdXQuY3JlZGVudGlhbHNcbiAgICAgIGlmICghb3B0aW9ucy5oZWFkZXJzKSB7XG4gICAgICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKGlucHV0LmhlYWRlcnMpXG4gICAgICB9XG4gICAgICB0aGlzLm1ldGhvZCA9IGlucHV0Lm1ldGhvZFxuICAgICAgdGhpcy5tb2RlID0gaW5wdXQubW9kZVxuICAgICAgaWYgKCFib2R5ICYmIGlucHV0Ll9ib2R5SW5pdCAhPSBudWxsKSB7XG4gICAgICAgIGJvZHkgPSBpbnB1dC5fYm9keUluaXRcbiAgICAgICAgaW5wdXQuYm9keVVzZWQgPSB0cnVlXG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy5jcmVkZW50aWFscyA9IG9wdGlvbnMuY3JlZGVudGlhbHMgfHwgdGhpcy5jcmVkZW50aWFscyB8fCAnb21pdCdcbiAgICBpZiAob3B0aW9ucy5oZWFkZXJzIHx8ICF0aGlzLmhlYWRlcnMpIHtcbiAgICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKG9wdGlvbnMuaGVhZGVycylcbiAgICB9XG4gICAgdGhpcy5tZXRob2QgPSBub3JtYWxpemVNZXRob2Qob3B0aW9ucy5tZXRob2QgfHwgdGhpcy5tZXRob2QgfHwgJ0dFVCcpXG4gICAgdGhpcy5tb2RlID0gb3B0aW9ucy5tb2RlIHx8IHRoaXMubW9kZSB8fCBudWxsXG4gICAgdGhpcy5yZWZlcnJlciA9IG51bGxcblxuICAgIGlmICgodGhpcy5tZXRob2QgPT09ICdHRVQnIHx8IHRoaXMubWV0aG9kID09PSAnSEVBRCcpICYmIGJvZHkpIHtcbiAgICAgIHRocm93IG5ldyBUeXBlRXJyb3IoJ0JvZHkgbm90IGFsbG93ZWQgZm9yIEdFVCBvciBIRUFEIHJlcXVlc3RzJylcbiAgICB9XG4gICAgdGhpcy5faW5pdEJvZHkoYm9keSlcbiAgfVxuXG4gIFJlcXVlc3QucHJvdG90eXBlLmNsb25lID0gZnVuY3Rpb24oKSB7XG4gICAgcmV0dXJuIG5ldyBSZXF1ZXN0KHRoaXMsIHsgYm9keTogdGhpcy5fYm9keUluaXQgfSlcbiAgfVxuXG4gIGZ1bmN0aW9uIGRlY29kZShib2R5KSB7XG4gICAgdmFyIGZvcm0gPSBuZXcgRm9ybURhdGEoKVxuICAgIGJvZHkudHJpbSgpLnNwbGl0KCcmJykuZm9yRWFjaChmdW5jdGlvbihieXRlcykge1xuICAgICAgaWYgKGJ5dGVzKSB7XG4gICAgICAgIHZhciBzcGxpdCA9IGJ5dGVzLnNwbGl0KCc9JylcbiAgICAgICAgdmFyIG5hbWUgPSBzcGxpdC5zaGlmdCgpLnJlcGxhY2UoL1xcKy9nLCAnICcpXG4gICAgICAgIHZhciB2YWx1ZSA9IHNwbGl0LmpvaW4oJz0nKS5yZXBsYWNlKC9cXCsvZywgJyAnKVxuICAgICAgICBmb3JtLmFwcGVuZChkZWNvZGVVUklDb21wb25lbnQobmFtZSksIGRlY29kZVVSSUNvbXBvbmVudCh2YWx1ZSkpXG4gICAgICB9XG4gICAgfSlcbiAgICByZXR1cm4gZm9ybVxuICB9XG5cbiAgZnVuY3Rpb24gcGFyc2VIZWFkZXJzKHJhd0hlYWRlcnMpIHtcbiAgICB2YXIgaGVhZGVycyA9IG5ldyBIZWFkZXJzKClcbiAgICByYXdIZWFkZXJzLnNwbGl0KCdcXHJcXG4nKS5mb3JFYWNoKGZ1bmN0aW9uKGxpbmUpIHtcbiAgICAgIHZhciBwYXJ0cyA9IGxpbmUuc3BsaXQoJzonKVxuICAgICAgdmFyIGtleSA9IHBhcnRzLnNoaWZ0KCkudHJpbSgpXG4gICAgICBpZiAoa2V5KSB7XG4gICAgICAgIHZhciB2YWx1ZSA9IHBhcnRzLmpvaW4oJzonKS50cmltKClcbiAgICAgICAgaGVhZGVycy5hcHBlbmQoa2V5LCB2YWx1ZSlcbiAgICAgIH1cbiAgICB9KVxuICAgIHJldHVybiBoZWFkZXJzXG4gIH1cblxuICBCb2R5LmNhbGwoUmVxdWVzdC5wcm90b3R5cGUpXG5cbiAgZnVuY3Rpb24gUmVzcG9uc2UoYm9keUluaXQsIG9wdGlvbnMpIHtcbiAgICBpZiAoIW9wdGlvbnMpIHtcbiAgICAgIG9wdGlvbnMgPSB7fVxuICAgIH1cblxuICAgIHRoaXMudHlwZSA9ICdkZWZhdWx0J1xuICAgIHRoaXMuc3RhdHVzID0gJ3N0YXR1cycgaW4gb3B0aW9ucyA/IG9wdGlvbnMuc3RhdHVzIDogMjAwXG4gICAgdGhpcy5vayA9IHRoaXMuc3RhdHVzID49IDIwMCAmJiB0aGlzLnN0YXR1cyA8IDMwMFxuICAgIHRoaXMuc3RhdHVzVGV4dCA9ICdzdGF0dXNUZXh0JyBpbiBvcHRpb25zID8gb3B0aW9ucy5zdGF0dXNUZXh0IDogJ09LJ1xuICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKG9wdGlvbnMuaGVhZGVycylcbiAgICB0aGlzLnVybCA9IG9wdGlvbnMudXJsIHx8ICcnXG4gICAgdGhpcy5faW5pdEJvZHkoYm9keUluaXQpXG4gIH1cblxuICBCb2R5LmNhbGwoUmVzcG9uc2UucHJvdG90eXBlKVxuXG4gIFJlc3BvbnNlLnByb3RvdHlwZS5jbG9uZSA9IGZ1bmN0aW9uKCkge1xuICAgIHJldHVybiBuZXcgUmVzcG9uc2UodGhpcy5fYm9keUluaXQsIHtcbiAgICAgIHN0YXR1czogdGhpcy5zdGF0dXMsXG4gICAgICBzdGF0dXNUZXh0OiB0aGlzLnN0YXR1c1RleHQsXG4gICAgICBoZWFkZXJzOiBuZXcgSGVhZGVycyh0aGlzLmhlYWRlcnMpLFxuICAgICAgdXJsOiB0aGlzLnVybFxuICAgIH0pXG4gIH1cblxuICBSZXNwb25zZS5lcnJvciA9IGZ1bmN0aW9uKCkge1xuICAgIHZhciByZXNwb25zZSA9IG5ldyBSZXNwb25zZShudWxsLCB7c3RhdHVzOiAwLCBzdGF0dXNUZXh0OiAnJ30pXG4gICAgcmVzcG9uc2UudHlwZSA9ICdlcnJvcidcbiAgICByZXR1cm4gcmVzcG9uc2VcbiAgfVxuXG4gIHZhciByZWRpcmVjdFN0YXR1c2VzID0gWzMwMSwgMzAyLCAzMDMsIDMwNywgMzA4XVxuXG4gIFJlc3BvbnNlLnJlZGlyZWN0ID0gZnVuY3Rpb24odXJsLCBzdGF0dXMpIHtcbiAgICBpZiAocmVkaXJlY3RTdGF0dXNlcy5pbmRleE9mKHN0YXR1cykgPT09IC0xKSB7XG4gICAgICB0aHJvdyBuZXcgUmFuZ2VFcnJvcignSW52YWxpZCBzdGF0dXMgY29kZScpXG4gICAgfVxuXG4gICAgcmV0dXJuIG5ldyBSZXNwb25zZShudWxsLCB7c3RhdHVzOiBzdGF0dXMsIGhlYWRlcnM6IHtsb2NhdGlvbjogdXJsfX0pXG4gIH1cblxuICBzZWxmLkhlYWRlcnMgPSBIZWFkZXJzXG4gIHNlbGYuUmVxdWVzdCA9IFJlcXVlc3RcbiAgc2VsZi5SZXNwb25zZSA9IFJlc3BvbnNlXG5cbiAgc2VsZi5mZXRjaCA9IGZ1bmN0aW9uKGlucHV0LCBpbml0KSB7XG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKGZ1bmN0aW9uKHJlc29sdmUsIHJlamVjdCkge1xuICAgICAgdmFyIHJlcXVlc3QgPSBuZXcgUmVxdWVzdChpbnB1dCwgaW5pdClcbiAgICAgIHZhciB4aHIgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKVxuXG4gICAgICB4aHIub25sb2FkID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHZhciBvcHRpb25zID0ge1xuICAgICAgICAgIHN0YXR1czogeGhyLnN0YXR1cyxcbiAgICAgICAgICBzdGF0dXNUZXh0OiB4aHIuc3RhdHVzVGV4dCxcbiAgICAgICAgICBoZWFkZXJzOiBwYXJzZUhlYWRlcnMoeGhyLmdldEFsbFJlc3BvbnNlSGVhZGVycygpIHx8ICcnKVxuICAgICAgICB9XG4gICAgICAgIG9wdGlvbnMudXJsID0gJ3Jlc3BvbnNlVVJMJyBpbiB4aHIgPyB4aHIucmVzcG9uc2VVUkwgOiBvcHRpb25zLmhlYWRlcnMuZ2V0KCdYLVJlcXVlc3QtVVJMJylcbiAgICAgICAgdmFyIGJvZHkgPSAncmVzcG9uc2UnIGluIHhociA/IHhoci5yZXNwb25zZSA6IHhoci5yZXNwb25zZVRleHRcbiAgICAgICAgcmVzb2x2ZShuZXcgUmVzcG9uc2UoYm9keSwgb3B0aW9ucykpXG4gICAgICB9XG5cbiAgICAgIHhoci5vbmVycm9yID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHJlamVjdChuZXcgVHlwZUVycm9yKCdOZXR3b3JrIHJlcXVlc3QgZmFpbGVkJykpXG4gICAgICB9XG5cbiAgICAgIHhoci5vbnRpbWVvdXQgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgcmVqZWN0KG5ldyBUeXBlRXJyb3IoJ05ldHdvcmsgcmVxdWVzdCBmYWlsZWQnKSlcbiAgICAgIH1cblxuICAgICAgeGhyLm9wZW4ocmVxdWVzdC5tZXRob2QsIHJlcXVlc3QudXJsLCB0cnVlKVxuXG4gICAgICBpZiAocmVxdWVzdC5jcmVkZW50aWFscyA9PT0gJ2luY2x1ZGUnKSB7XG4gICAgICAgIHhoci53aXRoQ3JlZGVudGlhbHMgPSB0cnVlXG4gICAgICB9XG5cbiAgICAgIGlmICgncmVzcG9uc2VUeXBlJyBpbiB4aHIgJiYgc3VwcG9ydC5ibG9iKSB7XG4gICAgICAgIHhoci5yZXNwb25zZVR5cGUgPSAnYmxvYidcbiAgICAgIH1cblxuICAgICAgcmVxdWVzdC5oZWFkZXJzLmZvckVhY2goZnVuY3Rpb24odmFsdWUsIG5hbWUpIHtcbiAgICAgICAgeGhyLnNldFJlcXVlc3RIZWFkZXIobmFtZSwgdmFsdWUpXG4gICAgICB9KVxuXG4gICAgICB4aHIuc2VuZCh0eXBlb2YgcmVxdWVzdC5fYm9keUluaXQgPT09ICd1bmRlZmluZWQnID8gbnVsbCA6IHJlcXVlc3QuX2JvZHlJbml0KVxuICAgIH0pXG4gIH1cbiAgc2VsZi5mZXRjaC5wb2x5ZmlsbCA9IHRydWVcbn0pKHR5cGVvZiBzZWxmICE9PSAndW5kZWZpbmVkJyA/IHNlbGYgOiB0aGlzKTtcbiJdfQ=="
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/js/csrf.js",
    "content": "function getCookie(name) {\n  var cookieValue = null;\n\n  if (document.cookie && document.cookie != '') {\n    var cookies = document.cookie.split(';');\n\n    for (var i = 0; i < cookies.length; i++) {\n      var cookie = jQuery.trim(cookies[i]);\n\n      // Does this cookie string begin with the name we want?\n      if (cookie.substring(0, name.length + 1) == (name + '=')) {\n        cookieValue = decodeURIComponent(cookie.substring(name.length + 1));\n        break;\n      }\n    }\n  }\n\n  return cookieValue;\n}\n\nfunction csrfSafeMethod(method) {\n  // these HTTP methods do not require CSRF protection\n  return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));\n}\n\nfunction sameOrigin(url) {\n  // test that a given url is a same-origin URL\n  // url could be relative or scheme relative or absolute\n  var host = document.location.host; // host + port\n  var protocol = document.location.protocol;\n  var sr_origin = '//' + host;\n  var origin = protocol + sr_origin;\n\n  // Allow absolute or scheme relative URLs to same origin\n  return (url == origin || url.slice(0, origin.length + 1) == origin + '/') ||\n    (url == sr_origin || url.slice(0, sr_origin.length + 1) == sr_origin + '/') ||\n    // or any other URL that isn't scheme relative or absolute i.e relative.\n    !(/^(\\/\\/|http:|https:).*/.test(url));\n}\n\nvar csrftoken = getCookie(window.drf.csrfCookieName);\n\n$.ajaxSetup({\n  beforeSend: function(xhr, settings) {\n    if (!csrfSafeMethod(settings.type) && sameOrigin(settings.url)) {\n      // Send the token to same-origin, relative URLs only.\n      // Send the token only if the method warrants CSRF protection\n      // Using the CSRFToken value acquired earlier\n      xhr.setRequestHeader(window.drf.csrfHeaderName, csrftoken);\n    }\n  }\n});\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/js/default.js",
    "content": "$(document).ready(function() {\n  // JSON highlighting.\n  prettyPrint();\n\n  // Bootstrap tooltips.\n  $('.js-tooltip').tooltip({\n    delay: 1000,\n    container: 'body'\n  });\n\n  // Deal with rounded tab styling after tab clicks.\n  $('a[data-toggle=\"tab\"]:first').on('shown', function(e) {\n    $(e.target).parents('.tabbable').addClass('first-tab-active');\n  });\n\n  $('a[data-toggle=\"tab\"]:not(:first)').on('shown', function(e) {\n    $(e.target).parents('.tabbable').removeClass('first-tab-active');\n  });\n\n  $('a[data-toggle=\"tab\"]').click(function() {\n    document.cookie = \"tabstyle=\" + this.name + \"; path=/\";\n  });\n\n  // Store tab preference in cookies & display appropriate tab on load.\n  var selectedTab = null;\n  var selectedTabName = getCookie('tabstyle');\n\n  if (selectedTabName) {\n    selectedTabName = selectedTabName.replace(/[^a-z-]/g, '');\n  }\n\n  if (selectedTabName) {\n    selectedTab = $('.form-switcher a[name=' + selectedTabName + ']');\n  }\n\n  if (selectedTab && selectedTab.length > 0) {\n    // Display whichever tab is selected.\n    selectedTab.tab('show');\n  } else {\n    // If no tab selected, display rightmost tab.\n    $('.form-switcher a:first').tab('show');\n  }\n\n  $(window).load(function() {\n    $('#errorModal').modal('show');\n  });\n});\n"
  },
  {
    "path": "jet_django/static/jet_django.deps.rest_framework/js/prettify-min.js",
    "content": "var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;\n(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:\"0\"<=b&&b<=\"7\"?parseInt(a.substring(1),8):b===\"u\"||b===\"x\"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?\"\\\\x0\":\"\\\\x\")+a.toString(16);a=String.fromCharCode(a);if(a===\"\\\\\"||a===\"-\"||a===\"[\"||a===\"]\")a=\"\\\\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\S\\s]|[^\\\\]/g),a=\n[],b=[],o=f[0]===\"^\",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&\"-\"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=[\"[\"];o&&b.push(\"^\");b.push.apply(b,a);for(c=0;c<\nf.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push(\"-\"),b.push(e(i[1])));b.push(\"]\");return b.join(\"\")}function y(a){for(var f=a.source.match(/\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*]|\\\\u[\\dA-Fa-f]{4}|\\\\x[\\dA-Fa-f]{2}|\\\\\\d+|\\\\[^\\dux]|\\(\\?[!:=]|[()^]|[^()[\\\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j===\"(\"?++i:\"\\\\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j===\"(\"?(++i,d[i]===void 0&&(f[c]=\"(?:\")):\"\\\\\"===j.charAt(0)&&\n(j=+j.substring(1))&&j<=i&&(f[c]=\"\\\\\"+d[i]);for(i=c=0;c<b;++c)\"^\"===f[c]&&\"^\"!==f[c+1]&&(f[c]=\"\");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a===\"[\"?f[c]=h(j):a!==\"\\\\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return\"[\"+String.fromCharCode(a&-33,a|32)+\"]\"}));return f.join(\"\")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\\\u[\\da-f]{4}|\\\\x[\\da-f]{2}|\\\\[^UXux]/gi,\"\"))){s=!0;l=!1;break}}for(var r=\n{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(\"\"+g);n.push(\"(?:\"+y(g)+\")\")}return RegExp(n.join(\"|\"),l?\"gi\":\"g\")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if(\"BR\"===g||\"LI\"===g)h[s]=\"\\n\",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\\r\\n?/g,\"\\n\"):g.replace(/[\\t\\n\\r ]+/g,\" \"),h[s]=g,t[s<<1]=y,y+=g.length,\nt[s++<<1|1]=a)}}var e=/(?:^|\\s)nocode(?:\\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue(\"white-space\"));var p=l&&\"pre\"===l.substring(0,3);m(a);return{a:h.join(\"\").replace(/\\n$/,\"\"),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,\"pln\"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b===\n\"string\")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b=\"pln\")}if((c=b.length>=5&&\"lang-\"===b.substring(0,5))&&!(o&&typeof o[1]===\"string\"))c=!1,b=\"src\";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),\nl=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=\"\"+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\\S\\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push([\"str\",/^(?:'''(?:[^'\\\\]|\\\\[\\S\\s]|''?(?=[^']))*(?:'''|$)|\"\"\"(?:[^\"\\\\]|\\\\[\\S\\s]|\"\"?(?=[^\"]))*(?:\"\"\"|$)|'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$))/,q,\"'\\\"\"]):a.multiLineStrings?m.push([\"str\",/^(?:'(?:[^'\\\\]|\\\\[\\S\\s])*(?:'|$)|\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$)|`(?:[^\\\\`]|\\\\[\\S\\s])*(?:`|$))/,\nq,\"'\\\"`\"]):m.push([\"str\",/^(?:'(?:[^\\n\\r'\\\\]|\\\\.)*(?:'|$)|\"(?:[^\\n\\r\"\\\\]|\\\\.)*(?:\"|$))/,q,\"\\\"'\"]);a.verbatimStrings&&e.push([\"str\",/^@\"(?:[^\"]|\"\")*(?:\"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push([\"com\",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,\"#\"]):m.push([\"com\",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\\b|[^\\n\\r]*)/,q,\"#\"]),e.push([\"str\",/^<(?:(?:(?:\\.\\.\\/)*|\\/?)(?:[\\w-]+(?:\\/[\\w-]+)+)?[\\w-]+\\.h|[a-z]\\w*)>/,q])):m.push([\"com\",/^#[^\\n\\r]*/,\nq,\"#\"]));a.cStyleComments&&(e.push([\"com\",/^\\/\\/[^\\n\\r]*/,q]),e.push([\"com\",/^\\/\\*[\\S\\s]*?(?:\\*\\/|$)/,q]));a.regexLiterals&&e.push([\"lang-regex\",/^(?:^^\\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|,|-=|->|\\/|\\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\\^=|\\^\\^|\\^\\^=|{|\\||\\|=|\\|\\||\\|\\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*(\\/(?=[^*/])(?:[^/[\\\\]|\\\\[\\S\\s]|\\[(?:[^\\\\\\]]|\\\\[\\S\\s])*(?:]|$))+\\/)/]);(h=a.types)&&e.push([\"typ\",h]);a=(\"\"+a.keywords).replace(/^ | $/g,\n\"\");a.length&&e.push([\"kwd\",RegExp(\"^(?:\"+a.replace(/[\\s,]+/g,\"|\")+\")\\\\b\"),q]);m.push([\"pln\",/^\\s+/,q,\" \\r\\n\\t\\xa0\"]);e.push([\"lit\",/^@[$_a-z][\\w$@]*/i,q],[\"typ\",/^(?:[@_]?[A-Z]+[a-z][\\w$@]*|\\w+_t\\b)/,q],[\"pln\",/^[$_a-z][\\w$@]*/i,q],[\"lit\",/^(?:0x[\\da-f]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+-]?\\d+)?)[a-z]*/i,q,\"0123456789\"],[\"pln\",/^\\\\[\\S\\s]?/,q],[\"pun\",/^.[^\\s\\w\"-$'./@\\\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if(\"BR\"===a.nodeName)h(a),\na.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}\nfor(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\\s)nocode(?:\\s|$)/,t=/\\r\\n?|\\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue(\"white-space\"));var p=l&&\"pre\"===l.substring(0,3);for(l=s.createElement(\"LI\");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute(\"value\",\nm);var r=s.createElement(\"OL\");r.className=\"linenums\";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className=\"L\"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode(\"\\xa0\")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn(\"cannot override language handler %s\",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\\s*</.test(m)?\"default-markup\":\"default-code\";return A[a]}function E(a){var m=\na.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\\bMSIE\\b/.test(navigator.userAgent),m=/\\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,\"\\r\"));i.nodeValue=\nj;var u=i.ownerDocument,v=u.createElement(\"SPAN\");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){\"console\"in window&&console.log(w&&w.stack?w.stack:w)}}var v=[\"break,continue,do,else,for,if,return,while\"],w=[[v,\"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile\"],\n\"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof\"],F=[w,\"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where\"],G=[w,\"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient\"],\nH=[G,\"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var\"],w=[w,\"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN\"],I=[v,\"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None\"],\nJ=[v,\"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END\"],v=[v,\"case,done,elif,esac,eval,fi,function,in,local,set,then,until\"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\\d*)/,N=/\\S/,O=u({keywords:[F,H,w,\"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END\"+\nI,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,[\"default-code\"]);k(x([],[[\"pln\",/^[^<?]+/],[\"dec\",/^<!\\w[^>]*(?:>|$)/],[\"com\",/^<\\!--[\\S\\s]*?(?:--\\>|$)/],[\"lang-\",/^<\\?([\\S\\s]+?)(?:\\?>|$)/],[\"lang-\",/^<%([\\S\\s]+?)(?:%>|$)/],[\"pun\",/^(?:<[%?]|[%?]>)/],[\"lang-\",/^<xmp\\b[^>]*>([\\S\\s]+?)<\\/xmp\\b[^>]*>/i],[\"lang-js\",/^<script\\b[^>]*>([\\S\\s]*?)(<\\/script\\b[^>]*>)/i],[\"lang-css\",/^<style\\b[^>]*>([\\S\\s]*?)(<\\/style\\b[^>]*>)/i],[\"lang-in.tag\",/^(<\\/?[a-z][^<>]*>)/i]]),\n[\"default-markup\",\"htm\",\"html\",\"mxml\",\"xhtml\",\"xml\",\"xsl\"]);k(x([[\"pln\",/^\\s+/,q,\" \\t\\r\\n\"],[\"atv\",/^(?:\"[^\"]*\"?|'[^']*'?)/,q,\"\\\"'\"]],[[\"tag\",/^^<\\/?[a-z](?:[\\w-.:]*\\w)?|\\/?>$/i],[\"atn\",/^(?!style[\\s=]|on)[a-z](?:[\\w:-]*\\w)?/i],[\"lang-uq.val\",/^=\\s*([^\\s\"'>]*(?:[^\\s\"'/>]|\\/(?=\\s)))/],[\"pun\",/^[/<->]+/],[\"lang-js\",/^on\\w+\\s*=\\s*\"([^\"]+)\"/i],[\"lang-js\",/^on\\w+\\s*=\\s*'([^']+)'/i],[\"lang-js\",/^on\\w+\\s*=\\s*([^\\s\"'>]+)/i],[\"lang-css\",/^style\\s*=\\s*\"([^\"]+)\"/i],[\"lang-css\",/^style\\s*=\\s*'([^']+)'/i],[\"lang-css\",\n/^style\\s*=\\s*([^\\s\"'>]+)/i]]),[\"in.tag\"]);k(x([],[[\"atv\",/^[\\S\\s]+/]]),[\"uq.val\"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),[\"c\",\"cc\",\"cpp\",\"cxx\",\"cyc\",\"m\"]);k(u({keywords:\"null,true,false\"}),[\"json\"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),[\"cs\"]);k(u({keywords:G,cStyleComments:!0}),[\"java\"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),[\"bsh\",\"csh\",\"sh\"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),\n[\"cv\",\"py\"]);k(u({keywords:\"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END\",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),[\"perl\",\"pl\",\"pm\"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),[\"rb\"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),[\"js\"]);k(u({keywords:\"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes\",\nhashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),[\"coffee\"]);k(x([],[[\"str\",/^[\\S\\s]+/]]),[\"regex\"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement(\"PRE\");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf(\"prettyprint\")>=0){var k=k.match(g),f,b;if(b=\n!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&\"CODE\"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName===\"pre\"||o.tagName===\"code\"||o.tagName===\"xmp\")&&o.className&&o.className.indexOf(\"prettyprint\")>=0){b=!0;break}b||((b=(b=n.className.match(/\\blinenums\\b(?::(\\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,\n250):a&&a()}for(var e=[document.getElementsByTagName(\"pre\"),document.getElementsByTagName(\"code\"),document.getElementsByTagName(\"xmp\")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\\blang(?:uage)?-([\\w.]+)(?!\\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:\"atn\",PR_ATTRIB_VALUE:\"atv\",PR_COMMENT:\"com\",PR_DECLARATION:\"dec\",PR_KEYWORD:\"kwd\",PR_LITERAL:\"lit\",\nPR_NOCODE:\"nocode\",PR_PLAIN:\"pln\",PR_PUNCTUATION:\"pun\",PR_SOURCE:\"src\",PR_STRING:\"str\",PR_TAG:\"tag\",PR_TYPE:\"typ\"}})();\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.django_filters/rest_framework/crispy_form.html",
    "content": "{% load crispy_forms_tags %}\n{% load i18n %}\n\n<h2>{% trans \"Field filters\" %}</h2>\n{% crispy filter.form %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.django_filters/rest_framework/form.html",
    "content": "{% load i18n %}\n<h2>{% trans \"Field filters\" %}</h2>\n<form class=\"form\" action=\"\" method=\"get\">\n    {{ filter.form.as_p }}\n    <button type=\"submit\" class=\"btn btn-primary\">{% trans \"Submit\" %}</button>\n</form>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.django_filters/widgets/multiwidget.html",
    "content": "{% for widget in widget.subwidgets %}{% include widget.template_name %}{% if forloop.first %}-{% endif %}{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin/detail.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<table class=\"table table-striped\">\n  <tbody>\n    {% for key, value in results|items %}\n      {% if key in details %}\n        <tr><th>{{ key|capfirst }}</th><td {{ value|add_nested_class }}>{{ value|format_value }}</td></tr>\n      {% endif %}\n    {% endfor %}\n  </tbody>\n</table>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin/dict_value.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<table class=\"table table-striped\">\n  <tbody>\n    {% for k, v in value|items %}\n      <tr>\n        <th>{{ k|format_value }}</th>\n        <td>{{ v|format_value }}</td>\n      </tr>\n    {% endfor %}\n  </tbody>\n</table>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin/list.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<table class=\"table table-striped\">\n  <thead>\n    <tr>{% for column in columns%}<th>{{ column|capfirst }}</th>{% endfor %}<th></th></tr>\n  </thead>\n  <tbody>\n    {% for row in results %}\n      <tr>\n        {% for key, value in row|items %}\n          {% if key in columns %}\n            <td {{ value|add_nested_class }} >\n              {{ value|format_value }}\n            </td>\n          {% endif %}\n        {% endfor %}\n        <td>\n          <a href=\"{{ row.url }}\"><span class=\"glyphicon glyphicon-chevron-right\" aria-hidden=\"true\"></span></a>\n        </td>\n      </tr>\n    {% endfor %}\n  </tbody>\n</table>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin/list_value.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<table class=\"table table-striped\">\n  <tbody>\n    {% for item in value %}\n      <tr>\n        <th>{{ forloop.counter0 }}</th>\n        <td>{{ item|format_value }}</td>\n      </tr>\n    {% endfor %}\n  </tbody>\n</table>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin/simple_list_value.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% for item in value %}{% if not forloop.first%},{% endif %} {{item|format_value}}{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/admin.html",
    "content": "{% load static %}\n{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n\n<!DOCTYPE html>\n<html>\n  <head>\n    {% block head %}\n\n      {% block meta %}\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n        <meta name=\"robots\" content=\"NONE,NOARCHIVE\" />\n      {% endblock %}\n\n      <title>{% block title %}Django REST framework{% endblock %}</title>\n\n      {% block style %}\n        {% block bootstrap_theme %}\n          <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/bootstrap.min.css\" %}\"/>\n          <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/bootstrap-tweaks.css\" %}\"/>\n        {% endblock %}\n        <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/prettify.css\" %}\"/>\n        <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/default.css\" %}\"/>\n      {% endblock %}\n\n    {% endblock %}\n  </head>\n\n  {% block body %}\n    <body class=\"{% block bodyclass %}{% endblock %}\">\n      <div class=\"wrapper\">\n          {% block navbar %}\n            <div class=\"navbar navbar-static-top {% block bootstrap_navbar_variant %}navbar-inverse{% endblock %}\">\n              <div class=\"container\">\n                <span>\n                  {% block branding %}\n                    <a class='navbar-brand' rel=\"nofollow\" href='http://www.django-rest-framework.org'>\n                      Django REST framework\n                    </a>\n                  {% endblock %}\n                </span>\n                <ul class=\"nav navbar-nav pull-right\">\n                  {% block userlinks %}\n                    {% if user.is_authenticated %}\n                      {% optional_logout request user %}\n                    {% else %}\n                      {% optional_login request %}\n                    {% endif %}\n                  {% endblock %}\n                </ul>\n              </div>\n            </div>\n          {% endblock %}\n\n          <div class=\"container\">\n            {% block breadcrumbs %}\n              <ul class=\"breadcrumb\">\n                {% for breadcrumb_name, breadcrumb_url in breadcrumblist %}\n                  {% if forloop.last %}\n                    <li class=\"active\"><a href=\"{{ breadcrumb_url }}\">{{ breadcrumb_name }}</a></li>\n                  {% else %}\n                    <li><a href=\"{{ breadcrumb_url }}\">{{ breadcrumb_name }}</a></li>\n                  {% endif %}\n                {% endfor %}\n              </ul>\n            {% endblock %}\n\n          <!-- Content -->\n          <div id=\"content\">\n            {% if 'GET' in allowed_methods %}\n              <form id=\"get-form\" class=\"pull-right\">\n                <fieldset>\n                  <div class=\"btn-group format-selection\">\n                    <button class=\"btn btn-primary dropdown-toggle\" data-toggle=\"dropdown\">\n                      Format <span class=\"caret\"></span>\n                    </button>\n                    <ul class=\"dropdown-menu\">\n                      {% for format in available_formats %}\n                        <li>\n                          <a class=\"format-option\"\n                              href='{% add_query_param request api_settings.URL_FORMAT_OVERRIDE format %}'\n                               rel=\"nofollow\">\n                              {{ format }}\n                          </a>\n                        </li>\n                      {% endfor %}\n                    </ul>\n                  </div>\n                </fieldset>\n              </form>\n            {% endif %}\n\n            {% if post_form %}\n              <button type=\"button\" class=\"button-form btn btn-primary\" data-toggle=\"modal\" data-target=\"#createModal\">\n                <span class=\"glyphicon glyphicon-plus\" aria-hidden=\"true\"></span> Create\n              </button>\n            {% endif %}\n\n            {% if put_form %}\n              <button type=\"button\" class=\"button-form btn btn-primary\" data-toggle=\"modal\" data-target=\"#editModal\">\n                <span class=\"glyphicon glyphicon-pencil\" aria-hidden=\"true\"></span> Edit\n              </button>\n            {% endif %}\n\n            {% if delete_form %}\n              <form class=\"button-form\" action=\"{{ request.get_full_path }}\" data-method=\"DELETE\">\n                <button class=\"btn btn-danger\">\n                  <span class=\"glyphicon glyphicon-remove\" aria-hidden=\"true\"></span> Delete\n                </button>\n              </form>\n            {% endif %}\n\n            {% if filter_form %}\n              <button style=\"float: right; margin-right: 10px\" data-toggle=\"modal\" data-target=\"#filtersModal\" class=\"btn btn-default\">\n                <span class=\"glyphicon glyphicon-wrench\" aria-hidden=\"true\"></span>\n                {% trans \"Filters\" %}\n              </button>\n            {% endif %}\n\n            <div class=\"content-main\">\n              <div class=\"page-header\">\n                <h1>{{ name }}</h1>\n              </div>\n\n              <div style=\"float:left\">\n                {% block description %}\n                  {{ description }}\n                {% endblock %}\n              </div>\n\n              {% if paginator %}\n                <nav style=\"float: right\">\n                  {% get_pagination_html paginator %}\n                </nav>\n              {% endif %}\n\n              <div class=\"request-info\" style=\"clear: both\" >\n                {% if style == 'list' %}\n                  {% include \"jet_django.deps.rest_framework/admin/list.html\" %}\n                {% else %}\n                  {% include \"jet_django.deps.rest_framework/admin/detail.html\" %}\n                {% endif %}\n              </div>\n\n              {% if paginator %}\n                <nav style=\"float: right\">\n                  {% get_pagination_html paginator %}\n                </nav>\n              {% endif %}\n            </div>\n          </div>\n          <!-- END Content -->\n        </div><!-- /.container -->\n      </div><!-- ./wrapper -->\n\n      <!-- Create Modal -->\n      <div class=\"modal fade\" id=\"createModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\n        <div class=\"modal-dialog\">\n          <div class=\"modal-content\">\n            <div class=\"modal-header\">\n              <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">&times;</span></button>\n              <h4 class=\"modal-title\" id=\"myModalLabel\">Create</h4>\n            </div>\n            <form action=\"{{ request.get_full_path }}\" method=\"POST\" enctype=\"multipart/form-data\" class=\"form-horizontal\" novalidate>\n              <div class=\"modal-body\">\n                <fieldset>\n                  {% csrf_token %}\n                  {{ post_form }}\n                </fieldset>\n              </div>\n              <div class=\"modal-footer\">\n                <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n                <button type=\"submit\" class=\"btn btn-primary\">Save</button>\n              </div>\n            </form>\n          </div>\n        </div>\n      </div>\n\n      <!-- Edit Modal -->\n      <div class=\"modal fade\" id=\"editModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\n        <div class=\"modal-dialog\">\n          <div class=\"modal-content\">\n            <div class=\"modal-header\">\n              <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">&times;</span></button>\n              <h4 class=\"modal-title\" id=\"myModalLabel\">Edit</h4>\n            </div>\n            <form action=\"{{ request.get_full_path }}\" data-method=\"PUT\" enctype=\"multipart/form-data\" class=\"form-horizontal\" novalidate>\n              <div class=\"modal-body\">\n                <fieldset>\n                  {{ put_form }}\n                </fieldset>\n              </div>\n              <div class=\"modal-footer\">\n                <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n                <button type=\"submit\" class=\"btn btn-primary\">Save</button>\n              </div>\n            </form>\n          </div>\n        </div>\n      </div>\n\n      {% if error_form %}\n        <!-- Errors Modal -->\n        <div class=\"modal\" id=\"errorModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\n          <div class=\"modal-dialog\">\n            <div class=\"modal-content\">\n              <div class=\"modal-header\">\n                <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">&times;</span></button>\n                <h4 class=\"modal-title\" id=\"myModalLabel\">{{ error_title }}</h4>\n              </div>\n              <form action=\"{{ request.get_full_path }}\" data-method=\"{{ request.method }}\" enctype=\"multipart/form-data\" class=\"form-horizontal\" novalidate>\n                <div class=\"modal-body\">\n                  <fieldset>\n                    {{ error_form }}\n                  </fieldset>\n                </div>\n                <div class=\"modal-footer\">\n                  <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n                  <button type=\"submit\" class=\"btn btn-primary\">Save</button>\n                </div>\n              </form>\n            </div>\n          </div>\n        </div>\n      {% endif %}\n\n      {% if filter_form %}\n        {{ filter_form }}\n      {% endif %}\n\n      {% block script %}\n        <script>\n          window.drf = {\n            csrfHeaderName: \"{{ csrf_header_name|default:'X-CSRFToken' }}\",\n            csrfCookieName: \"{{ csrf_cookie_name|default:'csrftoken' }}\"\n          };\n        </script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/jquery-3.3.1.min.js\" %}\"></script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/ajax-form.js\" %}\"></script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/csrf.js\" %}\"></script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/bootstrap.min.js\" %}\"></script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/prettify-min.js\" %}\"></script>\n        <script src=\"{% static \"jet_django.deps.rest_framework/js/default.js\" %}\"></script>\n        <script>\n          $(document).ready(function() {\n            $('form').ajaxForm();\n          });\n        </script>\n      {% endblock %}\n    </body>\n  {% endblock %}\n</html>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/api.html",
    "content": "{% extends \"jet_django.deps.rest_framework/base.html\" %}\n\n{# Override this template in your own templates directory to customize #}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/base.html",
    "content": "{% load static %}\n{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n\n<!DOCTYPE html>\n<html>\n  <head>\n    {% block head %}\n\n      {% block meta %}\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n        <meta name=\"robots\" content=\"NONE,NOARCHIVE\" />\n      {% endblock %}\n\n      <title>{% block title %}{% if name %}{{ name }} – {% endif %}Django REST framework{% endblock %}</title>\n\n      {% block style %}\n        {% block bootstrap_theme %}\n          <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/bootstrap.min.css\" %}\"/>\n          <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/bootstrap-tweaks.css\" %}\"/>\n        {% endblock %}\n\n        <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/prettify.css\" %}\"/>\n        <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static \"jet_django.deps.rest_framework/css/default.css\" %}\"/>\n        {% if code_style %}<style>{{ code_style }}</style>{% endif %}\n      {% endblock %}\n\n    {% endblock %}\n  </head>\n\n  {% block body %}\n  <body class=\"{% block bodyclass %}{% endblock %}\">\n\n    <div class=\"wrapper\">\n      {% block navbar %}\n        <div class=\"navbar navbar-static-top {% block bootstrap_navbar_variant %}navbar-inverse{% endblock %}\"\n             role=\"navigation\" aria-label=\"{% trans \"navbar\" %}\">\n          <div class=\"container\">\n            <span>\n              {% block branding %}\n                <a class='navbar-brand' rel=\"nofollow\" href='http://www.django-rest-framework.org'>\n                    Django REST framework\n                </a>\n              {% endblock %}\n            </span>\n            <ul class=\"nav navbar-nav pull-right\">\n              {% block userlinks %}\n                {% if user.is_authenticated %}\n                  {% optional_logout request user %}\n                {% else %}\n                  {% optional_login request %}\n                {% endif %}\n              {% endblock %}\n            </ul>\n          </div>\n        </div>\n      {% endblock %}\n\n      <div class=\"container\">\n        {% block breadcrumbs %}\n          <ul class=\"breadcrumb\">\n            {% for breadcrumb_name, breadcrumb_url in breadcrumblist %}\n              {% if forloop.last %}\n                <li class=\"active\"><a href=\"{{ breadcrumb_url }}\">{{ breadcrumb_name }}</a></li>\n              {% else %}\n                <li><a href=\"{{ breadcrumb_url }}\">{{ breadcrumb_name }}</a></li>\n              {% endif %}\n            {% empty %}\n              {% block breadcrumbs_empty %}&nbsp;{% endblock breadcrumbs_empty %}\n            {% endfor %}\n          </ul>\n        {% endblock %}\n\n        <!-- Content -->\n        <div id=\"content\" role=\"main\" aria-label=\"{% trans \"content\" %}\">\n          {% block content %}\n\n          <div class=\"region\"  aria-label=\"{% trans \"request form\" %}\">\n          {% if 'GET' in allowed_methods %}\n            <form id=\"get-form\" class=\"pull-right\">\n              <fieldset>\n                {% if api_settings.URL_FORMAT_OVERRIDE %}\n                  <div class=\"btn-group format-selection\">\n                    <a class=\"btn btn-primary js-tooltip\" href=\"{{ request.get_full_path }}\" rel=\"nofollow\" title=\"Make a GET request on the {{ name }} resource\">GET</a>\n\n                    <button class=\"btn btn-primary dropdown-toggle js-tooltip\" data-toggle=\"dropdown\" title=\"Specify a format for the GET request\">\n                      <span class=\"caret\"></span>\n                    </button>\n                    <ul class=\"dropdown-menu\">\n                      {% for format in available_formats %}\n                        <li>\n                          <a class=\"js-tooltip format-option\" href=\"{% add_query_param request api_settings.URL_FORMAT_OVERRIDE format %}\" rel=\"nofollow\" title=\"Make a GET request on the {{ name }} resource with the format set to `{{ format }}`\">{{ format }}</a>\n                        </li>\n                      {% endfor %}\n                    </ul>\n                  </div>\n                {% else %}\n                  <a class=\"btn btn-primary js-tooltip\" href=\"{{ request.get_full_path }}\" rel=\"nofollow\" title=\"Make a GET request on the {{ name }} resource\">GET</a>\n                {% endif %}\n              </fieldset>\n            </form>\n          {% endif %}\n\n          {% if options_form %}\n            <form class=\"button-form\" action=\"{{ request.get_full_path }}\" data-method=\"OPTIONS\">\n              <button class=\"btn btn-primary js-tooltip\" title=\"Make an OPTIONS request on the {{ name }} resource\">OPTIONS</button>\n            </form>\n          {% endif %}\n\n          {% if delete_form %}\n            <button class=\"btn btn-danger button-form js-tooltip\" title=\"Make a DELETE request on the {{ name }} resource\" data-toggle=\"modal\" data-target=\"#deleteModal\">DELETE</button>\n\n            <!-- Delete Modal -->\n            <div class=\"modal fade\" id=\"deleteModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\n              <div class=\"modal-dialog\">\n                <div class=\"modal-content\">\n                  <div class=\"modal-body\">\n                    <h4 class=\"text-center\">Are you sure you want to delete this {{ name }}?</h4>\n                  </div>\n                  <div class=\"modal-footer\">\n                    <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Cancel</button>\n                    <form class=\"button-form\" action=\"{{ request.get_full_path }}\" data-method=\"DELETE\">\n                      <button class=\"btn btn-danger\">Delete</button>\n                    </form>\n                  </div>\n                </div>\n              </div>\n            </div>\n          {% endif %}\n\n          {% if filter_form %}\n            <button style=\"float: right; margin-right: 10px\" data-toggle=\"modal\" data-target=\"#filtersModal\" class=\"btn btn-default\">\n              <span class=\"glyphicon glyphicon-wrench\" aria-hidden=\"true\"></span>\n              {% trans \"Filters\" %}\n            </button>\n          {% endif %}\n          </div>\n\n            <div class=\"content-main\" role=\"main\"  aria-label=\"{% trans \"main content\" %}\">\n              <div class=\"page-header\">\n                <h1>{{ name }}</h1>\n              </div>\n              <div style=\"float:left\">\n                {% block description %}\n                  {{ description }}\n                {% endblock %}\n              </div>\n\n              {% if paginator %}\n                <nav style=\"float: right\">\n                  {% get_pagination_html paginator %}\n                </nav>\n              {% endif %}\n\n              <div class=\"request-info\" style=\"clear: both\" aria-label=\"{% trans \"request info\" %}\">\n                <pre class=\"prettyprint\"><b>{{ request.method }}</b> {{ request.get_full_path }}</pre>\n              </div>\n\n              <div class=\"response-info\" aria-label=\"{% trans \"response info\" %}\">\n                <pre class=\"prettyprint\"><span class=\"meta nocode\"><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %}{% for key, val in response_headers|items %}\n<b>{{ key }}:</b> <span class=\"lit\">{{ val|break_long_headers|urlize_quoted_links }}</span>{% endfor %}\n\n</span>{{ content|urlize_quoted_links }}</pre>{% endautoescape %}\n              </div>\n            </div>\n\n            {% if display_edit_forms %}\n              {% if post_form or raw_data_post_form %}\n                <div {% if post_form %}class=\"tabbable\"{% endif %}>\n                  {% if post_form %}\n                    <ul class=\"nav nav-tabs form-switcher\">\n                      <li>\n                        <a name='html-tab' href=\"#post-object-form\" data-toggle=\"tab\">HTML form</a>\n                      </li>\n                      <li>\n                        <a name='raw-tab' href=\"#post-generic-content-form\" data-toggle=\"tab\">Raw data</a>\n                      </li>\n                    </ul>\n                  {% endif %}\n\n                  <div class=\"well tab-content\">\n                    {% if post_form %}\n                      <div class=\"tab-pane\" id=\"post-object-form\">\n                        {% with form=post_form %}\n                          <form action=\"{{ request.get_full_path }}\" method=\"POST\" enctype=\"multipart/form-data\" class=\"form-horizontal\" novalidate>\n                            <fieldset>\n                              {% csrf_token %}\n                              {{ post_form }}\n                              <div class=\"form-actions\">\n                                <button class=\"btn btn-primary\" title=\"Make a POST request on the {{ name }} resource\">POST</button>\n                              </div>\n                            </fieldset>\n                          </form>\n                        {% endwith %}\n                      </div>\n                    {% endif %}\n\n                    <div {% if post_form %}class=\"tab-pane\"{% endif %} id=\"post-generic-content-form\">\n                      {% with form=raw_data_post_form %}\n                        <form action=\"{{ request.get_full_path }}\" method=\"POST\" class=\"form-horizontal\">\n                          <fieldset>\n                            {% include \"jet_django.deps.rest_framework/raw_data_form.html\" %}\n                            <div class=\"form-actions\">\n                              <button class=\"btn btn-primary\" title=\"Make a POST request on the {{ name }} resource\">POST</button>\n                            </div>\n                          </fieldset>\n                        </form>\n                      {% endwith %}\n                    </div>\n                  </div>\n                </div>\n              {% endif %}\n\n              {% if put_form or raw_data_put_form or raw_data_patch_form %}\n                <div {% if put_form %}class=\"tabbable\"{% endif %}>\n                  {% if put_form %}\n                    <ul class=\"nav nav-tabs form-switcher\">\n                      <li>\n                        <a name='html-tab' href=\"#put-object-form\" data-toggle=\"tab\">HTML form</a>\n                      </li>\n                      <li>\n                        <a  name='raw-tab' href=\"#put-generic-content-form\" data-toggle=\"tab\">Raw data</a>\n                      </li>\n                    </ul>\n                  {% endif %}\n\n                  <div class=\"well tab-content\">\n                    {% if put_form %}\n                      <div class=\"tab-pane\" id=\"put-object-form\">\n                        <form action=\"{{ request.get_full_path }}\" data-method=\"PUT\" enctype=\"multipart/form-data\" class=\"form-horizontal\" novalidate>\n                          <fieldset>\n                            {{ put_form }}\n                            <div class=\"form-actions\">\n                              <button class=\"btn btn-primary js-tooltip\" title=\"Make a PUT request on the {{ name }} resource\">PUT</button>\n                            </div>\n                          </fieldset>\n                        </form>\n                      </div>\n                    {% endif %}\n\n                    <div {% if put_form %}class=\"tab-pane\"{% endif %} id=\"put-generic-content-form\">\n                      {% with form=raw_data_put_or_patch_form %}\n                        <form action=\"{{ request.get_full_path }}\" data-method=\"PUT\" class=\"form-horizontal\">\n                          <fieldset>\n                            {% include \"jet_django.deps.rest_framework/raw_data_form.html\" %}\n                            <div class=\"form-actions\">\n                              {% if raw_data_put_form %}\n                                <button class=\"btn btn-primary js-tooltip\" title=\"Make a PUT request on the {{ name }} resource\">PUT</button>\n                              {% endif %}\n                              {% if raw_data_patch_form %}\n                              <button data-method=\"PATCH\" class=\"btn btn-primary js-tooltip\" title=\"Make a PATCH request on the {{ name }} resource\">PATCH</button>\n                                {% endif %}\n                            </div>\n                          </fieldset>\n                        </form>\n                      {% endwith %}\n                    </div>\n                  </div>\n                </div>\n              {% endif %}\n            {% endif %}\n          {% endblock content %}\n        </div><!-- /.content -->\n      </div><!-- /.container -->\n    </div><!-- ./wrapper -->\n\n    {% if filter_form %}\n      {{ filter_form }}\n    {% endif %}\n\n    {% block script %}\n      <script>\n        window.drf = {\n          csrfHeaderName: \"{{ csrf_header_name|default:'X-CSRFToken' }}\",\n          csrfCookieName: \"{{ csrf_cookie_name|default:'csrftoken' }}\"\n        };\n      </script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/jquery-3.3.1.min.js\" %}\"></script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/ajax-form.js\" %}\"></script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/csrf.js\" %}\"></script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/bootstrap.min.js\" %}\"></script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/prettify-min.js\" %}\"></script>\n      <script src=\"{% static \"jet_django.deps.rest_framework/js/default.js\" %}\"></script>\n      <script>\n        $(document).ready(function() {\n          $('form').ajaxForm();\n        });\n      </script>\n    {% endblock %}\n\n  </body>\n  {% endblock %}\n</html>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/auth/basic.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<!-- Modal -->\n<div class=\"modal fade auth-modal auth-basic\" id=\"auth_basic_modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"basic authentication modal\">\n<div class=\"modal-dialog modal-md\" role=\"document\">\n  <div class=\"modal-content\">\n    <div class=\"modal-header\">\n      <h3 class=\"modal-title\"><i class=\"fa fa-key\"></i> Basic Authentication</h3>\n    </div>\n\n    <form class=\"form-horizontal authentication-basic-form\">\n    <div class=\"modal-body\">\n      <div class=\"form-group\">\n        <label for=\"authorization\" class=\"col-sm-2 control-label\">Username:</label>\n\n        <div class=\"col-sm-10\">\n          <input type=\"text\" class=\"form-control\" id=\"username\" required>\n        </div>\n      </div>\n\n      <div class=\"form-group\">\n        <label for=\"authorization\" class=\"col-sm-2 control-label\">Password:</label>\n\n        <div class=\"col-sm-10\">\n          <input type=\"password\" class=\"form-control\" id=\"password\" required>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"modal-footer\">\n      <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n      <button type=\"submit\" class=\"btn btn-primary\">Use Basic Authentication</button>\n    </div>\n    </form>\n\n  </div>\n</div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/auth/session.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<!-- Modal -->\n<div class=\"modal fade auth-modal auth-session\" id=\"auth_session_modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"session authentication modal\">\n<div class=\"modal-dialog modal-md\" role=\"document\">\n  <div class=\"modal-content\">\n    <div class=\"modal-header\">\n      <h3 class=\"modal-title\"><i class=\"fa fa-key\"></i> Session Authentication</h3>\n    </div>\n\n    <form class=\"form-horizontal authentication-session-form\">\n    <div class=\"modal-body\">\n\n        {% if user.is_authenticated %}\n          <h4 class=\"text-center\">You are logged in as {{ user.username }}.</h4>\n        {% else %}\n\n          <div class=\"text-center\">\n            <h4 class=\"text-center\">You need to {% optional_docs_login request %} to enable Session Authentication.</h4>\n          </div>\n        {% endif %}\n\n    </div>\n\n    <div class=\"modal-footer\">\n      <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n      {% if user.is_authenticated %}\n        <button type=\"submit\" class=\"btn btn-primary\">Use Session Authentication</button>\n      {% endif %}\n    </div>\n    </form>\n\n  </div>\n</div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/auth/token.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<!-- Modal -->\n<div class=\"modal fade auth-modal auth-token\" id=\"auth_token_modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"token authentication modal\">\n<div class=\"modal-dialog modal-md\" role=\"document\">\n  <div class=\"modal-content\">\n    <div class=\"modal-header\">\n      <h3 class=\"modal-title\"><i class=\"fa fa-key\"></i> Token Authentication</h3>\n    </div>\n\n    <form class=\"form-horizontal authentication-token-form\">\n    <div class=\"modal-body\">\n      <div class=\"form-group\">\n        <label for=\"prefix\" class=\"col-sm-2 control-label\">Scheme:</label>\n        <div class=\"col-sm-10\">\n          <input type=\"text\" class=\"form-control\" id=\"scheme\" placeholder=\"Bearer\" aria-describedby=\"schemeHelpBlock\" required>\n          <span id=\"schemeHelpBlock\" class=\"help-block\">Either a registered authentication scheme such as <code>Bearer</code>, or a custom schema such as <code>Token</code> or <code>JWT</code>.</span>\n        </div>\n      </div>\n      <div class=\"form-group\">\n        <label for=\"token\" class=\"col-sm-2 control-label\">Token:</label>\n        <div class=\"col-sm-10\">\n          <input type=\"text\" class=\"form-control\" id=\"token\" placeholder=\"XXXX-XXXX-XXXX-XXXX\" aria-describedby=\"helpBlock\" required>\n          <span id=\"tokenHelpBlock\" class=\"help-block\">A valid API token.</span>\n        </div>\n      </div>\n    </div>\n    <div class=\"modal-footer\">\n      <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n      <button type=\"submit\" class=\"btn btn-primary\">Use Token Authentication</button>\n    </div>\n    </form>\n\n  </div>\n</div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/document.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"row intro\">\n<div class=\"col-md-6 intro-title\">\n    <h1>{{ document.title }}</h1>\n    {% if document.description %}\n    <p>{% render_markdown document.description %}</p>\n    {% endif %}\n</div>\n<div class=\"col-md-6 intro-code\">\n    {% for html in lang_intro_htmls %}\n        {% include html %}\n    {% endfor %}\n</div>\n</div>\n{% if document|data %}\n{% for section_key, section in document|data|items %}\n{% if section_key %}\n    <h2 id=\"{{ section_key }}\" class=\"coredocs-section-title\">{{ section_key }} <a href=\"#{{ section_key }}\"><i class=\"fa fa-link\" aria-hidden=\"true\"></i>\n</a></h2>\n{% endif %}\n\n    {% for link_key, link in section|schema_links|items %}\n        {% include \"jet_django.deps.rest_framework/docs/link.html\" %}\n    {% endfor %}\n{% endfor %}\n\n{% for link_key, link in document.links|items %}\n    {% include \"jet_django.deps.rest_framework/docs/link.html\" %}\n{% endfor %}\n{% endif %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/error.html",
    "content": "{% load static %}\n<!DOCTYPE html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n\t    <title>Error Rendering Schema</title>\n\t</head>\n    <body>\n\n\n\n<h1>Error</h1>\n\n<pre>\n{{ data }}\n</pre>\n\n\n{% if debug is True %}\n<hr />\n<h2>Additional Information</h2>\n<p>Note: You are seeing this message because <code>DEBUG==True</code>.</p>\n\n<p>Seeing this page is <em>usually</em> a configuration error: are your\n<code>DEFAULT_AUTHENTICATION_CLASSES</code> or <code>DEFAULT_PERMISSION_CLASSES</code>\nbeing applied unexpectedly?</p>\n\n<p>Your response status code is: <code>{{ response.status_code }}</code></p>\n\n<h3>401 Unauthorised.</h3>\n<ul>\n    <li>Do you have SessionAuthentication enabled?</li>\n    <li>Are you logged in?</li>\n</ul>\n\n\n<h3>403 Forbidden.</h3>\n<ul>\n    <li>Do you have sufficient permissions to access this view?</li>\n    <li>Is you schema non-empty? (An empty schema will lead to a permission denied error being raised.)</li>\n</ul>\n\n\n<p>Most commonly the intended solution is to disable authentication and permissions\nwhen including the docs urls:</p>\n\n<pre>\n   url(r'^docs/', include_docs_urls(title='Your API',\n                                    authentication_classes=[],\n                                    permission_classes=[])),\n</pre>\n\n\n<h2>Overriding this template</h2>\n\n<p>If you wish access to your docs to be authenticated you may override this template\nat <code>rest_framework/docs/error.html</code>.</p>\n\n<p>The available context is: <code>data</code> the error dict above, <code>request</code>,\n<code>response</code> and the <code>debug</code> flag.</p>\n\n{% endif %}\n\n\n\n        <script src=\"{% static 'rest_framework/js/jquery-3.3.1.min.js' %}\"></script>\n    </body>\n</html>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/index.html",
    "content": "{% load static %}\n<!DOCTYPE html>\n<html lang=\"en\">\n    <head>\n        <meta charset=\"utf-8\">\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n\t    <title>{{ document.title }}</title>\n\n        <link href=\"{% static 'rest_framework/css/bootstrap.min.css' %}\" rel=\"stylesheet\">\n        <link href=\"{% static 'rest_framework/css/bootstrap-theme.min.css' %}\" rel=\"stylesheet\">\n        <link href=\"{% static 'rest_framework/css/font-awesome-4.0.3.css' %}\" rel=\"stylesheet\">\n        <link href=\"{% static 'rest_framework/docs/css/base.css' %}\" rel=\"stylesheet\">\n        <link href=\"{% static 'rest_framework/docs/css/jquery.json-view.min.css' %}\" rel=\"stylesheet\">\n\n        <link href=\"{% static 'rest_framework/docs/img/favicon.ico' %}\" rel=\"shortcut icon\">\n\n        {% if code_style %}<style>{{ code_style }}</style>{% endif %}\n        <script src=\"{% static 'rest_framework/js/coreapi-0.1.1.js' %}\"></script>\n        <script src=\"{% url 'api-docs:schema-js' %}\"></script>\n\n    </head>\n\n    <body data-spy=\"scroll\" data-target=\"#sidebar-nav\" data-offset=\"50\">\n\n        {% include \"jet_django.deps.rest_framework/docs/sidebar.html\" %}\n\n        <div class=\"container\" id=\"main\">\n            <div class=\"row\">\n                <div class=\"col-md-12 main-container\">\n                    {% include \"jet_django.deps.rest_framework/docs/document.html\" %}\n                </div>\n            </div>\n        </div>\n\n        {% include \"jet_django.deps.rest_framework/docs/auth/token.html\" %}\n        {% include \"jet_django.deps.rest_framework/docs/auth/basic.html\" %}\n        {% include \"jet_django.deps.rest_framework/docs/auth/session.html\" %}\n\n        <script src=\"{% static 'rest_framework/js/jquery-3.3.1.min.js' %}\"></script>\n        <script src=\"{% static 'rest_framework/js/bootstrap.min.js' %}\"></script>\n        <script src=\"{% static 'rest_framework/docs/js/jquery.json-view.min.js' %}\"></script>\n        <script src=\"{% static 'rest_framework/docs/js/api.js' %}\"></script>\n        <script>\n            {% if user.is_authenticated %}\n                window.auth = {\n                    'type': 'session',\n                };\n                $('#selected-authentication').text('session');\n                $('#auth-control').children().removeClass('active');\n                $('#auth-control').find(\"[data-auth='session']\").closest('li').addClass('active');\n            {% endif %}\n\t    $('pre.highlight').filter('[data-language=\"{{ langs | first }}\"]').removeClass('hide');\n        </script>\n    </body>\n</html>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/interact.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<!-- Modal -->\n<div class=\"modal fade api-modal\" id=\"{{ section_key }}_{{ link_key|slugify }}_modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"api explorer modal\">\n<div class=\"modal-dialog modal-lg\" role=\"document\">\n  <div class=\"modal-content\">\n    <div class=\"modal-header\">\n      <div class=\"toggle-view hide\">\n        <div class=\"btn-group\" role=\"group\">\n          <button type=\"button\" data-display-toggle=\"data\" class=\"btn btn-sm btn-info\">Data</button>\n          <button type=\"button\" data-display-toggle=\"raw\" class=\"btn btn-sm\">Raw</button>\n        </div>\n      </div>\n\n      <h3 class=\"modal-title\"><i class=\"fa fa-exchange\"></i> {{ link.title|default:link_key }}</h3>\n\n    </div>\n\n    <form data-key='[\"{{ section_key }}\", \"{{ link_key }}\"]' class=\"api-interaction\">\n    <div class=\"modal-body\">\n      <div class=\"row\">\n        <div class=\"col-lg-6 request\">\n          {% form_for_link link %}\n        </div>\n\n        <hr class=\"hidden-lg hidden-xl\" />\n\n        <div class=\"col-lg-6 response\" id=\"response\">\n          <div class=\"request-awaiting\">Awaiting request</div>\n\n          <div class=\"meta hide\">\n            <span class=\"label label-primary request-method\"></span>\n            <code class=\"request-url\"></code>\n            <label class=\"label label-lg response-status-code pull-right\"></label>\n          </div>\n\n          <pre class=\"well response-data hide\"></pre>\n          <pre class=\"well response-raw hide\"><div class=\"response-raw-request\"></div><div class=\"response-raw-response\"></div></pre>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"modal-footer\">\n      <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n      <button type=\"submit\" class=\"btn btn-primary\">Send Request</button>\n    </div>\n    </form>\n\n  </div>\n</div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/javascript-intro.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% load static %}\n<pre class=\"highlight javascript hide\" data-language=\"javascript\"><code>{% code html %}<!-- Load the JavaScript client library -->\n<script src=\"{% static 'rest_framework/js/coreapi-0.1.1.js' %}\"></script>\n<script src=\"{% url 'api-docs:schema-js' %}\"></script>{% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/javascript.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<pre class=\"highlight javascript hide\" data-language=\"javascript\"><code>{% code javascript %}var coreapi = window.coreapi  // Loaded by `coreapi.js`\nvar schema = window.schema    // Loaded by `schema.js`\n\n// Initialize a client\nvar client = new coreapi.Client()\n\n// Interact with the API endpoint\nvar action = [{% if section_key %}\"{{ section_key }}\", {% endif %}\"{{ link_key }}\"]\n{% if link.fields %}var params = {\n{% for field in link.fields %}    {{ field.name }}: ...{% if not loop.last %},{% endif %}\n{% endfor %}}\n{% endif %}client.action(schema, action{% if link.fields %}, params{% endif %}).then(function(result) {\n    // Return value is in 'result'\n}){% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/python-intro.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<pre class=\"highlight python hide\" data-language=\"python\"><code>{% code bash %}# Install the Python client library\n$ pip install coreapi{% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/python.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<pre class=\"highlight python hide\" data-language=\"python\"><code>{% code python %}import coreapi\n\n# Initialize a client & load the schema document\nclient = coreapi.Client()\nschema = client.get(\"{{ document.url }}\"{% if schema_format %}, format=\"{{ schema_format }}\"{% endif %})\n\n# Interact with the API endpoint\naction = [{% if section_key %}\"{{ section_key }}\", {% endif %}\"{{ link_key }}\"]\n{% if link.fields %}params = {\n{% for field in link.fields %}    \"{{ field.name }}\": ...{% if not loop.last %},{% endif %}\n{% endfor %}}\n{% endif %}result = client.action(schema, action{% if link.fields %}, params=params{% endif %}){% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/shell-intro.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<pre class=\"highlight shell hide\" data-language=\"shell\"><code>{% code bash %}# Install the command line client\n$ pip install coreapi-cli{% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/langs/shell.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<pre class=\"highlight shell hide\" data-language=\"shell\"><code>{% code bash %}# Load the schema document\n$ coreapi get {{ document.url }}{% if schema_format %} --format {{ schema_format }}{% endif %}\n\n# Interact with the API endpoint\n$ coreapi action {% if section_key %}{{ section_key }} {% endif %}{{ link_key }}{% for field in link.fields %} -p {{ field.name }}=...{% endfor %}{% endcode %}</code></pre>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/link.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<div class=\"row coredocs-link\">\n\n<div class=\"col-md-6 docs-content\">\n    <button\n        class=\"btn btn-sm btn-success\"\n        style=\"float: right; margin-top: 20px\"\n        data-toggle=\"modal\"\n        data-target=\"#{{ section_key }}_{{ link_key|slugify }}_modal\">\n        <i class=\"fa fa-exchange\"></i> Interact\n    </button>\n\n    <h3 id=\"{{ section_key }}-{{ link_key|slugify }}\" class=\"coredocs-link-title\">{{ link.title|default:link_key }} <a href=\"#{{ section_key }}-{{ link_key|slugify }}\"><i class=\"fa fa-link\" aria-hidden=\"true\"></i>\n</a></h3>\n\n    <div class=\"meta\">\n        <span class=\"label label-primary\">{{ link.action|upper }}</span>\n        <code>{{ link.url }}</code>\n    </div>\n\n    <p>{% render_markdown link.description %}</p>\n\n{% if link.fields|with_location:'path' %}\n    <h4>Path Parameters</h4>\n    <p>The following parameters should be included in the URL path.</p>\n    <table class=\"parameters table table-bordered table-striped\">\n        <thead>\n            <tr><th>Parameter</th><th>Description</th></tr>\n        </thead>\n        <tbody>\n            {% for field in link.fields|with_location:'path' %}\n            <tr><td class=\"parameter-name\"><code>{{ field.name }}</code>{% if field.required %} <span class=\"label label-warning\">required</span>{% endif %}</td><td>{% if field.schema.description %}{{ field.schema.description }}{% endif %}</td></tr>\n            {% endfor %}\n        </tbody>\n    </table>\n{% endif %}\n{% if link.fields|with_location:'query' %}\n    <h4>Query Parameters</h4>\n    <p>The following parameters should be included as part of a URL query string.</p>\n    <table class=\"parameters table table-bordered table-striped\">\n        <thead>\n            <tr><th>Parameter</th><th>Description</th></tr>\n        </thead>\n        <tbody>\n            {% for field in link.fields|with_location:'query' %}\n            <tr><td class=\"parameter-name\"><code>{{ field.name }}</code>{% if field.required %} <span class=\"label label-warning\">required</span>{% endif %}</td><td>{% if field.schema.description %}{{ field.schema.description }}{% endif %}</td></tr>\n            {% endfor %}\n        </tbody>\n    </table>\n{% endif %}\n{% if link.fields|with_location:'header' %}\n    <h4>Header Parameters</h4>\n    <p>The following parameters should be included as HTTP headers.</p>\n    <table class=\"parameters table table-bordered table-striped\">\n        <thead>\n            <tr><th>Parameter</th><th>Description</th></tr>\n        </thead>\n        <tbody>\n            {% for field in link.fields|with_location:'header' %}\n            <tr><td class=\"parameter-name\"><code>{{ field.name }}</code>{% if field.required %} <span class=\"label label-warning\">required</span>{% endif %}</td><td>{% if field.schema.description %}{{ field.schema.description }}{% endif %}</td></tr>\n            {% endfor %}\n        </tbody>\n    </table>\n{% endif %}\n{% if link.fields|with_location:'body' %}\n    <h4>Request Body</h4>\n    <p>The request body should be <code>\"{{ link.encoding }}\"</code> encoded, and should contain a single item.</p>\n    <table class=\"parameters table table-bordered table-striped\">\n        <thead>\n            <tr><th>Parameter</th><th>Description</th></tr>\n        </thead>\n        <tbody>\n            {% for field in link.fields|with_location:'body' %}\n            <tr><td class=\"parameter-name\"><code>{{ field.name }}</code>{% if field.required %} <span class=\"label label-warning\">required</span>{% endif %}</td><td>{% if field.schema.description %}{{ field.schema.description }}{% endif %}</td></tr>\n            {% endfor %}\n        </tbody>\n    </table>\n{% elif link.fields|with_location:'form' %}\n    <h4>Request Body</h4>\n    <p>The request body should be a <code>\"{{ link.encoding }}\"</code> encoded object, containing the following&nbsp;items.</p>\n    <table class=\"parameters table table-bordered table-striped\">\n        <thead>\n            <tr><th>Parameter</th><th>Description</th></tr>\n        </thead>\n        <tbody>\n            {% for field in link.fields|with_location:'form' %}\n            <tr><td class=\"parameter-name\"><code>{{ field.name }}</code>{% if field.required %} <span class=\"label label-warning\">required</span>{% endif %}</td><td>{% if field.schema.description %}{{ field.schema.description }}{% endif %}</td></tr>\n            {% endfor %}\n        </tbody>\n    </table>\n{% endif %}\n\n</div>\n\n    <div class=\"col-md-6 code-samples\">\n        {% for html in lang_htmls %}\n            {% include html %}\n        {% endfor %}\n    </div>\n</div>\n\n{% include \"jet_django.deps.rest_framework/docs/interact.html\" with link=link %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/docs/sidebar.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<div class=\"sidebar\">\n    <h3 class=\"brand\"><a href=\"#\">{{ document.title }}</a></h3>\n\n    <i class=\"fa fa-bars fa-2x toggle-btn\" data-toggle=\"collapse\" data-target=\"#menu-content\"></i>\n    <div class=\"menu-list\">\n        <ul id=\"menu-content\" class=\"menu-content collapse out\">\n            {% if document|data %}\n            {% for section_key, section in document|data|items %}\n            <li data-toggle=\"collapse\" data-target=\"#{{ section_key }}-dropdown\" class=\"collapsed\">\n                <a><i class=\"fa fa-dot-circle-o fa-lg\"></i> {% if section_key %}{{ section_key }}{% else %}API Endpoints{% endif %} <span class=\"arrow\"></span></a>\n                <ul class=\"sub-menu {% if section_key %}collapse{% endif %}\" id=\"{{ section_key }}-dropdown\">\n                {% for link_key, link in section|schema_links|items %}\n                    <li><a href=\"#{{ section_key }}-{{ link_key|slugify }}\">{{ link.title|default:link_key }}</a></li>\n                {% endfor %}\n                </ul>\n            </li>\n            {% endfor %}\n            {% endif %}\n        </ul>\n\n        <ul class=\"menu-list menu-list-bottom\">\n            <li data-toggle=\"collapse\" data-target=\"#auth-control\" class=\"collapsed\">\n                <a><i class=\"fa fa-user fa-lg\"></i> Authentication</a> <span id=\"selected-authentication\">{% if user.is_authenticated %}session{% else %}none{% endif %}</span>\n            </li>\n            <ul class=\"sub-menu collapse out\" id=\"auth-control\">\n                <li {% if not user.is_authenticated %}class=\"active\"{% endif %}><a data-auth=\"none\" href=\"#\">none</a></li>\n                <li><a data-auth=\"token\" data-toggle=\"modal\" data-target=\"#auth_token_modal\" href=\"#\">token</a></li>\n                <li><a data-auth=\"basic\" data-toggle=\"modal\" data-target=\"#auth_basic_modal\" href=\"#\">basic</a></li>\n                <li {% if user.is_authenticated %}class=\"active\"{% endif %}><a data-auth=\"session\" data-toggle=\"modal\" data-target=\"#auth_session_modal\" href=\"#\">session</a></li>\n            </ul>\n\n            <li data-toggle=\"collapse\" data-target=\"#language-control\" class=\"collapsed\">\n                <a><i class=\"fa fa-code fa-lg\"></i> Source Code</a> <span id=\"selected-language\">{{ langs | first }}</span>\n            </li>\n            <ul class=\"sub-menu collapse out\" id=\"language-control\">\n            {% for lang in langs %}\n                <li{% if loop.first %} class=\"active\"{% endif %}><a href=\"#\" data-language=\"{{ lang }}\">{{ lang }}</a></li>\n\t    {% endfor %}\n            </ul>\n        </ul>\n\n    </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/filters/base.html",
    "content": "<div class=\"modal fade\" id=\"filtersModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"filters\" aria-hidden=\"true\">\n  <div class=\"modal-dialog\">\n    <div class=\"modal-content\">\n      <div class=\"modal-header\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">&times;</span></button>\n        <h4 class=\"modal-title\">Filters</h4>\n    </div>\n      <div class=\"modal-body\">\n          {% for element in elements %}\n          {% if not forloop.first %}<hr/>{% endif %}\n          {{ element }}\n          {% endfor %}\n      </div>\n    </div>\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/filters/ordering.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% load i18n %}\n<h2>{% trans \"Ordering\" %}</h2>\n<div class=\"list-group\">\n    {% for key, label in options %}\n        {% if key == current %}\n            <a href=\"{% add_query_param request param key %}\" class=\"list-group-item active\">\n                <span class=\"glyphicon glyphicon-ok\" style=\"float: right\" aria-hidden=\"true\"></span> {{ label }}\n            </a>\n        {% else %}\n            <a href=\"{% add_query_param request param key %}\" class=\"list-group-item\">{{ label }}</a>\n        {% endif %}\n    {% endfor %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/filters/search.html",
    "content": "{% load i18n %}\n<h2>{% trans \"Search\" %}</h2>\n<form class=\"form-inline\">\n  <div class=\"form-group\">\n    <div class=\"input-group\">\n      <input type=\"text\" class=\"form-control\" style=\"width: 350px\" name=\"{{ param }}\" value=\"{{ term }}\">\n      <span class=\"input-group-btn\">\n        <button class=\"btn btn-default\" type=\"submit\"><span class=\"glyphicon glyphicon-search\" aria-hidden=\"true\"></span> Search</button>\n      </span>\n    </div>\n  </div>\n</form>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/checkbox.html",
    "content": "<div class=\"form-group horizontal-checkbox {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"true\" {% if field.value %}checked{% endif %}>\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/checkbox_multiple.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    {% if style.inline %}\n      {% for key, text in field.choices|items %}\n        <label class=\"checkbox-inline\">\n          <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string in field.value|as_list_of_strings %}checked{% endif %}>\n          {{ text }}\n        </label>\n      {% endfor %}\n    {% else %}\n      {% for key, text in field.choices|items %}\n        <div class=\"checkbox\">\n          <label>\n            <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string in field.value|as_list_of_strings %}checked{% endif %}>\n            {{ text }}\n          </label>\n        </div>\n      {% endfor %}\n    {% endif %}\n\n  {% if field.errors %}\n    {% for error in field.errors %}\n      <span class=\"help-block\">{{ error }}</span>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/dict_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <p class=\"form-control-static\">Dictionaries are not currently supported in HTML input.</p>\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/fieldset.html",
    "content": "{% load jet_django_deps_rest_framework %}\n<fieldset>\n  {% if field.label %}\n    <div class=\"form-group\" style=\"border-bottom: 1px solid #e5e5e5\">\n      <legend class=\"control-label col-sm-2 {% if style.hide_label %}sr-only{% endif %}\" style=\"border-bottom: 0\">\n        {{ field.label }}\n      </legend>\n    </div>\n  {% endif %}\n\n  {% for nested_field in field %}\n    {% if not nested_field.read_only %}\n      {% render_field nested_field style=style %}\n    {% endif %}\n  {% endfor %}\n</fieldset>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/form.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% for field in form %}\n  {% if not field.read_only %}\n    {% render_field field style=style %}\n  {% endif %}\n{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/input.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <input name=\"{{ field.name }}\" {% if style.input_type != \"file\" %}class=\"form-control\"{% endif %} type=\"{{ style.input_type }}\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if field.value is not None %}value=\"{{ field.value }}\"{% endif %} {% if style.autofocus and style.input_type != \"hidden\" %}autofocus{% endif %}>\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/list_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <p class=\"form-control-static\">Lists are not currently supported in HTML input.</p>\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/list_fieldset.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<fieldset>\n  {% if field.label %}\n    <div class=\"form-group\" style=\"border-bottom: 1px solid #e5e5e5\">\n      <legend class=\"control-label col-sm-2 {% if style.hide_label %}sr-only{% endif %}\" style=\"border-bottom: 0\">\n        {{ field.label }}\n      </legend>\n    </div>\n  {% endif %}\n\n  <p>Lists are not currently supported in HTML input.</p>\n</fieldset>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/radio.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n\n{% trans \"None\" as none_choice %}\n\n<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    {% if style.inline %}\n      {% if field.allow_null or field.allow_blank %}\n        <label class=\"radio-inline\">\n          <input type=\"radio\" name=\"{{ field.name }}\" value=\"\" {% if not field.value %}checked{% endif %} />\n          {{ none_choice }}\n        </label>\n      {% endif %}\n\n      {% for key, text in field.choices|items %}\n        <label class=\"radio-inline\">\n          <input type=\"radio\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string == field.value|as_string %}checked{% endif %} />\n          {{ text }}\n        </label>\n      {% endfor %}\n    {% else %}\n      {% if field.allow_null or field.allow_blank %}\n        <div class=\"radio\">\n          <label>\n            <input type=\"radio\" name=\"{{ field.name }}\" value=\"\" {% if not field.value %}checked{% endif %} />\n            {{ none_choice }}\n          </label>\n        </div>\n      {% endif %}\n        {% for key, text in field.choices|items %}\n          <div class=\"radio\">\n            <label>\n              <input type=\"radio\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string == field.value|as_string %}checked{% endif %} />\n              {{ text }}\n            </label>\n          </div>\n        {% endfor %}\n    {% endif %}\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/select.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <select class=\"form-control\" name=\"{{ field.name }}\">\n      {% if field.allow_null or field.allow_blank %}\n        <option value=\"\" {% if not field.value %}selected{% endif %}>--------</option>\n      {% endif %}\n      {% for select in field.iter_options %}\n          {% if select.start_option_group %}\n            <optgroup label=\"{{ select.label }}\">\n          {% elif select.end_option_group %}\n            </optgroup>\n          {% else %}\n            <option value=\"{{ select.value }}\" {% if select.value|as_string == field.value|as_string %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n          {% endif %}\n      {% endfor %}\n    </select>\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/select_multiple.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n\n{% trans \"No items to select.\" as no_items %}\n\n<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <select multiple {{ field.choices|yesno:\",disabled\" }} class=\"form-control\" name=\"{{ field.name }}\">\n      {% for select in field.iter_options %}\n        {% if select.start_option_group %}\n          <optgroup label=\"{{ select.label }}\">\n        {% elif select.end_option_group %}\n          </optgroup>\n        {% else %}\n          <option value=\"{{ select.value }}\" {% if select.value|as_string in field.value|as_list_of_strings %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n        {% endif %}\n      {% empty %}\n          <option>{{ no_items }}</option>\n      {% endfor %}\n    </select>\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/horizontal/textarea.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"col-sm-2 control-label {% if style.hide_label %}sr-only{% endif %}\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <div class=\"col-sm-10\">\n    <textarea name=\"{{ field.name }}\" class=\"form-control\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if style.rows %}rows=\"{{ style.rows }}\"{% endif %}>{% if field.value %}{{ field.value }}{% endif %}</textarea>\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/checkbox.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  <div class=\"checkbox\">\n    <label>\n      <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"true\" {% if field.value %}checked{% endif %}>\n      {% if field.label %}{{ field.label }}{% endif %}\n    </label>\n  </div>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/checkbox_multiple.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">{{ field.label }}</label>\n  {% endif %}\n\n  {% for key, text in field.choices|items %}\n    <div class=\"checkbox\">\n      <label>\n        <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string in field.value|as_list_of_strings %}checked{% endif %}>\n        {{ text }}\n      </label>\n    </div>\n  {% endfor %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/dict_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <p class=\"form-control-static\">Dictionaries are not currently supported in HTML input.</p>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/fieldset.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% for nested_field in field %}\n  {% if not nested_field.read_only %}\n    {% render_field nested_field style=style %}\n  {% endif %}\n{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/form.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% for field in form %}\n  {% if not field.read_only %}\n    {% render_field field style=style %}\n  {% endif %}\n{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/input.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <input name=\"{{ field.name }}\" {% if style.input_type != \"file\" %}class=\"form-control\"{% endif %} type=\"{{ style.input_type }}\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if field.value is not None %}value=\"{{ field.value }}\"{% endif %} {% if style.autofocus and style.input_type != \"hidden\" %}autofocus{% endif %}>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/list_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <p class=\"form-control-static\">Lists are not currently supported in HTML input.</p>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/list_fieldset.html",
    "content": "<span>Lists are not currently supported in HTML input.</span>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/radio.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n{% trans \"None\" as none_choice %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  {% if field.allow_null or field.allow_blank %}\n    <div class=\"radio\">\n      <label>\n        <input type=\"radio\" name=\"{{ field.name }}\" value=\"\" {% if not field.value %}checked{% endif %}>\n        {{ none_choice }}\n      </label>\n    </div>\n  {% endif %}\n\n  {% for key, text in field.choices|items %}\n    <div class=\"radio\">\n      <label>\n        <input type=\"radio\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string == field.value|as_string %}checked{% endif %}>\n        {{ text }}\n      </label>\n    </div>\n  {% endfor %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/select.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <select class=\"form-control\" name=\"{{ field.name }}\">\n    {% if field.allow_null or field.allow_blank %}\n      <option value=\"\" {% if not field.value %}selected{% endif %}>--------</option>\n    {% endif %}\n    {% for select in field.iter_options %}\n        {% if select.start_option_group %}\n          <optgroup label=\"{{ select.label }}\">\n        {% elif select.end_option_group %}\n          </optgroup>\n        {% else %}\n          <option value=\"{{ select.value }}\" {% if select.value|as_string == field.value|as_string %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n        {% endif %}\n    {% endfor %}\n  </select>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/select_multiple.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n{% trans \"No items to select.\" as no_items %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <select multiple {{ field.choices|yesno:\",disabled\" }} class=\"form-control\" name=\"{{ field.name }}\">\n      {% for select in field.iter_options %}\n          {% if select.start_option_group %}\n            <optgroup label=\"{{ select.label }}\">\n          {% elif select.end_option_group %}\n            </optgroup>\n          {% else %}\n            <option value=\"{{ select.value }}\" {% if select.value|as_string in field.value|as_list_of_strings %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n          {% endif %}\n      {% empty %}\n      <option>{{ no_items }}</option>\n    {% endfor %}\n  </select>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/inline/textarea.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label class=\"sr-only\">\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <input name=\"{{ field.name }}\" type=\"text\" class=\"form-control\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if field.value %}value=\"{{ field.value }}\"{% endif %}>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/login.html",
    "content": "{% extends \"jet_django.deps.rest_framework/login_base.html\" %}\n\n{# Override this template in your own templates directory to customize #}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/login_base.html",
    "content": "{% extends \"jet_django.deps.rest_framework/base.html\" %}\n{% load jet_django_deps_rest_framework %}\n\n{% block body %}\n<body class=\"container\">\n  <div class=\"container-fluid\" style=\"margin-top: 30px\">\n    <div class=\"row-fluid\">\n      <div class=\"well\" style=\"width: 320px; margin-left: auto; margin-right: auto\">\n        <div class=\"row-fluid\">\n          <div>\n            {% block branding %}<h3 style=\"margin: 0 0 20px;\">Django REST framework</h3>{% endblock %}\n          </div>\n        </div><!-- /row fluid -->\n\n        <div class=\"row-fluid\">\n          <div>\n            <form action=\"{% url 'rest_framework:login' %}\" role=\"form\" method=\"post\">\n              {% csrf_token %}\n              <input type=\"hidden\" name=\"next\" value=\"{{ next }}\" />\n\n              <div id=\"div_id_username\" class=\"clearfix control-group {% if form.username.errors %}error{% endif %}\">\n                <div class=\"form-group\">\n                  <label for=\"id_username\">{{ form.username.label }}:</label>\n                  <input type=\"text\" name=\"username\" maxlength=\"100\"\n                      autocapitalize=\"off\"\n                      autocorrect=\"off\" class=\"form-control textinput textInput\"\n                      id=\"id_username\" required autofocus\n                      {% if form.username.value %}value=\"{{ form.username.value }}\"{% endif %}>\n                  {% if form.username.errors %}\n                    <p class=\"text-error\">\n                      {{ form.username.errors|striptags }}\n                    </p>\n                  {% endif %}\n                </div>\n              </div>\n\n              <div id=\"div_id_password\" class=\"clearfix control-group {% if form.password.errors %}error{% endif %}\">\n                <div class=\"form-group\">\n                  <label for=\"id_password\">{{ form.password.label }}:</label>\n                  <input type=\"password\" name=\"password\" maxlength=\"100\" autocapitalize=\"off\" autocorrect=\"off\" class=\"form-control textinput textInput\" id=\"id_password\" required>\n                  {% if form.password.errors %}\n                    <p class=\"text-error\">\n                      {{ form.password.errors|striptags }}\n                    </p>\n                  {% endif %}\n                </div>\n              </div>\n\n              {% if form.non_field_errors %}\n                {% for error in form.non_field_errors %}\n                  <div class=\"well well-small text-error\" style=\"border: none\">{{ error }}</div>\n                {% endfor %}\n              {% endif %}\n\n              <div class=\"form-actions-no-box\">\n                <input type=\"submit\" name=\"submit\" value=\"Log in\" class=\"btn btn-primary form-control\" id=\"submit-id-submit\">\n              </div>\n            </form>\n          </div>\n        </div><!-- /.row-fluid -->\n      </div><!--/.well-->\n    </div><!-- /.row-fluid -->\n  </div><!-- /.container-fluid -->\n</body>\n{% endblock %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/pagination/numbers.html",
    "content": "<ul class=\"pagination\" style=\"margin: 5px 0 10px 0\">\n  {% if previous_url %}\n    <li>\n      <a href=\"{{ previous_url }}\" aria-label=\"Previous\">\n        <span aria-hidden=\"true\">&laquo;</span>\n      </a>\n    </li>\n  {% else %}\n    <li class=\"disabled\">\n      <a href=\"#\" aria-label=\"Previous\">\n        <span aria-hidden=\"true\">&laquo;</span>\n      </a>\n    </li>\n  {% endif %}\n\n  {% for page_link in page_links %}\n    {% if page_link.is_break %}\n      <li class=\"disabled\">\n        <a href=\"#\"><span aria-hidden=\"true\">&hellip;</span></a>\n      </li>\n    {% else %}\n      {% if page_link.is_active %}\n        <li class=\"active\">\n          <a href=\"{{ page_link.url }}\">{{ page_link.number }}</a>\n        </li>\n      {% else %}\n        <li>\n          <a href=\"{{ page_link.url }}\">{{ page_link.number }}</a>\n        </li>\n      {% endif %}\n    {% endif %}\n  {% endfor %}\n\n  {% if next_url %}\n    <li>\n      <a href=\"{{ next_url }}\" aria-label=\"Next\">\n        <span aria-hidden=\"true\">&raquo;</span>\n      </a>\n    </li>\n  {% else %}\n    <li class=\"disabled\">\n      <a href=\"#\" aria-label=\"Next\">\n        <span aria-hidden=\"true\">&raquo;</span>\n      </a>\n    </li>\n  {% endif %}\n</ul>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/pagination/previous_and_next.html",
    "content": "<ul class=\"pager\">\n  {% if previous_url %}\n    <li class=\"previous\">\n      <a href=\"{{ previous_url }}\">&laquo; Previous</a>\n    </li>\n  {% else %}\n    <li class=\"previous disabled\">\n      <a href=\"#\">&laquo; Previous</a>\n    </li>\n  {% endif %}\n\n  {% if next_url %}\n    <li class=\"next\">\n      <a href=\"{{ next_url }}\">Next &raquo;</a>\n    </li>\n  {% else %}\n    <li class=\"next disabled\">\n      <a href=\"#\">Next &raquo;</a>\n    </li>\n  {% endif %}\n</ul>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/raw_data_form.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{{ form.non_field_errors }}\n{% for field in form %}\n  <div class=\"form-group\">\n    {{ field.label_tag|add_class:\"col-sm-2 control-label\" }}\n    <div class=\"col-sm-10\">\n      {{ field|add_class:\"form-control\" }}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    </div>\n  </div>\n{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/schema.js",
    "content": "var codec = new window.coreapi.codecs.CoreJSONCodec()\nvar coreJSON = window.atob('{{ schema }}')\nwindow.schema = codec.decode(coreJSON)\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/checkbox.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  <div class=\"checkbox\">\n    <label>\n      <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"true\" {% if field.value %}checked{% endif %}>\n        {% if field.label %}{{ field.label }}{% endif %}\n    </label>\n  </div>\n\n  {% if field.errors %}\n    {% for error in field.errors %}\n      <span class=\"help-block\">{{ error }}</span>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/checkbox_multiple.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>{{ field.label }}</label>\n  {% endif %}\n\n  {% if style.inline %}\n    <div>\n      {% for key, text in field.choices|items %}\n        <label class=\"checkbox-inline\">\n          <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string in field.value|as_list_of_strings %}checked{% endif %}>\n            {{ text }}\n        </label>\n      {% endfor %}\n    </div>\n  {% else %}\n    {% for key, text in field.choices|items %}\n      <div class=\"checkbox\">\n        <label>\n          <input type=\"checkbox\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string in field.value|as_list_of_strings %}checked{% endif %}>\n          {{ text }}\n        </label>\n      </div>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.errors %}\n    {% for error in field.errors %}\n      <span class=\"help-block\">{{ error }}</span>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/dict_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>{{ field.label }}</label>\n  {% endif %}\n\n  <p class=\"form-control-static\">Dictionaries are not currently supported in HTML input.</p>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/fieldset.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<fieldset>\n  {% if field.label %}\n    <legend {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </legend>\n  {% endif %}\n\n  {% for nested_field in field %}\n    {% if not nested_field.read_only %}\n      {% render_field nested_field style=style %}\n    {% endif %}\n  {% endfor %}\n</fieldset>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/form.html",
    "content": "{% load jet_django_deps_rest_framework %}\n{% for field in form %}\n  {% if not field.read_only %}\n    {% render_field field style=style %}\n  {% endif %}\n{% endfor %}\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/input.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>{{ field.label }}</label>\n  {% endif %}\n\n  <input name=\"{{ field.name }}\" {% if style.input_type != \"file\" %}class=\"form-control\"{% endif %} type=\"{{ style.input_type }}\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if field.value is not None %}value=\"{{ field.value }}\"{% endif %} {% if style.autofocus and style.input_type != \"hidden\" %}autofocus{% endif %}>\n\n  {% if field.errors %}\n    {% for error in field.errors %}\n      <span class=\"help-block\">{{ error }}</span>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/list_field.html",
    "content": "<div class=\"form-group\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>{{ field.label }}</label>\n  {% endif %}\n\n  <p class=\"form-control-static\">Lists are not currently supported in HTML input.</p>\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/list_fieldset.html",
    "content": "<fieldset>\n  {% if field.label %}\n    <legend {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </legend>\n  {% endif %}\n\n  <p>Lists are not currently supported in HTML input.</p>\n</fieldset>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/radio.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n{% trans \"None\" as none_choice %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n    {% if style.inline %}\n      <div>\n        {% if field.allow_null or field.allow_blank %}\n          <label class=\"radio-inline\">\n            <input type=\"radio\" name=\"{{ field.name }}\" value=\"\" {% if not field.value %}checked{% endif %} />\n            {{ none_choice }}\n          </label>\n        {% endif %}\n\n        {% for key, text in field.choices|items %}\n          <label class=\"radio-inline\">\n            <input type=\"radio\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string == field.value|as_string %}checked{% endif %}>\n            {{ text }}\n          </label>\n        {% endfor %}\n      </div>\n    {% else %}\n      {% if field.allow_null or field.allow_blank %}\n        <div class=\"radio\">\n          <label>\n            <input type=\"radio\" name=\"{{ field.name }}\" value=\"\" {% if not field.value %}checked{% endif %} />\n            {{ none_choice }}\n          </label>\n        </div>\n      {% endif %}\n\n      {% for key, text in field.choices|items %}\n        <div class=\"radio\">\n          <label>\n            <input type=\"radio\" name=\"{{ field.name }}\" value=\"{{ key }}\" {% if key|as_string == field.value|as_string %}checked{% endif %}>\n            {{ text }}\n          </label>\n        </div>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.errors %}\n      {% for error in field.errors %}\n        <span class=\"help-block\">{{ error }}</span>\n      {% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/select.html",
    "content": "{% load jet_django_deps_rest_framework %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <select class=\"form-control\" name=\"{{ field.name }}\">\n    {% if field.allow_null or field.allow_blank %}\n      <option value=\"\" {% if not field.value %}selected{% endif %}>--------</option>\n    {% endif %}\n    {% for select in field.iter_options %}\n        {% if select.start_option_group %}\n          <optgroup label=\"{{ select.label }}\">\n        {% elif select.end_option_group %}\n          </optgroup>\n        {% else %}\n          <option value=\"{{ select.value }}\" {% if select.value|as_string == field.value|as_string %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n        {% endif %}\n    {% endfor %}\n  </select>\n\n  {% if field.errors %}\n    {% for error in field.errors %}\n      <span class=\"help-block\">{{ error }}</span>\n    {% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/select_multiple.html",
    "content": "{% load i18n %}\n{% load jet_django_deps_rest_framework %}\n{% trans \"No items to select.\" as no_items %}\n\n<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <select multiple {{ field.choices|yesno:\",disabled\" }} class=\"form-control\" name=\"{{ field.name }}\">\n    {% for select in field.iter_options %}\n        {% if select.start_option_group %}\n          <optgroup label=\"{{ select.label }}\">\n        {% elif select.end_option_group %}\n          </optgroup>\n        {% else %}\n          <option value=\"{{ select.value }}\" {% if select.value|as_string in field.value|as_list_of_strings %}selected{% endif %} {% if select.disabled %}disabled{% endif %}>{{ select.display_text }}</option>\n        {% endif %}\n    {% empty %}\n        <option>{{ no_items }}</option>\n    {% endfor %}\n  </select>\n\n    {% if field.errors %}\n      {% for error in field.errors %}<span class=\"help-block\">{{ error }}</span>{% endfor %}\n    {% endif %}\n\n    {% if field.help_text %}\n      <span class=\"help-block\">{{ field.help_text|safe }}</span>\n    {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templates/jet_django.deps.rest_framework/vertical/textarea.html",
    "content": "<div class=\"form-group {% if field.errors %}has-error{% endif %}\">\n  {% if field.label %}\n    <label {% if style.hide_label %}class=\"sr-only\"{% endif %}>\n      {{ field.label }}\n    </label>\n  {% endif %}\n\n  <textarea name=\"{{ field.name }}\" class=\"form-control\" {% if style.placeholder %}placeholder=\"{{ style.placeholder }}\"{% endif %} {% if style.rows %}rows=\"{{ style.rows }}\"{% endif %}>{% if field.value %}{{ field.value }}{% endif %}</textarea>\n\n  {% if field.errors %}\n    {% for error in field.errors %}<span class=\"help-block\">{{ error }}</span>{% endfor %}\n  {% endif %}\n\n  {% if field.help_text %}\n    <span class=\"help-block\">{{ field.help_text|safe }}</span>\n  {% endif %}\n</div>\n"
  },
  {
    "path": "jet_django/templatetags/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/templatetags/jet_django_deps_rest_framework.py",
    "content": "from __future__ import absolute_import, unicode_literals\n\nimport re\nfrom collections import OrderedDict\n\nfrom django import template\nfrom django.template import loader\nfrom django.urls import NoReverseMatch, reverse\nfrom django.utils import six\nfrom django.utils.encoding import force_text, iri_to_uri\nfrom django.utils.html import escape, format_html, smart_urlquote\nfrom django.utils.safestring import SafeData, mark_safe\n\nfrom jet_django.deps.rest_framework.compat import apply_markdown, pygments_highlight\nfrom jet_django.deps.rest_framework.renderers import HTMLFormRenderer\nfrom jet_django.deps.rest_framework.utils.urls import replace_query_param\n\nregister = template.Library()\n\n# Regex for adding classes to html snippets\nclass_re = re.compile(r'(?<=class=[\"\\'])(.*)(?=[\"\\'])')\n\n\n@register.tag(name='code')\ndef highlight_code(parser, token):\n    code = token.split_contents()[-1]\n    nodelist = parser.parse(('endcode',))\n    parser.delete_first_token()\n    return CodeNode(code, nodelist)\n\n\nclass CodeNode(template.Node):\n    style = 'emacs'\n\n    def __init__(self, lang, code):\n        self.lang = lang\n        self.nodelist = code\n\n    def render(self, context):\n        text = self.nodelist.render(context)\n        return pygments_highlight(text, self.lang, self.style)\n\n\n@register.filter()\ndef with_location(fields, location):\n    return [\n        field for field in fields\n        if field.location == location\n    ]\n\n\n@register.simple_tag\ndef form_for_link(link):\n    import coreschema\n    properties = OrderedDict([\n        (field.name, field.schema or coreschema.String())\n        for field in link.fields\n    ])\n    required = [\n        field.name\n        for field in link.fields\n        if field.required\n    ]\n    schema = coreschema.Object(properties=properties, required=required)\n    return mark_safe(coreschema.render_to_form(schema))\n\n\n@register.simple_tag\ndef render_markdown(markdown_text):\n    if apply_markdown is None:\n        return markdown_text\n    return mark_safe(apply_markdown(markdown_text))\n\n\n@register.simple_tag\ndef get_pagination_html(pager):\n    return pager.to_html()\n\n\n@register.simple_tag\ndef render_form(serializer, template_pack=None):\n    style = {'template_pack': template_pack} if template_pack else {}\n    renderer = HTMLFormRenderer()\n    return renderer.render(serializer.data, None, {'style': style})\n\n\n@register.simple_tag\ndef render_field(field, style):\n    renderer = style.get('renderer', HTMLFormRenderer())\n    return renderer.render_field(field, style)\n\n\n@register.simple_tag\ndef optional_login(request):\n    \"\"\"\n    Include a login snippet if REST framework's login view is in the URLconf.\n    \"\"\"\n    try:\n        login_url = reverse('jet_django.deps.rest_framework:login')\n    except NoReverseMatch:\n        return ''\n\n    snippet = \"<li><a href='{href}?next={next}'>Log in</a></li>\"\n    snippet = format_html(snippet, href=login_url, next=escape(request.path))\n\n    return mark_safe(snippet)\n\n\n@register.simple_tag\ndef optional_docs_login(request):\n    \"\"\"\n    Include a login snippet if REST framework's login view is in the URLconf.\n    \"\"\"\n    try:\n        login_url = reverse('jet_django.deps.rest_framework:login')\n    except NoReverseMatch:\n        return 'log in'\n\n    snippet = \"<a href='{href}?next={next}'>log in</a>\"\n    snippet = format_html(snippet, href=login_url, next=escape(request.path))\n\n    return mark_safe(snippet)\n\n\n@register.simple_tag\ndef optional_logout(request, user):\n    \"\"\"\n    Include a logout snippet if REST framework's logout view is in the URLconf.\n    \"\"\"\n    try:\n        logout_url = reverse('jet_django.deps.rest_framework:logout')\n    except NoReverseMatch:\n        snippet = format_html('<li class=\"navbar-text\">{user}</li>', user=escape(user))\n        return mark_safe(snippet)\n\n    snippet = \"\"\"<li class=\"dropdown\">\n        <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n            {user}\n            <b class=\"caret\"></b>\n        </a>\n        <ul class=\"dropdown-menu\">\n            <li><a href='{href}?next={next}'>Log out</a></li>\n        </ul>\n    </li>\"\"\"\n    snippet = format_html(snippet, user=escape(user), href=logout_url, next=escape(request.path))\n\n    return mark_safe(snippet)\n\n\n@register.simple_tag\ndef add_query_param(request, key, val):\n    \"\"\"\n    Add a query parameter to the current request url, and return the new url.\n    \"\"\"\n    iri = request.get_full_path()\n    uri = iri_to_uri(iri)\n    return escape(replace_query_param(uri, key, val))\n\n\n@register.filter\ndef as_string(value):\n    if value is None:\n        return ''\n    return '%s' % value\n\n\n@register.filter\ndef as_list_of_strings(value):\n    return [\n        '' if (item is None) else ('%s' % item)\n        for item in value\n    ]\n\n\n@register.filter\ndef add_class(value, css_class):\n    \"\"\"\n    https://stackoverflow.com/questions/4124220/django-adding-css-classes-when-rendering-form-fields-in-a-template\n\n    Inserts classes into template variables that contain HTML tags,\n    useful for modifying forms without needing to change the Form objects.\n\n    Usage:\n\n        {{ field.label_tag|add_class:\"control-label\" }}\n\n    In the case of REST Framework, the filter is used to add Bootstrap-specific\n    classes to the forms.\n    \"\"\"\n    html = six.text_type(value)\n    match = class_re.search(html)\n    if match:\n        m = re.search(r'^%s$|^%s\\s|\\s%s\\s|\\s%s$' % (css_class, css_class,\n                                                    css_class, css_class),\n                      match.group(1))\n        if not m:\n            return mark_safe(class_re.sub(match.group(1) + \" \" + css_class,\n                                          html))\n    else:\n        return mark_safe(html.replace('>', ' class=\"%s\">' % css_class, 1))\n    return value\n\n\n@register.filter\ndef format_value(value):\n    if getattr(value, 'is_hyperlink', False):\n        name = six.text_type(value.obj)\n        return mark_safe('<a href=%s>%s</a>' % (value, escape(name)))\n    if value is None or isinstance(value, bool):\n        return mark_safe('<code>%s</code>' % {True: 'true', False: 'false', None: 'null'}[value])\n    elif isinstance(value, list):\n        if any([isinstance(item, (list, dict)) for item in value]):\n            template = loader.get_template('jet_django.deps.rest_framework/admin/list_value.html')\n        else:\n            template = loader.get_template('jet_django.deps.rest_framework/admin/simple_list_value.html')\n        context = {'value': value}\n        return template.render(context)\n    elif isinstance(value, dict):\n        template = loader.get_template('jet_django.deps.rest_framework/admin/dict_value.html')\n        context = {'value': value}\n        return template.render(context)\n    elif isinstance(value, six.string_types):\n        if (\n            (value.startswith('http:') or value.startswith('https:')) and not\n            re.search(r'\\s', value)\n        ):\n            return mark_safe('<a href=\"{value}\">{value}</a>'.format(value=escape(value)))\n        elif '@' in value and not re.search(r'\\s', value):\n            return mark_safe('<a href=\"mailto:{value}\">{value}</a>'.format(value=escape(value)))\n        elif '\\n' in value:\n            return mark_safe('<pre>%s</pre>' % escape(value))\n    return six.text_type(value)\n\n\n@register.filter\ndef items(value):\n    \"\"\"\n    Simple filter to return the items of the dict. Useful when the dict may\n    have a key 'items' which is resolved first in Django tempalte dot-notation\n    lookup.  See issue #4931\n    Also see: https://stackoverflow.com/questions/15416662/django-template-loop-over-dictionary-items-with-items-as-key\n    \"\"\"\n    return value.items()\n\n\n@register.filter\ndef data(value):\n    \"\"\"\n    Simple filter to access `data` attribute of object,\n    specifically coreapi.Document.\n\n    As per `items` filter above, allows accessing `document.data` when\n    Document contains Link keyed-at \"data\".\n\n    See issue #5395\n    \"\"\"\n    return value.data\n\n\n@register.filter\ndef schema_links(section, sec_key=None):\n    \"\"\"\n    Recursively find every link in a schema, even nested.\n    \"\"\"\n    NESTED_FORMAT = '%s > %s'  # this format is used in docs/js/api.js:normalizeKeys\n    links = section.links\n    if section.data:\n        data = section.data.items()\n        for sub_section_key, sub_section in data:\n            new_links = schema_links(sub_section, sec_key=sub_section_key)\n            links.update(new_links)\n\n    if sec_key is not None:\n        new_links = OrderedDict()\n        for link_key, link in links.items():\n            new_key = NESTED_FORMAT % (sec_key, link_key)\n            new_links.update({new_key: link})\n        return new_links\n\n    return links\n\n\n@register.filter\ndef add_nested_class(value):\n    if isinstance(value, dict):\n        return 'class=nested'\n    if isinstance(value, list) and any([isinstance(item, (list, dict)) for item in value]):\n        return 'class=nested'\n    return ''\n\n\n# Bunch of stuff cloned from urlize\nTRAILING_PUNCTUATION = ['.', ',', ':', ';', '.)', '\"', \"']\", \"'}\", \"'\"]\nWRAPPING_PUNCTUATION = [('(', ')'), ('<', '>'), ('[', ']'), ('&lt;', '&gt;'),\n                        ('\"', '\"'), (\"'\", \"'\")]\nword_split_re = re.compile(r'(\\s+)')\nsimple_url_re = re.compile(r'^https?://\\[?\\w', re.IGNORECASE)\nsimple_url_2_re = re.compile(r'^www\\.|^(?!http)\\w[^@]+\\.(com|edu|gov|int|mil|net|org)$', re.IGNORECASE)\nsimple_email_re = re.compile(r'^\\S+@\\S+\\.\\S+$')\n\n\ndef smart_urlquote_wrapper(matched_url):\n    \"\"\"\n    Simple wrapper for smart_urlquote. ValueError(\"Invalid IPv6 URL\") can\n    be raised here, see issue #1386\n    \"\"\"\n    try:\n        return smart_urlquote(matched_url)\n    except ValueError:\n        return None\n\n\n@register.filter\ndef urlize_quoted_links(text, trim_url_limit=None, nofollow=True, autoescape=True):\n    \"\"\"\n    Converts any URLs in text into clickable links.\n\n    Works on http://, https://, www. links, and also on links ending in one of\n    the original seven gTLDs (.com, .edu, .gov, .int, .mil, .net, and .org).\n    Links can have trailing punctuation (periods, commas, close-parens) and\n    leading punctuation (opening parens) and it'll still do the right thing.\n\n    If trim_url_limit is not None, the URLs in link text longer than this limit\n    will truncated to trim_url_limit-3 characters and appended with an ellipsis.\n\n    If nofollow is True, the URLs in link text will get a rel=\"nofollow\"\n    attribute.\n\n    If autoescape is True, the link text and URLs will get autoescaped.\n    \"\"\"\n    def trim_url(x, limit=trim_url_limit):\n        return limit is not None and (len(x) > limit and ('%s...' % x[:max(0, limit - 3)])) or x\n\n    safe_input = isinstance(text, SafeData)\n    words = word_split_re.split(force_text(text))\n    for i, word in enumerate(words):\n        if '.' in word or '@' in word or ':' in word:\n            # Deal with punctuation.\n            lead, middle, trail = '', word, ''\n            for punctuation in TRAILING_PUNCTUATION:\n                if middle.endswith(punctuation):\n                    middle = middle[:-len(punctuation)]\n                    trail = punctuation + trail\n            for opening, closing in WRAPPING_PUNCTUATION:\n                if middle.startswith(opening):\n                    middle = middle[len(opening):]\n                    lead = lead + opening\n                # Keep parentheses at the end only if they're balanced.\n                if (\n                    middle.endswith(closing) and\n                    middle.count(closing) == middle.count(opening) + 1\n                ):\n                    middle = middle[:-len(closing)]\n                    trail = closing + trail\n\n            # Make URL we want to point to.\n            url = None\n            nofollow_attr = ' rel=\"nofollow\"' if nofollow else ''\n            if simple_url_re.match(middle):\n                url = smart_urlquote_wrapper(middle)\n            elif simple_url_2_re.match(middle):\n                url = smart_urlquote_wrapper('http://%s' % middle)\n            elif ':' not in middle and simple_email_re.match(middle):\n                local, domain = middle.rsplit('@', 1)\n                try:\n                    domain = domain.encode('idna').decode('ascii')\n                except UnicodeError:\n                    continue\n                url = 'mailto:%s@%s' % (local, domain)\n                nofollow_attr = ''\n\n            # Make link.\n            if url:\n                trimmed = trim_url(middle)\n                if autoescape and not safe_input:\n                    lead, trail = escape(lead), escape(trail)\n                    url, trimmed = escape(url), escape(trimmed)\n                middle = '<a href=\"%s\"%s>%s</a>' % (url, nofollow_attr, trimmed)\n                words[i] = mark_safe('%s%s%s' % (lead, middle, trail))\n            else:\n                if safe_input:\n                    words[i] = mark_safe(word)\n                elif autoescape:\n                    words[i] = escape(word)\n        elif safe_input:\n            words[i] = mark_safe(word)\n        elif autoescape:\n            words[i] = escape(word)\n    return ''.join(words)\n\n\n@register.filter\ndef break_long_headers(header):\n    \"\"\"\n    Breaks headers longer than 160 characters (~page length)\n    when possible (are comma separated)\n    \"\"\"\n    if len(header) > 160 and ',' in header:\n        header = mark_safe('<br> ' + ', <br>'.join(header.split(',')))\n    return header\n"
  },
  {
    "path": "jet_django/urls.py",
    "content": "from django.conf.urls import url\nfrom jet_django.deps.rest_framework.routers import DefaultRouter\n\nfrom jet_django.admin.jet import jet\nfrom jet_django.views.file_upload import FileUploadView\nfrom jet_django.views.model_description import ModelDescriptionView\nfrom jet_django.views.register import RegisterView\nfrom jet_django.views.root import RootView\nfrom jet_django.views.sql import SqlView\nfrom jet_django.views.message import MessageView\n\napp_name = 'jet_django'\n\n\ndef init_urls():\n    class Router(DefaultRouter):\n        include_root_view = False\n\n    router = Router()\n\n    jet.register_related_models()\n\n    for model in jet.models:\n        router.register(model.viewset_url, model.viewset)\n\n    extra_urls = [\n        url(r'^model_descriptions/', ModelDescriptionView.as_view(), name='model-descriptions'),\n        url(r'^register/', RegisterView.as_view(), name='register'),\n        url(r'^sql/', SqlView.as_view(), name='sql'),\n        url(r'^file_upload/', FileUploadView.as_view(), name='file-upload'),\n        url(r'^messages/', MessageView.as_view(), name='message'),\n        url(r'^$', RootView.as_view(), name='root')\n    ]\n\n    api_urls = router.urls + extra_urls\n\n    return api_urls\n\n\njet_urls = init_urls()\nurlpatterns = jet_urls\n"
  },
  {
    "path": "jet_django/utils/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/utils/backend.py",
    "content": "import logging\nimport requests\n\nfrom jet_django import settings, VERSION\nfrom jet_django.models.token import Token\n\nlogger = logging.getLogger('jet_django')\n\n\ndef api_method_url(method):\n    return '{}/{}'.format(settings.JET_BACKEND_API_BASE_URL, method)\n\n\ndef get_token():\n    token = Token.objects.all().first()\n    return token.token if token else None\n\n\ndef register_token():\n    token = Token.objects.all().first()\n\n    if token:\n        logger.info('[JET] Token already registered')\n        return token, False\n\n    url = api_method_url('project_tokens/')\n    headers = {\n        'User-Agent': 'Jet Django'\n    }\n    data = {\n        'bridge_type': 'jet_django',\n        'bridge_version': VERSION\n    }\n\n    r = requests.request('POST', url, headers=headers, data=data)\n    success = 200 <= r.status_code < 300\n\n    if not success:\n        logger.error('[JET] Register Token request error: %s %s %s', r.status_code, r.reason, r.text)\n        return None, False\n\n    result = r.json()\n    token = Token.objects.create(token=result['token'], date_add=result['date_add'])\n\n    return token, True\n\n\ndef is_token_activated(token):\n    url = api_method_url('project_tokens/{}/'.format(token.token))\n    headers = {\n        'User-Agent': 'Jet Django'\n    }\n\n    r = requests.request('GET', url, headers=headers)\n    success = 200 <= r.status_code < 300\n\n    if not success:\n        return False\n\n    result = r.json()\n\n    return result.get('activated') is True\n\n\ndef reset_token():\n    Token.objects.all().delete()\n\n    return register_token()\n\n\ndef project_auth(token, permission=None):\n    project_token = Token.objects.all().first()\n\n    if not project_token:\n        logger.error('[JET] Project Auth request error: not token registered')\n        return {\n            'result': False\n        }\n\n    url = api_method_url('project_auth/')\n    data = {\n        'project_token': project_token.token,\n        'token': token\n    }\n    headers = {\n        'User-Agent': 'Jet Django'\n    }\n\n    if permission:\n        data.update(permission)\n\n    r = requests.request('POST', url, data=data, headers=headers)\n    success = 200 <= r.status_code < 300\n\n    if not success:\n        logger.error('[JET] Project Auth request error: %s %s %s', r.status_code, r.reason, r.text)\n        return {\n            'result': False\n        }\n\n    result = r.json()\n\n    if result.get('access_disabled'):\n        logger.error('[JET] Project Auth request error: access_disabled')\n        return {\n            'result': False,\n            'warning': result.get('warning')\n        }\n\n    return {\n        'result': True,\n        'warning': result.get('warning')\n    }\n"
  },
  {
    "path": "jet_django/utils/siblings.py",
    "content": "from django.db import connection\nfrom django.db.models.sql import Query\nfrom django.db.models.sql.datastructures import BaseTable\nfrom django.db.models.sql.compiler import SQLCompiler\n\n\ndef get_row_number(Model, instance, join_sql, join_args, where_sql, where_args, order_by_sql):\n    pk = Model._meta.pk.name\n    table = Model._meta.db_table\n\n    with connection.cursor() as cursor:\n        query = '''\n            SELECT \n              __inner.__inner__row \n            FROM \n              (\n                SELECT \n                  {}.{} as __inner__pk, \n                  ROW_NUMBER() OVER({}) AS __inner__row\n                FROM \n                  {}\n                {}\n                {}\n              ) AS __inner \n            WHERE \n              __inner.__inner__pk = %s\n        '''.format(\n            table,\n            pk,\n            order_by_sql,\n            table,\n            join_sql,\n            where_sql\n        )\n        args = join_args + where_args + [instance.pk]\n        cursor.execute(query, args)\n        row = cursor.fetchone()\n\n    if not row:\n        return\n\n    return row[0]\n\n\ndef get_row_siblings(Model, row_number, join_sql, join_args, where_sql, where_args, order_by_sql):\n    pk = Model._meta.pk.name\n    table = Model._meta.db_table\n\n    has_prev = row_number > 1\n    offset = row_number - 2 if has_prev else row_number - 1\n    limit = 3 if has_prev else 2\n\n    with connection.cursor() as cursor:\n        query = '''\n                    SELECT {}.{} \n                    FROM {} \n                    {}\n                    {}\n                    {} \n                    LIMIT %s \n                    OFFSET %s\n                '''.format(\n            table,\n            pk,\n            table,\n            join_sql,\n            where_sql,\n            order_by_sql\n        )\n        args = join_args + where_args + [limit, offset]\n        cursor.execute(query, args)\n        rows = cursor.fetchall()\n\n    if has_prev:\n        next_index = 2\n    else:\n        next_index = 1\n\n    if next_index >= len(rows):\n        next_index = None\n\n    if has_prev:\n        prev_index = 0\n    else:\n        prev_index = None\n\n    def map_row(row):\n        columns = (x.name for x in cursor.description)\n        return dict(zip(columns, row))\n\n    return {\n        'prev': map_row(rows[prev_index]) if prev_index is not None else None,\n        'next': map_row(rows[next_index]) if next_index is not None else None\n    }\n\n\ndef create_joins(queryset, compiler):\n    join_queries = []\n    join_args = []\n\n    for key, value in queryset.query.alias_map.items():\n        if isinstance(value, BaseTable):\n            continue\n        else:\n            query, args = value.as_sql(compiler, connection)\n            join_queries.append(query)\n            join_args.extend(args)\n\n    join_sql = ' '.join(join_queries)\n\n    return join_sql, join_args\n\n\ndef create_where(queryset, compiler):\n    where_query, where_args = queryset.query.where.as_sql(compiler, connection)\n    return 'WHERE {}'.format(where_query) if where_query != '' else '', where_args\n\n\ndef create_order_by(compiler):\n    compiler_order_by = compiler.get_order_by()\n\n    if not compiler_order_by:\n        compiler_order_by = []\n\n    ordering = []\n    for _, (o_sql, o_params, _) in compiler_order_by:\n        ordering.append(o_sql)\n\n    return 'ORDER BY %s' % ', '.join(ordering)\n\n\ndef get_model_siblings(Model, instance, queryset):\n    pk = Model._meta.pk.name\n    ordering = queryset.query.order_by\n\n    if len(ordering) == 0 and len(Model._meta.ordering):\n        ordering = Model._meta.ordering\n\n    if not any(map(lambda x: x == pk or x == '-{}'.format(pk), ordering)):\n        ordering = list(ordering) + ['-{}'.format(pk)]\n\n    queryset.query.order_by = ordering\n    compiler = SQLCompiler(queryset.query, connection, queryset.db)\n    compiler.as_sql()\n\n    join_sql, join_args = create_joins(queryset, compiler)\n    where_sql, where_args = create_where(queryset, compiler)\n    order_by_sql = create_order_by(compiler)\n\n    row_number = get_row_number(Model, instance, join_sql, join_args, where_sql, where_args, order_by_sql)\n\n    if not row_number:\n        return {}\n\n    return get_row_siblings(Model, row_number, join_sql, join_args, where_sql, where_args, order_by_sql)\n"
  },
  {
    "path": "jet_django/views/__init__.py",
    "content": ""
  },
  {
    "path": "jet_django/views/exception_handler.py",
    "content": "import logging\nimport traceback\n\nfrom jet_django.deps.rest_framework import status\nfrom jet_django.deps.rest_framework.views import exception_handler, set_rollback\nfrom jet_django.deps.rest_framework.response import Response\n\nlogger = logging.getLogger(__name__)\n\n\ndef jet_exception_handler(exc, context):\n    response = exception_handler(exc, context)\n\n    if not response:\n        data = {'detail': 'Server Error'}\n\n        set_rollback()\n        response = Response(data, status=status.HTTP_500_INTERNAL_SERVER_ERROR)\n        logger.exception('Jet view exception', exc_info=exc)\n        traceback.print_exc()\n\n    if context and 'request' in context and context['request'].method == 'OPTIONS':\n        response.status_code = 204\n\n        response['Access-Control-Max-Age'] = '1728000'\n        response['Content-Type'] = 'text/plain; charset=utf-8'\n        response['Content-Length'] = 0\n\n    return response\n"
  },
  {
    "path": "jet_django/views/file_upload.py",
    "content": "from jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.file_upload import FileUploadSerializer\n\n\nclass FileUploadView(CORSAPIViewMixin, views.APIView):\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def post(self, request, *args, **kwargs):\n        serializer = FileUploadSerializer(data=request.data, context={'request': self.request})\n        serializer.is_valid(raise_exception=True)\n        serializer.save()\n\n        return Response(serializer.data)\n"
  },
  {
    "path": "jet_django/views/message.py",
    "content": "from jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.message import MessageSerializer\n\n\nclass MessageView(CORSAPIViewMixin, views.APIView):\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def post(self, request, *args, **kwargs):\n        serializer = MessageSerializer(data=request.data)\n        serializer.is_valid(raise_exception=True)\n\n        return Response(serializer.save())\n"
  },
  {
    "path": "jet_django/views/model.py",
    "content": "from jet_django.deps.rest_framework import viewsets, serializers\nfrom jet_django.deps.rest_framework.decorators import list_route, detail_route\nfrom jet_django.deps.rest_framework.generics import get_object_or_404\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.deps.rest_framework.serializers import ModelSerializer\nfrom jet_django.filters.model_aggregate import AggregateFilter\nfrom jet_django.filters.model_group import GroupFilter\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.mixins.method_override import MethodOverrideViewMixin\nfrom jet_django.pagination import CustomPageNumberPagination\nfrom jet_django.permissions import HasProjectPermissions, ModifyNotInDemo\nfrom jet_django.serializers.reorder import reorder_serializer_factory\nfrom jet_django.serializers.reset_order import reset_order_serializer_factory\nfrom jet_django.utils.siblings import get_model_siblings\n\n\nclass AggregateSerializer(serializers.Serializer):\n    y_func = serializers.IntegerField()\n\n    def __init__(self, *args, **kwargs):\n        if 'y_func_serializer' in kwargs:\n            self.fields['y_func'] = kwargs.pop('y_func_serializer')\n\n        super().__init__(*args, **kwargs)\n\n\nclass GroupSerializer(serializers.Serializer):\n    group = serializers.CharField()\n    y_func = serializers.IntegerField()\n\n    def __init__(self, *args, **kwargs):\n        if 'group_serializer' in kwargs:\n            self.fields['group'] = kwargs.pop('group_serializer')\n\n        if 'y_func_serializer' in kwargs:\n            self.fields['y_func'] = kwargs.pop('y_func_serializer')\n\n        super().__init__(*args, **kwargs)\n\n\ndef model_viewset_factory(build_model, build_filter_class, build_serializer_class, build_detail_serializer_class, build_queryset):\n    ReorderSerializer = reorder_serializer_factory(build_queryset)\n    ResetOrderSerializer = reset_order_serializer_factory(build_queryset)\n\n    class Viewset(MethodOverrideViewMixin, CORSAPIViewMixin, viewsets.ModelViewSet):\n        model = build_model\n        queryset = build_queryset\n        pagination_class = CustomPageNumberPagination\n        filter_class = build_filter_class\n        authentication_classes = ()\n        permission_classes = (HasProjectPermissions, ModifyNotInDemo)\n\n        def filter_queryset(self, queryset):\n            queryset = super().filter_queryset(queryset)\n            if self.action == 'list':\n                pk = self.model._meta.pk.name\n                ordering = queryset.query.order_by\n\n                if len(ordering) == 0 and len(self.model._meta.ordering):\n                    ordering = self.model._meta.ordering\n\n                if not any(map(lambda x: x == pk or x == '-{}'.format(pk) or x == '-pk', ordering)):\n                    order_by = list(ordering) + ['-pk']\n                    queryset = queryset.order_by(*order_by)\n            return queryset\n\n        @property\n        def required_project_permission(self):\n            return {\n                'permission_type': 'model',\n                'permission_object': self.kwargs['model'],\n                'permission_actions': {\n                    'create': 'w',\n                    'update': 'w',\n                    'partial_update': 'w',\n                    'destroy': 'd',\n                    'retrieve': 'r',\n                    'list': 'r',\n                    'aggregate': 'r',\n                    'group': 'r',\n                    'reorder': 'w',\n                    'reset_order': 'w',\n                    'get_siblings': 'r'\n                }.get(self.action, 'w')\n            }\n\n        def get_serializer_class(self):\n            if self.action == 'aggregate':\n                return AggregateSerializer\n            elif self.action == 'group':\n                return GroupSerializer\n            elif self.action == 'retrieve':\n                return build_detail_serializer_class\n            else:\n                return build_serializer_class\n\n        @list_route(methods=['get'])\n        def aggregate(self, request, *args, **kwargs):\n            queryset = self.filter_queryset(self.get_queryset())\n\n            y_func = request.GET['_y_func'].lower()\n            y_column = request.GET.get('_y_column', 'id')\n\n            y_field = self.model._meta.get_field(y_column)\n\n            y_serializer_class, y_serializer_kwargs = ModelSerializer().build_standard_field(y_column, y_field)\n            y_serializer = y_serializer_class(**y_serializer_kwargs)\n\n            queryset = AggregateFilter().filter(queryset, {\n                'y_func': y_func,\n                'y_column': y_column\n            })\n\n            serializer = self.get_serializer(\n                queryset,\n                y_func_serializer=y_serializer\n            )\n\n            return Response(serializer.data)\n\n        @list_route(methods=['get'])\n        def group(self, request, *args, **kwargs):\n            queryset = self.filter_queryset(self.get_queryset())\n\n            x_column = request.GET['_x_column']\n            x_lookup_name = request.GET.get('_x_lookup')\n            y_func = request.GET['_y_func'].lower()\n            y_column = request.GET.get('_y_column', 'id')\n\n            x_field = self.model._meta.get_field(x_column)\n            x_lookup = x_field.class_lookups.get(x_lookup_name)\n            y_field = self.model._meta.get_field(y_column)\n\n            if x_lookup:\n                x_field = x_lookup('none').output_field\n\n            x_serializer_class, x_serializer_kwargs = ModelSerializer().build_standard_field(x_column, x_field)\n            x_serializer = x_serializer_class(**x_serializer_kwargs)\n\n            y_serializer_class, y_serializer_kwargs = ModelSerializer().build_standard_field(y_column, y_field)\n            y_serializer = y_serializer_class(**y_serializer_kwargs)\n\n            queryset = GroupFilter().filter(queryset, {\n                'x_column': x_column,\n                'x_lookup': x_lookup,\n                'y_func': y_func,\n                'y_column': y_column\n            })\n            serializer = self.get_serializer(\n                queryset,\n                many=True,\n                group_serializer=x_serializer,\n                y_func_serializer=y_serializer\n            )\n\n            return Response(serializer.data)\n\n        def get_serializer(self, *args, **kwargs):\n            \"\"\"\n            Return the serializer instance that should be used for validating and\n            deserializing input, and for serializing output.\n            \"\"\"\n            serializer_class = self.get_serializer_class()\n            kwargs['context'] = self.get_serializer_context()\n            return serializer_class(*args, **kwargs)\n\n        @list_route(methods=['post'])\n        def reorder(self, request, *args, **kwargs):\n            serializer = ReorderSerializer(data=request.data)\n            serializer.is_valid(raise_exception=True)\n            serializer.save()\n            return Response(serializer.data)\n\n        @list_route(methods=['post'])\n        def reset_order(self, request, *args, **kwargs):\n            serializer = ResetOrderSerializer(data=request.data)\n            serializer.is_valid(raise_exception=True)\n            serializer.save()\n            return Response(serializer.data)\n\n        @detail_route(methods=['get'])\n        def get_siblings(self, request, *args, **kwargs):\n            lookup_url_kwarg = self.lookup_url_kwarg or self.lookup_field\n            filter_kwargs = {self.lookup_field: self.kwargs[lookup_url_kwarg]}\n            obj = get_object_or_404(self.get_queryset(), **filter_kwargs)\n\n            # May raise a permission denied\n            self.check_object_permissions(self.request, obj)\n\n            queryset = self.filter_queryset(self.get_queryset())\n\n            return Response(get_model_siblings(self.model, obj, queryset))\n\n    return Viewset\n"
  },
  {
    "path": "jet_django/views/model_description.py",
    "content": "from jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.admin.jet import jet\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.permissions import HasProjectPermissions\n\n\nclass ModelDescriptionView(CORSAPIViewMixin, views.APIView):\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def get(self, request, *args, **kwargs):\n        return Response(map(lambda x: x.serialize(), jet.models))\n"
  },
  {
    "path": "jet_django/views/register.py",
    "content": "from urllib.parse import quote\n\nfrom django.http import HttpResponseRedirect, JsonResponse\nfrom django.views import generic\n\nfrom jet_django import settings\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.utils.backend import register_token, is_token_activated\n\n\nclass RegisterView(CORSAPIViewMixin, generic.RedirectView):\n\n    def get(self, request, *args, **kwargs):\n        token, created = register_token()\n\n        if not token:\n            return\n\n        if is_token_activated(token):\n            return JsonResponse({\n                'message': 'Project token is already activated'\n            })\n\n        if settings.JET_BACKEND_WEB_BASE_URL.startswith('https') and not self.request.is_secure():\n            web_base_url = 'http{}'.format(settings.JET_BACKEND_WEB_BASE_URL[5:])\n        else:\n            web_base_url = settings.JET_BACKEND_WEB_BASE_URL\n\n        url = '{}/projects/register/'.format(web_base_url)\n        query_string = 'referrer={}'.format(quote(self.request.build_absolute_uri().encode('utf8')))\n\n        return HttpResponseRedirect('%s?%s' % (url, query_string))\n"
  },
  {
    "path": "jet_django/views/root.py",
    "content": "from django.core.files.storage import default_storage\n\nfrom jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\n\nfrom jet_django import VERSION\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\n\n\nclass RootView(CORSAPIViewMixin, views.APIView):\n    def get(self, request, *args, **kwargs):\n        unique_placeholder = '__FILE_PATH___'\n        return Response({\n            'version': VERSION,\n            'type': 'jet_django',\n            'media_url_template': request.build_absolute_uri(default_storage.url(unique_placeholder)).replace(unique_placeholder, '{}')\n        })\n"
  },
  {
    "path": "jet_django/views/sql.py",
    "content": "from jet_django.deps.rest_framework import views\nfrom jet_django.deps.rest_framework.response import Response\nfrom jet_django.mixins.cors_api_view import CORSAPIViewMixin\nfrom jet_django.permissions import HasProjectPermissions\nfrom jet_django.serializers.sql import SqlSerializer, SqlsSerializer\n\n\nclass SqlView(CORSAPIViewMixin, views.APIView):\n    authentication_classes = ()\n    permission_classes = (HasProjectPermissions,)\n\n    def post(self, request, *args, **kwargs):\n        serializer = SqlsSerializer(data=request.data) if 'queries' in request.data \\\n            else SqlSerializer(data=request.data)\n\n        serializer.is_valid(raise_exception=True)\n\n        return Response(serializer.execute(serializer.validated_data))\n"
  },
  {
    "path": "manage.py",
    "content": "#!/usr/bin/env python\nimport os\nimport sys\n\nif __name__ == \"__main__\":\n    os.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"application.settings\")\n\n    from django.core.management import execute_from_command_line\n\n    execute_from_command_line(sys.argv)\n"
  },
  {
    "path": "setup.py",
    "content": "import os\nfrom setuptools import setup, find_packages\n\n\ndef read(fname):\n    path = os.path.join(os.path.dirname(__file__), fname)\n    try:\n        file = open(path, encoding='utf-8')\n    except TypeError:\n        file = open(path)\n    return file.read()\n\n\ndef get_install_requires():\n    install_requires = ['Django', 'requests']\n\n    try:\n        from collections import OrderedDict\n    except ImportError:\n        install_requires.append('ordereddict')\n\n    return install_requires\n\nsetup(\n    name='jet-django',\n    version=__import__('jet_django').VERSION,\n    description='',\n    long_description=read('README.rst'),\n    author='Denis Kildishev',\n    author_email='hello@geex-arts.com',\n    url='https://github.com/jet-admin/jet-django',\n    packages=find_packages(),\n    license='MIT',\n    classifiers=[\n\n    ],\n    zip_safe=False,\n    include_package_data=True,\n    install_requires=get_install_requires()\n)\n"
  },
  {
    "path": "upload.sh",
    "content": "python setup.py sdist upload -r pypi"
  }
]