pax_global_header00006660000000000000000000000064126335351430014517gustar00rootroot0000000000000052 comment=552707381e5292a6bbcef772df03aeb2ceb9253d django-rest-framework-3.3.2/000077500000000000000000000000001263353514300157345ustar00rootroot00000000000000django-rest-framework-3.3.2/.gitignore000066400000000000000000000001771263353514300177310ustar00rootroot00000000000000*.pyc *.db *~ .* /site/ /htmlcov/ /coverage/ /build/ /dist/ /*.egg-info/ /env/ MANIFEST !.gitignore !.travis.yml !.isort.cfg django-rest-framework-3.3.2/.isort.cfg000066400000000000000000000002231263353514300176300ustar00rootroot00000000000000[settings] skip=.tox atomic=true multi_line_output=5 known_standard_library=types known_third_party=pytest,django known_first_party=rest_framework django-rest-framework-3.3.2/.travis.yml000066400000000000000000000012441263353514300200460ustar00rootroot00000000000000language: python sudo: false env: - TOX_ENV=py27-lint - TOX_ENV=py27-docs - TOX_ENV=py35-django19 - TOX_ENV=py34-django19 - TOX_ENV=py27-django19 - TOX_ENV=py34-django18 - TOX_ENV=py33-django18 - TOX_ENV=py32-django18 - TOX_ENV=py27-django18 - TOX_ENV=py34-django17 - TOX_ENV=py33-django17 - TOX_ENV=py32-django17 - TOX_ENV=py27-django17 matrix: # Python 3.5 not yet available on travis, watch this to see when it is. fast_finish: true allow_failures: - env: TOX_ENV=py35-django19 install: - pip install tox script: - tox -e $TOX_ENV after_success: - pip install codecov - codecov -e TOX_ENV django-rest-framework-3.3.2/.tx/000077500000000000000000000000001263353514300164455ustar00rootroot00000000000000django-rest-framework-3.3.2/.tx/config000066400000000000000000000003521263353514300176350ustar00rootroot00000000000000[main] host = https://www.transifex.com [django-rest-framework.djangopo] file_filter = rest_framework/locale//LC_MESSAGES/django.po source_file = rest_framework/locale/en_US/LC_MESSAGES/django.po source_lang = en_US type = PO django-rest-framework-3.3.2/CONTRIBUTING.md000066400000000000000000000244041263353514300201710ustar00rootroot00000000000000# Contributing to REST framework > The world can only really be changed one piece at a time. The art is picking that piece. > > — [Tim Berners-Lee][cite] There are many ways you can contribute to Django REST framework. We'd like it to be a community-led project, so please get involved and help shape the future of the project. ## Community The most important thing you can do to help push the REST framework project forward is to be actively involved wherever possible. Code contributions are often overvalued as being the primary way to get involved in a project, we don't believe that needs to be the case. If you use REST framework, we'd love you to be vocal about your experiences with it - you might consider writing a blog post about using REST framework, or publishing a tutorial about building a project with a particular JavaScript framework. Experiences from beginners can be particularly helpful because you'll be in the best position to assess which bits of REST framework are more difficult to understand and work with. Other really great ways you can help move the community forward include helping to answer questions on the [discussion group][google-group], or setting up an [email alert on StackOverflow][so-filter] so that you get notified of any new questions with the `django-rest-framework` tag. When answering questions make sure to help future contributors find their way around by hyperlinking wherever possible to related threads and tickets, and include backlinks from those items if relevant. ## Code of conduct Please keep the tone polite & professional. For some users a discussion on the REST framework mailing list or ticket tracker may be their first engagement with the open source community. First impressions count, so let's try to make everyone feel welcome. Be mindful in the language you choose. As an example, in an environment that is heavily male-dominated, posts that start 'Hey guys,' can come across as unintentionally exclusive. It's just as easy, and more inclusive to use gender neutral language in those situations. The [Django code of conduct][code-of-conduct] gives a fuller set of guidelines for participating in community forums. # Issues It's really helpful if you can make sure to address issues on the correct channel. Usage questions should be directed to the [discussion group][google-group]. Feature requests, bug reports and other issues should be raised on the GitHub [issue tracker][issues]. Some tips on good issue reporting: * When describing issues try to phrase your ticket in terms of the *behavior* you think needs changing rather than the *code* you think need changing. * Search the issue list first for related items, and make sure you're running the latest version of REST framework before reporting an issue. * If reporting a bug, then try to include a pull request with a failing test case. This will help us quickly identify if there is a valid issue, and make sure that it gets fixed more quickly if there is one. * Feature requests will often be closed with a recommendation that they be implemented outside of the core REST framework library. Keeping new feature requests implemented as third party libraries allows us to keep down the maintenance overhead of REST framework, so that the focus can be on continued stability, bugfixes, and great documentation. * Closing an issue doesn't necessarily mean the end of a discussion. If you believe your issue has been closed incorrectly, explain why and we'll consider if it needs to be reopened. ## Triaging issues Getting involved in triaging incoming issues is a good way to start contributing. Every single ticket that comes into the ticket tracker needs to be reviewed in order to determine what the next steps should be. Anyone can help out with this, you just need to be willing to: * Read through the ticket - does it make sense, is it missing any context that would help explain it better? * Is the ticket reported in the correct place, would it be better suited as a discussion on the discussion group? * If the ticket is a bug report, can you reproduce it? Are you able to write a failing test case that demonstrates the issue and that can be submitted as a pull request? * If the ticket is a feature request, do you agree with it, and could the feature request instead be implemented as a third party package? * If a ticket hasn't had much activity and it addresses something you need, then comment on the ticket and try to find out what's needed to get it moving again. # Development To start developing on Django REST framework, clone the repo: git clone git@github.com:tomchristie/django-rest-framework.git Changes should broadly follow the [PEP 8][pep-8] style conventions, and we recommend you set up your editor to automatically indicate non-conforming styles. ## Testing To run the tests, clone the repository, and then: # Setup the virtual environment virtualenv env source env/bin/activate pip install -r requirements.txt # Run the tests ./runtests.py ### Test options Run using a more concise output style. ./runtests.py -q Run the tests using a more concise output style, no coverage, no flake8. ./runtests.py --fast Don't run the flake8 code linting. ./runtests.py --nolint Only run the flake8 code linting, don't run the tests. ./runtests.py --lintonly Run the tests for a given test case. ./runtests.py MyTestCase Run the tests for a given test method. ./runtests.py MyTestCase.test_this_method Shorter form to run the tests for a given test method. ./runtests.py test_this_method Note: The test case and test method matching is fuzzy and will sometimes run other tests that contain a partial string match to the given command line input. ### Running against multiple environments You can also use the excellent [tox][tox] testing tool to run the tests against all supported versions of Python and Django. Install `tox` globally, and then simply run: tox ## Pull requests It's a good idea to make pull requests early on. A pull request represents the start of a discussion, and doesn't necessarily need to be the final, finished submission. It's also always best to make a new branch before starting work on a pull request. This means that you'll be able to later switch back to working on another separate issue without interfering with an ongoing pull requests. It's also useful to remember that if you have an outstanding pull request then pushing new commits to your GitHub repo will also automatically update the pull requests. GitHub's documentation for working on pull requests is [available here][pull-requests]. Always run the tests before submitting pull requests, and ideally run `tox` in order to check that your modifications are compatible with both Python 2 and Python 3, and that they run properly on all supported versions of Django. Once you've made a pull request take a look at the Travis build status in the GitHub interface and make sure the tests are running as you'd expect. ![Travis status][travis-status] *Above: Travis build notifications* ## Managing compatibility issues Sometimes, in order to ensure your code works on various different versions of Django, Python or third party libraries, you'll need to run slightly different code depending on the environment. Any code that branches in this way should be isolated into the `compat.py` module, and should provide a single common interface that the rest of the codebase can use. # Documentation The documentation for REST framework is built from the [Markdown][markdown] source files in [the docs directory][docs]. There are many great Markdown editors that make working with the documentation really easy. The [Mou editor for Mac][mou] is one such editor that comes highly recommended. ## Building the documentation To build the documentation, install MkDocs with `pip install mkdocs` and then run the following command. mkdocs build This will build the documentation into the `site` directory. You can build the documentation and open a preview in a browser window by using the `serve` command. mkdocs serve ## Language style Documentation should be in American English. The tone of the documentation is very important - try to stick to a simple, plain, objective and well-balanced style where possible. Some other tips: * Keep paragraphs reasonably short. * Don't use abbreviations such as 'e.g.' but instead use the long form, such as 'For example'. ## Markdown style There are a couple of conventions you should follow when working on the documentation. ##### 1. Headers Headers should use the hash style. For example: ### Some important topic The underline style should not be used. **Don't do this:** Some important topic ==================== ##### 2. Links Links should always use the reference style, with the referenced hyperlinks kept at the end of the document. Here is a link to [some other thing][other-thing]. More text... [other-thing]: http://example.com/other/thing This style helps keep the documentation source consistent and readable. If you are hyperlinking to another REST framework document, you should use a relative link, and link to the `.md` suffix. For example: [authentication]: ../api-guide/authentication.md Linking in this style means you'll be able to click the hyperlink in your Markdown editor to open the referenced document. When the documentation is built, these links will be converted into regular links to HTML pages. ##### 3. Notes If you want to draw attention to a note or warning, use a pair of enclosing lines, like so: --- **Note:** A useful documentation note. --- [cite]: http://www.w3.org/People/Berners-Lee/FAQ.html [code-of-conduct]: https://www.djangoproject.com/conduct/ [google-group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [so-filter]: http://stackexchange.com/filters/66475/rest-framework [issues]: https://github.com/tomchristie/django-rest-framework/issues?state=open [pep-8]: http://www.python.org/dev/peps/pep-0008/ [travis-status]: ../img/travis-status.png [pull-requests]: https://help.github.com/articles/using-pull-requests [tox]: http://tox.readthedocs.org/en/latest/ [markdown]: http://daringfireball.net/projects/markdown/basics [docs]: https://github.com/tomchristie/django-rest-framework/tree/master/docs [mou]: http://mouapp.com/ django-rest-framework-3.3.2/LICENSE.md000066400000000000000000000024241263353514300173420ustar00rootroot00000000000000# License Copyright (c) 2011-2015, Tom Christie All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. django-rest-framework-3.3.2/MANIFEST.in000066400000000000000000000003461263353514300174750ustar00rootroot00000000000000include README.md include LICENSE.md recursive-include rest_framework/static *.js *.css *.png *.eot *.svg *.ttf *.woff recursive-include rest_framework/templates *.html recursive-exclude * __pycache__ recursive-exclude * *.py[co] django-rest-framework-3.3.2/README.md000066400000000000000000000161231263353514300172160ustar00rootroot00000000000000# [Django REST framework][docs] [![build-status-image]][travis] [![coverage-status-image]][codecov] [![pypi-version]][pypi] **Awesome web-browsable Web APIs.** Full documentation for the project is available at [http://www.django-rest-framework.org][docs]. --- **Note**: We have now released Django REST framework 3.3. For older codebases you may want to refer to the version 2.4.4 [source code][2.4-code], and [documentation][2.4-docs]. For more details see the 3.3 [announcement][3.3-announcement] and [release notes][3.3-release-notes]. --- # Overview Django REST framework is a powerful and flexible toolkit for building Web APIs. Some reasons you might want to use REST framework: * The [Web browsable API][sandbox] is a huge usability win for your developers. * [Authentication policies][authentication] including optional packages for [OAuth1a][oauth1-section] and [OAuth2][oauth2-section]. * [Serialization][serializers] that supports both [ORM][modelserializer-section] and [non-ORM][serializer-section] data sources. * Customizable all the way down - just use [regular function-based views][functionview-section] if you don't need the [more][generic-views] [powerful][viewsets] [features][routers]. * [Extensive documentation][docs], and [great community support][group]. There is a live example API for testing purposes, [available here][sandbox]. **Below**: *Screenshot from the browsable API* ![Screenshot][image] # Requirements * Python (2.7, 3.2, 3.3, 3.4, 3.5) * Django (1.7, 1.8, 1.9) # Installation Install using `pip`... pip install djangorestframework Add `'rest_framework'` to your `INSTALLED_APPS` setting. INSTALLED_APPS = ( ... 'rest_framework', ) # Example Let's take a look at a quick example of using REST framework to build a simple model-backed API for accessing users and groups. Startup up a new project like so... pip install django pip install djangorestframework django-admin.py startproject example . ./manage.py syncdb Now edit the `example/urls.py` module in your project: ```python from django.conf.urls import url, include from django.contrib.auth.models import User from rest_framework import serializers, viewsets, routers # Serializers define the API representation. class UserSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = User fields = ('url', 'username', 'email', 'is_staff') # ViewSets define the view behavior. class UserViewSet(viewsets.ModelViewSet): queryset = User.objects.all() serializer_class = UserSerializer # Routers provide a way of automatically determining the URL conf. router = routers.DefaultRouter() router.register(r'users', UserViewSet) # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] ``` We'd also like to configure a couple of settings for our API. Add the following to your `settings.py` module: ```python INSTALLED_APPS = ( ... # Make sure to include the default installed apps here. 'rest_framework', ) REST_FRAMEWORK = { # Use Django's standard `django.contrib.auth` permissions, # or allow read-only access for unauthenticated users. 'DEFAULT_PERMISSION_CLASSES': [ 'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly' ] } ``` That's it, we're done! ./manage.py runserver You can now open the API in your browser at `http://127.0.0.1:8000/`, and view your new 'users' API. If you use the `Login` control in the top right corner you'll also be able to add, create and delete users from the system. You can also interact with the API using command line tools such as [`curl`](http://curl.haxx.se/). For example, to list the users endpoint: $ curl -H 'Accept: application/json; indent=4' -u admin:password http://127.0.0.1:8000/users/ [ { "url": "http://127.0.0.1:8000/users/1/", "username": "admin", "email": "admin@example.com", "is_staff": true, } ] Or to create a new user: $ curl -X POST -d username=new -d email=new@example.com -d is_staff=false -H 'Accept: application/json; indent=4' -u admin:password http://127.0.0.1:8000/users/ { "url": "http://127.0.0.1:8000/users/2/", "username": "new", "email": "new@example.com", "is_staff": false, } # Documentation & Support Full documentation for the project is available at [http://www.django-rest-framework.org][docs]. For questions and support, use the [REST framework discussion group][group], or `#restframework` on freenode IRC. You may also want to [follow the author on Twitter][twitter]. # Security If you believe you’ve found something in Django REST framework which has security implications, please **do not raise the issue in a public forum**. Send a description of the issue via email to [rest-framework-security@googlegroups.com][security-mail]. The project maintainers will then work with you to resolve any issues where required, prior to any public disclosure. [build-status-image]: https://secure.travis-ci.org/tomchristie/django-rest-framework.svg?branch=master [travis]: http://travis-ci.org/tomchristie/django-rest-framework?branch=master [coverage-status-image]: https://img.shields.io/codecov/c/github/tomchristie/django-rest-framework/master.svg [codecov]: http://codecov.io/github/tomchristie/django-rest-framework?branch=master [pypi-version]: https://img.shields.io/pypi/v/djangorestframework.svg [pypi]: https://pypi.python.org/pypi/djangorestframework [twitter]: https://twitter.com/_tomchristie [group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [sandbox]: http://restframework.herokuapp.com/ [oauth1-section]: http://www.django-rest-framework.org/api-guide/authentication/#django-rest-framework-oauth [oauth2-section]: http://www.django-rest-framework.org/api-guide/authentication/#django-oauth-toolkit [serializer-section]: http://www.django-rest-framework.org/api-guide/serializers/#serializers [modelserializer-section]: http://www.django-rest-framework.org/api-guide/serializers/#modelserializer [functionview-section]: http://www.django-rest-framework.org/api-guide/views/#function-based-views [generic-views]: http://www.django-rest-framework.org/api-guide/generic-views/ [viewsets]: http://www.django-rest-framework.org/api-guide/viewsets/ [routers]: http://www.django-rest-framework.org/api-guide/routers/ [serializers]: http://www.django-rest-framework.org/api-guide/serializers/ [authentication]: http://www.django-rest-framework.org/api-guide/authentication/ [image]: http://www.django-rest-framework.org/img/quickstart.png [docs]: http://www.django-rest-framework.org/ [security-mail]: mailto:rest-framework-security@googlegroups.com [2.4-code]: https://github.com/tomchristie/django-rest-framework/tree/version-2.4.x [2.4-docs]: http://tomchristie.github.io/rest-framework-2-docs/ [3.3-announcement]: http://www.django-rest-framework.org/topics/3.3-announcement/ [3.3-release-notes]: http://www.django-rest-framework.org/topics/release-notes/#33x-series django-rest-framework-3.3.2/docs/000077500000000000000000000000001263353514300166645ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/CNAME000066400000000000000000000000361263353514300174310ustar00rootroot00000000000000www.django-rest-framework.org django-rest-framework-3.3.2/docs/api-guide/000077500000000000000000000000001263353514300205305ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/api-guide/authentication.md000066400000000000000000000545421263353514300241030ustar00rootroot00000000000000source: authentication.py # Authentication > Auth needs to be pluggable. > > — Jacob Kaplan-Moss, ["REST worst practices"][cite] Authentication is the mechanism of associating an incoming request with a set of identifying credentials, such as the user the request came from, or the token that it was signed with. The [permission] and [throttling] policies can then use those credentials to determine if the request should be permitted. REST framework provides a number of authentication schemes out of the box, and also allows you to implement custom schemes. Authentication is always run at the very start of the view, before the permission and throttling checks occur, and before any other code is allowed to proceed. The `request.user` property will typically be set to an instance of the `contrib.auth` package's `User` class. The `request.auth` property is used for any additional authentication information, for example, it may be used to represent an authentication token that the request was signed with. --- **Note:** Don't forget that **authentication by itself won't allow or disallow an incoming request**, it simply identifies the credentials that the request was made with. For information on how to setup the permission polices for your API please see the [permissions documentation][permission]. --- ## How authentication is determined The authentication schemes are always defined as a list of classes. REST framework will attempt to authenticate with each class in the list, and will set `request.user` and `request.auth` using the return value of the first class that successfully authenticates. If no class authenticates, `request.user` will be set to an instance of `django.contrib.auth.models.AnonymousUser`, and `request.auth` will be set to `None`. The value of `request.user` and `request.auth` for unauthenticated requests can be modified using the `UNAUTHENTICATED_USER` and `UNAUTHENTICATED_TOKEN` settings. ## Setting the authentication scheme The default authentication schemes may be set globally, using the `DEFAULT_AUTHENTICATION_CLASSES` setting. For example. REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.BasicAuthentication', 'rest_framework.authentication.SessionAuthentication', ) } You can also set the authentication scheme on a per-view or per-viewset basis, using the `APIView` class based views. from rest_framework.authentication import SessionAuthentication, BasicAuthentication from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response from rest_framework.views import APIView class ExampleView(APIView): authentication_classes = (SessionAuthentication, BasicAuthentication) permission_classes = (IsAuthenticated,) def get(self, request, format=None): content = { 'user': unicode(request.user), # `django.contrib.auth.User` instance. 'auth': unicode(request.auth), # None } return Response(content) Or, if you're using the `@api_view` decorator with function based views. @api_view(['GET']) @authentication_classes((SessionAuthentication, BasicAuthentication)) @permission_classes((IsAuthenticated,)) def example_view(request, format=None): content = { 'user': unicode(request.user), # `django.contrib.auth.User` instance. 'auth': unicode(request.auth), # None } return Response(content) ## Unauthorized and Forbidden responses When an unauthenticated request is denied permission there are two different error codes that may be appropriate. * [HTTP 401 Unauthorized][http401] * [HTTP 403 Permission Denied][http403] HTTP 401 responses must always include a `WWW-Authenticate` header, that instructs the client how to authenticate. HTTP 403 responses do not include the `WWW-Authenticate` header. The kind of response that will be used depends on the authentication scheme. Although multiple authentication schemes may be in use, only one scheme may be used to determine the type of response. **The first authentication class set on the view is used when determining the type of response**. Note that when a request may successfully authenticate, but still be denied permission to perform the request, in which case a `403 Permission Denied` response will always be used, regardless of the authentication scheme. ## Apache mod_wsgi specific configuration Note that if deploying to [Apache using mod_wsgi][mod_wsgi_official], the authorization header is not passed through to a WSGI application by default, as it is assumed that authentication will be handled by Apache, rather than at an application level. If you are deploying to Apache, and using any non-session based authentication, you will need to explicitly configure mod_wsgi to pass the required headers through to the application. This can be done by specifying the `WSGIPassAuthorization` directive in the appropriate context and setting it to `'On'`. # this can go in either server config, virtual host, directory or .htaccess WSGIPassAuthorization On --- # API Reference ## BasicAuthentication This authentication scheme uses [HTTP Basic Authentication][basicauth], signed against a user's username and password. Basic authentication is generally only appropriate for testing. If successfully authenticated, `BasicAuthentication` provides the following credentials. * `request.user` will be a Django `User` instance. * `request.auth` will be `None`. Unauthenticated responses that are denied permission will result in an `HTTP 401 Unauthorized` response with an appropriate WWW-Authenticate header. For example: WWW-Authenticate: Basic realm="api" **Note:** If you use `BasicAuthentication` in production you must ensure that your API is only available over `https`. You should also ensure that your API clients will always re-request the username and password at login, and will never store those details to persistent storage. ## TokenAuthentication This authentication scheme uses a simple token-based HTTP Authentication scheme. Token authentication is appropriate for client-server setups, such as native desktop and mobile clients. To use the `TokenAuthentication` scheme you'll need to [configure the authentication classes](#setting-the-authentication-scheme) to include `TokenAuthentication`, and additionally include `rest_framework.authtoken` in your `INSTALLED_APPS` setting: INSTALLED_APPS = ( ... 'rest_framework.authtoken' ) --- **Note:** Make sure to run `manage.py syncdb` after changing your settings. The `rest_framework.authtoken` app provides both Django (from v1.7) and South database migrations. See [Schema migrations](#schema-migrations) below. --- You'll also need to create tokens for your users. from rest_framework.authtoken.models import Token token = Token.objects.create(user=...) print token.key For clients to authenticate, the token key should be included in the `Authorization` HTTP header. The key should be prefixed by the string literal "Token", with whitespace separating the two strings. For example: Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b If successfully authenticated, `TokenAuthentication` provides the following credentials. * `request.user` will be a Django `User` instance. * `request.auth` will be a `rest_framework.authtoken.models.BasicToken` instance. Unauthenticated responses that are denied permission will result in an `HTTP 401 Unauthorized` response with an appropriate WWW-Authenticate header. For example: WWW-Authenticate: Token The `curl` command line tool may be useful for testing token authenticated APIs. For example: curl -X GET http://127.0.0.1:8000/api/example/ -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b' --- **Note:** If you use `TokenAuthentication` in production you must ensure that your API is only available over `https`. --- #### Generating Tokens If you want every user to have an automatically generated Token, you can simply catch the User's `post_save` signal. from django.conf import settings from django.db.models.signals import post_save from django.dispatch import receiver from rest_framework.authtoken.models import Token @receiver(post_save, sender=settings.AUTH_USER_MODEL) def create_auth_token(sender, instance=None, created=False, **kwargs): if created: Token.objects.create(user=instance) Note that you'll want to ensure you place this code snippet in an installed `models.py` module, or some other location that will be imported by Django on startup. If you've already created some users, you can generate tokens for all existing users like this: from django.contrib.auth.models import User from rest_framework.authtoken.models import Token for user in User.objects.all(): Token.objects.get_or_create(user=user) When using `TokenAuthentication`, you may want to provide a mechanism for clients to obtain a token given the username and password. REST framework provides a built-in view to provide this behavior. To use it, add the `obtain_auth_token` view to your URLconf: from rest_framework.authtoken import views urlpatterns += [ url(r'^api-token-auth/', views.obtain_auth_token) ] Note that the URL part of the pattern can be whatever you want to use. The `obtain_auth_token` view will return a JSON response when valid `username` and `password` fields are POSTed to the view using form data or JSON: { 'token' : '9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b' } Note that the default `obtain_auth_token` view explicitly uses JSON requests and responses, rather than using default renderer and parser classes in your settings. If you need a customized version of the `obtain_auth_token` view, you can do so by overriding the `ObtainAuthToken` view class, and using that in your url conf instead. #### Schema migrations The `rest_framework.authtoken` app includes both Django native migrations (for Django versions >1.7) and South migrations (for Django versions <1.7) that will create the authtoken table. ---- **Note**: From REST Framework v2.4.0 using South with Django <1.7 requires upgrading South v1.0+ ---- If you're using a [custom user model][custom-user-model] you'll need to make sure that any initial migration that creates the user table runs before the authtoken table is created. You can do so by inserting a `needed_by` attribute in your user migration: class Migration: needed_by = ( ('authtoken', '0001_initial'), ) def forwards(self): ... For more details, see the [south documentation on dependencies][south-dependencies]. Also note that if you're using a `post_save` signal to create tokens, then the first time you create the database tables, you'll need to ensure any migrations are run prior to creating any superusers. For example: python manage.py syncdb --noinput # Won't create a superuser just yet, due to `--noinput`. python manage.py migrate python manage.py createsuperuser ## SessionAuthentication This authentication scheme uses Django's default session backend for authentication. Session authentication is appropriate for AJAX clients that are running in the same session context as your website. If successfully authenticated, `SessionAuthentication` provides the following credentials. * `request.user` will be a Django `User` instance. * `request.auth` will be `None`. Unauthenticated responses that are denied permission will result in an `HTTP 403 Forbidden` response. If you're using an AJAX style API with SessionAuthentication, you'll need to make sure you include a valid CSRF token for any "unsafe" HTTP method calls, such as `PUT`, `PATCH`, `POST` or `DELETE` requests. See the [Django CSRF documentation][csrf-ajax] for more details. **Warning**: Always use Django's standard login view when creating login pages. This will ensure your login views are properly protected. CSRF validation in REST framework works slightly differently to standard Django due to the need to support both session and non-session based authentication to the same views. This means that only authenticated requests require CSRF tokens, and anonymous requests may be sent without CSRF tokens. This behaviour is not suitable for login views, which should always have CSRF validation applied. # Custom authentication To implement a custom authentication scheme, subclass `BaseAuthentication` and override the `.authenticate(self, request)` method. The method should return a two-tuple of `(user, auth)` if authentication succeeds, or `None` otherwise. In some circumstances instead of returning `None`, you may want to raise an `AuthenticationFailed` exception from the `.authenticate()` method. Typically the approach you should take is: * If authentication is not attempted, return `None`. Any other authentication schemes also in use will still be checked. * If authentication is attempted but fails, raise a `AuthenticationFailed` exception. An error response will be returned immediately, regardless of any permissions checks, and without checking any other authentication schemes. You *may* also override the `.authenticate_header(self, request)` method. If implemented, it should return a string that will be used as the value of the `WWW-Authenticate` header in a `HTTP 401 Unauthorized` response. If the `.authenticate_header()` method is not overridden, the authentication scheme will return `HTTP 403 Forbidden` responses when an unauthenticated request is denied access. ## Example The following example will authenticate any incoming request as the user given by the username in a custom request header named 'X_USERNAME'. from django.contrib.auth.models import User from rest_framework import authentication from rest_framework import exceptions class ExampleAuthentication(authentication.BaseAuthentication): def authenticate(self, request): username = request.META.get('X_USERNAME') if not username: return None try: user = User.objects.get(username=username) except User.DoesNotExist: raise exceptions.AuthenticationFailed('No such user') return (user, None) --- # Third party packages The following third party packages are also available. ## Django OAuth Toolkit The [Django OAuth Toolkit][django-oauth-toolkit] package provides OAuth 2.0 support, and works with Python 2.7 and Python 3.3+. The package is maintained by [Evonove][evonove] and uses the excellent [OAuthLib][oauthlib]. The package is well documented, and well supported and is currently our **recommended package for OAuth 2.0 support**. #### Installation & configuration Install using `pip`. pip install django-oauth-toolkit Add the package to your `INSTALLED_APPS` and modify your REST framework settings. INSTALLED_APPS = ( ... 'oauth2_provider', ) REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'oauth2_provider.ext.rest_framework.OAuth2Authentication', ) } For more details see the [Django REST framework - Getting started][django-oauth-toolkit-getting-started] documentation. ## Django REST framework OAuth The [Django REST framework OAuth][django-rest-framework-oauth] package provides both OAuth1 and OAuth2 support for REST framework. This package was previously included directly in REST framework but is now supported and maintained as a third party package. #### Installation & configuration Install the package using `pip`. pip install djangorestframework-oauth For details on configuration and usage see the Django REST framework OAuth documentation for [authentication][django-rest-framework-oauth-authentication] and [permissions][django-rest-framework-oauth-permissions]. ## Digest Authentication HTTP digest authentication is a widely implemented scheme that was intended to replace HTTP basic authentication, and which provides a simple encrypted authentication mechanism. [Juan Riaza][juanriaza] maintains the [djangorestframework-digestauth][djangorestframework-digestauth] package which provides HTTP digest authentication support for REST framework. ## Django OAuth2 Consumer The [Django OAuth2 Consumer][doac] library from [Rediker Software][rediker] is another package that provides [OAuth 2.0 support for REST framework][doac-rest-framework]. The package includes token scoping permissions on tokens, which allows finer-grained access to your API. ## JSON Web Token Authentication JSON Web Token is a fairly new standard which can be used for token-based authentication. Unlike the built-in TokenAuthentication scheme, JWT Authentication doesn't need to use a database to validate a token. [Blimp][blimp] maintains the [djangorestframework-jwt][djangorestframework-jwt] package which provides a JWT Authentication class as well as a mechanism for clients to obtain a JWT given the username and password. ## Hawk HTTP Authentication The [HawkREST][hawkrest] library builds on the [Mohawk][mohawk] library to let you work with [Hawk][hawk] signed requests and responses in your API. [Hawk][hawk] lets two parties securely communicate with each other using messages signed by a shared key. It is based on [HTTP MAC access authentication][mac] (which was based on parts of [OAuth 1.0][oauth-1.0a]). ## HTTP Signature Authentication HTTP Signature (currently a [IETF draft][http-signature-ietf-draft]) provides a way to achieve origin authentication and message integrity for HTTP messages. Similar to [Amazon's HTTP Signature scheme][amazon-http-signature], used by many of its services, it permits stateless, per-request authentication. [Elvio Toccalino][etoccalino] maintains the [djangorestframework-httpsignature][djangorestframework-httpsignature] package which provides an easy to use HTTP Signature Authentication mechanism. ## Djoser [Djoser][djoser] library provides a set of views to handle basic actions such as registration, login, logout, password reset and account activation. The package works with a custom user model and it uses token based authentication. This is a ready to use REST implementation of Django authentication system. ## django-rest-auth [Django-rest-auth][django-rest-auth] library provides a set of REST API endpoints for registration, authentication (including social media authentication), password reset, retrieve and update user details, etc. By having these API endpoints, your client apps such as AngularJS, iOS, Android, and others can communicate to your Django backend site independently via REST APIs for user management. ## django-rest-framework-social-oauth2 [Django-rest-framework-social-oauth2][django-rest-framework-social-oauth2] library provides an easy way to integrate social plugins (facebook, twitter, google, etc.) to your authentication system and an easy oauth2 setup. With this library, you will be able to authenticate users based on external tokens (e.g. facebook access token), convert these tokens to "in-house" oauth2 tokens and use and generate oauth2 tokens to authenticate your users. ## django-rest-knox [Django-rest-knox][django-rest-knox] library provides models and views to handle token based authentication in a more secure and extensible way than the built-in TokenAuthentication scheme - with Single Page Applications and Mobile clients in mind. It provides per-client tokens, and views to generate them when provided some other authentication (usually basic authentication), to delete the token (providing a server enforced logout) and to delete all tokens (logs out all clients that a user is logged into). [cite]: http://jacobian.org/writing/rest-worst-practices/ [http401]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2 [http403]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4 [basicauth]: http://tools.ietf.org/html/rfc2617 [oauth]: http://oauth.net/2/ [permission]: permissions.md [throttling]: throttling.md [csrf-ajax]: https://docs.djangoproject.com/en/dev/ref/csrf/#ajax [mod_wsgi_official]: http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIPassAuthorization [custom-user-model]: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#specifying-a-custom-user-model [south-dependencies]: http://south.readthedocs.org/en/latest/dependencies.html [django-oauth-toolkit-getting-started]: https://django-oauth-toolkit.readthedocs.org/en/latest/rest-framework/getting_started.html [django-rest-framework-oauth]: http://jpadilla.github.io/django-rest-framework-oauth/ [django-rest-framework-oauth-authentication]: http://jpadilla.github.io/django-rest-framework-oauth/authentication/ [django-rest-framework-oauth-permissions]: http://jpadilla.github.io/django-rest-framework-oauth/permissions/ [juanriaza]: https://github.com/juanriaza [djangorestframework-digestauth]: https://github.com/juanriaza/django-rest-framework-digestauth [oauth-1.0a]: http://oauth.net/core/1.0a [django-oauth-plus]: http://code.larlet.fr/django-oauth-plus [django-oauth2-provider]: https://github.com/caffeinehit/django-oauth2-provider [django-oauth2-provider-docs]: https://django-oauth2-provider.readthedocs.org/en/latest/ [rfc6749]: http://tools.ietf.org/html/rfc6749 [django-oauth-toolkit]: https://github.com/evonove/django-oauth-toolkit [evonove]: https://github.com/evonove/ [oauthlib]: https://github.com/idan/oauthlib [doac]: https://github.com/Rediker-Software/doac [rediker]: https://github.com/Rediker-Software [doac-rest-framework]: https://github.com/Rediker-Software/doac/blob/master/docs/integrations.md# [blimp]: https://github.com/GetBlimp [djangorestframework-jwt]: https://github.com/GetBlimp/django-rest-framework-jwt [etoccalino]: https://github.com/etoccalino/ [djangorestframework-httpsignature]: https://github.com/etoccalino/django-rest-framework-httpsignature [amazon-http-signature]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html [http-signature-ietf-draft]: https://datatracker.ietf.org/doc/draft-cavage-http-signatures/ [hawkrest]: http://hawkrest.readthedocs.org/en/latest/ [hawk]: https://github.com/hueniverse/hawk [mohawk]: http://mohawk.readthedocs.org/en/latest/ [mac]: http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token-05 [djoser]: https://github.com/sunscrapers/djoser [django-rest-auth]: https://github.com/Tivix/django-rest-auth [django-rest-framework-social-oauth2]: https://github.com/PhilipGarnero/django-rest-framework-social-oauth2 [django-rest-knox]: https://github.com/James1345/django-rest-knox django-rest-framework-3.3.2/docs/api-guide/content-negotiation.md000066400000000000000000000111551263353514300250450ustar00rootroot00000000000000source: negotiation.py # Content negotiation > HTTP has provisions for several mechanisms for "content negotiation" - the process of selecting the best representation for a given response when there are multiple representations available. > > — [RFC 2616][cite], Fielding et al. [cite]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec12.html Content negotiation is the process of selecting one of multiple possible representations to return to a client, based on client or server preferences. ## Determining the accepted renderer REST framework uses a simple style of content negotiation to determine which media type should be returned to a client, based on the available renderers, the priorities of each of those renderers, and the client's `Accept:` header. The style used is partly client-driven, and partly server-driven. 1. More specific media types are given preference to less specific media types. 2. If multiple media types have the same specificity, then preference is given to based on the ordering of the renderers configured for the given view. For example, given the following `Accept` header: application/json; indent=4, application/json, application/yaml, text/html, */* The priorities for each of the given media types would be: * `application/json; indent=4` * `application/json`, `application/yaml` and `text/html` * `*/*` If the requested view was only configured with renderers for `YAML` and `HTML`, then REST framework would select whichever renderer was listed first in the `renderer_classes` list or `DEFAULT_RENDERER_CLASSES` setting. For more information on the `HTTP Accept` header, see [RFC 2616][accept-header] --- **Note**: "q" values are not taken into account by REST framework when determining preference. The use of "q" values negatively impacts caching, and in the author's opinion they are an unnecessary and overcomplicated approach to content negotiation. This is a valid approach as the HTTP spec deliberately underspecifies how a server should weight server-based preferences against client-based preferences. --- # Custom content negotiation It's unlikely that you'll want to provide a custom content negotiation scheme for REST framework, but you can do so if needed. To implement a custom content negotiation scheme override `BaseContentNegotiation`. REST framework's content negotiation classes handle selection of both the appropriate parser for the request, and the appropriate renderer for the response, so you should implement both the `.select_parser(request, parsers)` and `.select_renderer(request, renderers, format_suffix)` methods. The `select_parser()` method should return one of the parser instances from the list of available parsers, or `None` if none of the parsers can handle the incoming request. The `select_renderer()` method should return a two-tuple of (renderer instance, media type), or raise a `NotAcceptable` exception. ## Example The following is a custom content negotiation class which ignores the client request when selecting the appropriate parser or renderer. from rest_framework.negotiation import BaseContentNegotiation class IgnoreClientContentNegotiation(BaseContentNegotiation): def select_parser(self, request, parsers): """ Select the first parser in the `.parser_classes` list. """ return parsers[0] def select_renderer(self, request, renderers, format_suffix): """ Select the first renderer in the `.renderer_classes` list. """ return (renderers[0], renderers[0].media_type) ## Setting the content negotiation The default content negotiation class may be set globally, using the `DEFAULT_CONTENT_NEGOTIATION_CLASS` setting. For example, the following settings would use our example `IgnoreClientContentNegotiation` class. REST_FRAMEWORK = { 'DEFAULT_CONTENT_NEGOTIATION_CLASS': 'myapp.negotiation.IgnoreClientContentNegotiation', } You can also set the content negotiation used for an individual view, or viewset, using the `APIView` class based views. from myapp.negotiation import IgnoreClientContentNegotiation from rest_framework.response import Response from rest_framework.views import APIView class NoNegotiationView(APIView): """ An example view that does not perform content negotiation. """ content_negotiation_class = IgnoreClientContentNegotiation def get(self, request, format=None): return Response({ 'accepted media type': request.accepted_renderer.media_type }) [accept-header]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html django-rest-framework-3.3.2/docs/api-guide/exceptions.md000066400000000000000000000212471263353514300232410ustar00rootroot00000000000000source: exceptions.py # Exceptions > Exceptions… allow error handling to be organized cleanly in a central or high-level place within the program structure. > > — Doug Hellmann, [Python Exception Handling Techniques][cite] ## Exception handling in REST framework views REST framework's views handle various exceptions, and deal with returning appropriate error responses. The handled exceptions are: * Subclasses of `APIException` raised inside REST framework. * Django's `Http404` exception. * Django's `PermissionDenied` exception. In each case, REST framework will return a response with an appropriate status code and content-type. The body of the response will include any additional details regarding the nature of the error. Most error responses will include a key `detail` in the body of the response. For example, the following request: DELETE http://api.example.com/foo/bar HTTP/1.1 Accept: application/json Might receive an error response indicating that the `DELETE` method is not allowed on that resource: HTTP/1.1 405 Method Not Allowed Content-Type: application/json Content-Length: 42 {"detail": "Method 'DELETE' not allowed."} Validation errors are handled slightly differently, and will include the field names as the keys in the response. If the validation error was not specific to a particular field then it will use the "non_field_errors" key, or whatever string value has been set for the `NON_FIELD_ERRORS_KEY` setting. Any example validation error might look like this: HTTP/1.1 400 Bad Request Content-Type: application/json Content-Length: 94 {"amount": ["A valid integer is required."], "description": ["This field may not be blank."]} ## Custom exception handling You can implement custom exception handling by creating a handler function that converts exceptions raised in your API views into response objects. This allows you to control the style of error responses used by your API. The function must take a pair of arguments, this first is the exception to be handled, and the second is a dictionary containing any extra context such as the view currently being handled. The exception handler function should either return a `Response` object, or return `None` if the exception cannot be handled. If the handler returns `None` then the exception will be re-raised and Django will return a standard HTTP 500 'server error' response. For example, you might want to ensure that all error responses include the HTTP status code in the body of the response, like so: HTTP/1.1 405 Method Not Allowed Content-Type: application/json Content-Length: 62 {"status_code": 405, "detail": "Method 'DELETE' not allowed."} In order to alter the style of the response, you could write the following custom exception handler: from rest_framework.views import exception_handler def custom_exception_handler(exc, context): # Call REST framework's default exception handler first, # to get the standard error response. response = exception_handler(exc, context) # Now add the HTTP status code to the response. if response is not None: response.data['status_code'] = response.status_code return response The context argument is not used by the default handler, but can be useful if the exception handler needs further information such as the view currently being handled, which can be accessed as `context['view']`. The exception handler must also be configured in your settings, using the `EXCEPTION_HANDLER` setting key. For example: REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'my_project.my_app.utils.custom_exception_handler' } If not specified, the `'EXCEPTION_HANDLER'` setting defaults to the standard exception handler provided by REST framework: REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'rest_framework.views.exception_handler' } Note that the exception handler will only be called for responses generated by raised exceptions. It will not be used for any responses returned directly by the view, such as the `HTTP_400_BAD_REQUEST` responses that are returned by the generic views when serializer validation fails. --- # API Reference ## APIException **Signature:** `APIException()` The **base class** for all exceptions raised inside an `APIView` class or `@api_view`. To provide a custom exception, subclass `APIException` and set the `.status_code` and `.default_detail` properties on the class. For example, if your API relies on a third party service that may sometimes be unreachable, you might want to implement an exception for the "503 Service Unavailable" HTTP response code. You could do this like so: from rest_framework.exceptions import APIException class ServiceUnavailable(APIException): status_code = 503 default_detail = 'Service temporarily unavailable, try again later.' ## ParseError **Signature:** `ParseError(detail=None)` Raised if the request contains malformed data when accessing `request.data`. By default this exception results in a response with the HTTP status code "400 Bad Request". ## AuthenticationFailed **Signature:** `AuthenticationFailed(detail=None)` Raised when an incoming request includes incorrect authentication. By default this exception results in a response with the HTTP status code "401 Unauthenticated", but it may also result in a "403 Forbidden" response, depending on the authentication scheme in use. See the [authentication documentation][authentication] for more details. ## NotAuthenticated **Signature:** `NotAuthenticated(detail=None)` Raised when an unauthenticated request fails the permission checks. By default this exception results in a response with the HTTP status code "401 Unauthenticated", but it may also result in a "403 Forbidden" response, depending on the authentication scheme in use. See the [authentication documentation][authentication] for more details. ## PermissionDenied **Signature:** `PermissionDenied(detail=None)` Raised when an authenticated request fails the permission checks. By default this exception results in a response with the HTTP status code "403 Forbidden". ## NotFound **Signature:** `NotFound(detail=None)` Raised when a resource does not exists at the given URL. This exception is equivalent to the standard `Http404` Django exception. By default this exception results in a response with the HTTP status code "404 Not Found". ## MethodNotAllowed **Signature:** `MethodNotAllowed(method, detail=None)` Raised when an incoming request occurs that does not map to a handler method on the view. By default this exception results in a response with the HTTP status code "405 Method Not Allowed". ## NotAcceptable **Signature:** `NotAcceptable(detail=None)` Raised when an incoming request occurs with an `Accept` header that cannot be satisfied by any of the available renderers. By default this exception results in a response with the HTTP status code "406 Not Acceptable". ## UnsupportedMediaType **Signature:** `UnsupportedMediaType(media_type, detail=None)` Raised if there are no parsers that can handle the content type of the request data when accessing `request.data`. By default this exception results in a response with the HTTP status code "415 Unsupported Media Type". ## Throttled **Signature:** `Throttled(wait=None, detail=None)` Raised when an incoming request fails the throttling checks. By default this exception results in a response with the HTTP status code "429 Too Many Requests". ## ValidationError **Signature:** `ValidationError(detail)` The `ValidationError` exception is slightly different from the other `APIException` classes: * The `detail` argument is mandatory, not optional. * The `detail` argument may be a list or dictionary of error details, and may also be a nested data structure. * By convention you should import the serializers module and use a fully qualified `ValidationError` style, in order to differentiate it from Django's built-in validation error. For example. `raise serializers.ValidationError('This field must be an integer value.')` The `ValidationError` class should be used for serializer and field validation, and by validator classes. It is also raised when calling `serializer.is_valid` with the `raise_exception` keyword argument: serializer.is_valid(raise_exception=True) The generic views use the `raise_exception=True` flag, which means that you can override the style of validation error responses globally in your API. To do so, use a custom exception handler, as described above. By default this exception results in a response with the HTTP status code "400 Bad Request". [cite]: http://www.doughellmann.com/articles/how-tos/python-exception-handling/index.html [authentication]: authentication.md django-rest-framework-3.3.2/docs/api-guide/fields.md000066400000000000000000001025151263353514300223240ustar00rootroot00000000000000source: fields.py # Serializer fields > Each field in a Form class is responsible not only for validating data, but also for "cleaning" it — normalizing it to a consistent format. > > — [Django documentation][cite] Serializer fields handle converting between primitive values and internal datatypes. They also deal with validating input values, as well as retrieving and setting the values from their parent objects. --- **Note:** The serializer fields are declared in `fields.py`, but by convention you should import them using `from rest_framework import serializers` and refer to fields as `serializers.`. --- ## Core arguments Each serializer field class constructor takes at least these arguments. Some Field classes take additional, field-specific arguments, but the following should always be accepted: ### `read_only` Read-only fields are included in the API output, but should not be included in the input during create or update operations. Any 'read_only' fields that are incorrectly included in the serializer input will be ignored. Set this to `True` to ensure that the field is used when serializing a representation, but is not used when creating or updating an instance during deserialization. Defaults to `False` ### `write_only` Set this to `True` to ensure that the field may be used when updating or creating an instance, but is not included when serializing the representation. Defaults to `False` ### `required` Normally an error will be raised if a field is not supplied during deserialization. Set to false if this field is not required to be present during deserialization. Setting this to `False` also allows the object attribute or dictionary key to be omitted from output when serializing the instance. If the key is not present it will simply not be included in the output representation. Defaults to `True`. ### `allow_null` Normally an error will be raised if `None` is passed to a serializer field. Set this keyword argument to `True` if `None` should be considered a valid value. Defaults to `False` ### `default` If set, this gives the default value that will be used for the field if no input value is supplied. If not set the default behavior is to not populate the attribute at all. May be set to a function or other callable, in which case the value will be evaluated each time it is used. When called, it will receive no arguments. If the callable has a `set_context` method, that will be called each time before getting the value with the field instance as only argument. This works the same way as for [validators](validators.md#using-set_context). Note that setting a `default` value implies that the field is not required. Including both the `default` and `required` keyword arguments is invalid and will raise an error. ### `source` The name of the attribute that will be used to populate the field. May be a method that only takes a `self` argument, such as `URLField(source='get_absolute_url')`, or may use dotted notation to traverse attributes, such as `EmailField(source='user.email')`. The value `source='*'` has a special meaning, and is used to indicate that the entire object should be passed through to the field. This can be useful for creating nested representations, or for fields which require access to the complete object in order to determine the output representation. Defaults to the name of the field. ### `validators` A list of validator functions which should be applied to the incoming field input, and which either raise a validation error or simply return. Validator functions should typically raise `serializers.ValidationError`, but Django's built-in `ValidationError` is also supported for compatibility with validators defined in the Django codebase or third party Django packages. ### `error_messages` A dictionary of error codes to error messages. ### `label` A short text string that may be used as the name of the field in HTML form fields or other descriptive elements. ### `help_text` A text string that may be used as a description of the field in HTML form fields or other descriptive elements. ### `initial` A value that should be used for pre-populating the value of HTML form fields. ### `style` A dictionary of key-value pairs that can be used to control how renderers should render the field. Two examples here are `'input_type'` and `'base_template'`: # Use for the input. password = serializers.CharField( style={'input_type': 'password'} ) # Use a radio input instead of a select input. color_channel = serializers.ChoiceField( choices=['red', 'green', 'blue'] style = {'base_template': 'radio.html'} } For more details see the [HTML & Forms][html-and-forms] documentation. --- # Boolean fields ## BooleanField A boolean representation. When using HTML encoded form input be aware that omitting a value will always be treated as setting a field to `False`, even if it has a `default=True` option specified. This is because HTML checkbox inputs represent the unchecked state by omitting the value, so REST framework treats omission as if it is an empty checkbox input. Corresponds to `django.db.models.fields.BooleanField`. **Signature:** `BooleanField()` ## NullBooleanField A boolean representation that also accepts `None` as a valid value. Corresponds to `django.db.models.fields.NullBooleanField`. **Signature:** `NullBooleanField()` --- # String fields ## CharField A text representation. Optionally validates the text to be shorter than `max_length` and longer than `min_length`. Corresponds to `django.db.models.fields.CharField` or `django.db.models.fields.TextField`. **Signature:** `CharField(max_length=None, min_length=None, allow_blank=False, trim_whitespace=True)` - `max_length` - Validates that the input contains no more than this number of characters. - `min_length` - Validates that the input contains no fewer than this number of characters. - `allow_blank` - If set to `True` then the empty string should be considered a valid value. If set to `False` then the empty string is considered invalid and will raise a validation error. Defaults to `False`. - `trim_whitespace` - If set to `True` then leading and trailing whitespace is trimmed. Defaults to `True`. The `allow_null` option is also available for string fields, although its usage is discouraged in favor of `allow_blank`. It is valid to set both `allow_blank=True` and `allow_null=True`, but doing so means that there will be two differing types of empty value permissible for string representations, which can lead to data inconsistencies and subtle application bugs. ## EmailField A text representation, validates the text to be a valid e-mail address. Corresponds to `django.db.models.fields.EmailField` **Signature:** `EmailField(max_length=None, min_length=None, allow_blank=False)` ## RegexField A text representation, that validates the given value matches against a certain regular expression. Corresponds to `django.forms.fields.RegexField`. **Signature:** `RegexField(regex, max_length=None, min_length=None, allow_blank=False)` The mandatory `regex` argument may either be a string, or a compiled python regular expression object. Uses Django's `django.core.validators.RegexValidator` for validation. ## SlugField A `RegexField` that validates the input against the pattern `[a-zA-Z0-9_-]+`. Corresponds to `django.db.models.fields.SlugField`. **Signature:** `SlugField(max_length=50, min_length=None, allow_blank=False)` ## URLField A `RegexField` that validates the input against a URL matching pattern. Expects fully qualified URLs of the form `http:///`. Corresponds to `django.db.models.fields.URLField`. Uses Django's `django.core.validators.URLValidator` for validation. **Signature:** `URLField(max_length=200, min_length=None, allow_blank=False)` ## UUIDField A field that ensures the input is a valid UUID string. The `to_internal_value` method will return a `uuid.UUID` instance. On output the field will return a string in the canonical hyphenated format, for example: "de305d54-75b4-431b-adb2-eb6b9e546013" **Signature:** `UUIDField(format='hex_verbose')` - `format`: Determines the representation format of the uuid value - `'hex_verbose'` - The cannoncical hex representation, including hyphens: `"5ce0e9a5-5ffa-654b-cee0-1238041fb31a"` - `'hex'` - The compact hex representation of the UUID, not including hyphens: `"5ce0e9a55ffa654bcee01238041fb31a"` - `'int'` - A 128 bit integer representation of the UUID: `"123456789012312313134124512351145145114"` - `'urn'` - RFC 4122 URN representation of the UUID: `"urn:uuid:5ce0e9a5-5ffa-654b-cee0-1238041fb31a"` Changing the `format` parameters only affects representation values. All formats are accepted by `to_internal_value` ## FilePathField A field whose choices are limited to the filenames in a certain directory on the filesystem Corresponds to `django.forms.fields.FilePathField`. **Signature:** `FilePathField(path, match=None, recursive=False, allow_files=True, allow_folders=False, required=None, **kwargs)` - `path` - The absolute filesystem path to a directory from which this FilePathField should get its choice. - `match` - A regular expression, as a string, that FilePathField will use to filter filenames. - `recursive` - Specifies whether all subdirectories of path should be included. Default is `False`. - `allow_files` - Specifies whether files in the specified location should be included. Default is `True`. Either this or `allow_folders` must be `True`. - `allow_folders` - Specifies whether folders in the specified location should be included. Default is `False`. Either this or `allow_files` must be `True`. ## IPAddressField A field that ensures the input is a valid IPv4 or IPv6 string. Corresponds to `django.forms.fields.IPAddressField` and `django.forms.fields.GenericIPAddressField`. **Signature**: `IPAddressField(protocol='both', unpack_ipv4=False, **options)` - `protocol` Limits valid inputs to the specified protocol. Accepted values are 'both' (default), 'IPv4' or 'IPv6'. Matching is case insensitive. - `unpack_ipv4` Unpacks IPv4 mapped addresses like ::ffff:192.0.2.1. If this option is enabled that address would be unpacked to 192.0.2.1. Default is disabled. Can only be used when protocol is set to 'both'. --- # Numeric fields ## IntegerField An integer representation. Corresponds to `django.db.models.fields.IntegerField`, `django.db.models.fields.SmallIntegerField`, `django.db.models.fields.PositiveIntegerField` and `django.db.models.fields.PositiveSmallIntegerField`. **Signature**: `IntegerField(max_value=None, min_value=None)` - `max_value` Validate that the number provided is no greater than this value. - `min_value` Validate that the number provided is no less than this value. ## FloatField A floating point representation. Corresponds to `django.db.models.fields.FloatField`. **Signature**: `FloatField(max_value=None, min_value=None)` - `max_value` Validate that the number provided is no greater than this value. - `min_value` Validate that the number provided is no less than this value. ## DecimalField A decimal representation, represented in Python by a `Decimal` instance. Corresponds to `django.db.models.fields.DecimalField`. **Signature**: `DecimalField(max_digits, decimal_places, coerce_to_string=None, max_value=None, min_value=None)` - `max_digits` The maximum number of digits allowed in the number. Note that this number must be greater than or equal to decimal_places. - `decimal_places` The number of decimal places to store with the number. - `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `Decimal` objects should be returned. Defaults to the same value as the `COERCE_DECIMAL_TO_STRING` settings key, which will be `True` unless overridden. If `Decimal` objects are returned by the serializer, then the final output format will be determined by the renderer. - `max_value` Validate that the number provided is no greater than this value. - `min_value` Validate that the number provided is no less than this value. #### Example usage To validate numbers up to 999 with a resolution of 2 decimal places, you would use: serializers.DecimalField(max_digits=5, decimal_places=2) And to validate numbers up to anything less than one billion with a resolution of 10 decimal places: serializers.DecimalField(max_digits=19, decimal_places=10) This field also takes an optional argument, `coerce_to_string`. If set to `True` the representation will be output as a string. If set to `False` the representation will be left as a `Decimal` instance and the final representation will be determined by the renderer. If unset, this will default to the same value as the `COERCE_DECIMAL_TO_STRING` setting, which is `True` unless set otherwise. --- # Date and time fields ## DateTimeField A date and time representation. Corresponds to `django.db.models.fields.DateTimeField`. **Signature:** `DateTimeField(format=None, input_formats=None)` * `format` - A string representing the output format. If not specified, this defaults to the same value as the `DATETIME_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `datetime` objects should be returned by `to_representation`. In this case the datetime encoding will be determined by the renderer. * `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `DATETIME_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`. #### `DateTimeField` format strings. Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style datetimes should be used. (eg `'2013-01-29T12:34:56.000000Z'`) When a value of `None` is used for the format `datetime` objects will be returned by `to_representation` and the final output representation will determined by the renderer class. In the case of JSON this means the default datetime representation uses the [ECMA 262 date time string specification][ecma262]. This is a subset of ISO 8601 which uses millisecond precision, and includes the 'Z' suffix for the UTC timezone, for example: `2013-01-29T12:34:56.123Z`. #### `auto_now` and `auto_now_add` model fields. When using `ModelSerializer` or `HyperlinkedModelSerializer`, note that any model fields with `auto_now=True` or `auto_now_add=True` will use serializer fields that are `read_only=True` by default. If you want to override this behavior, you'll need to declare the `DateTimeField` explicitly on the serializer. For example: class CommentSerializer(serializers.ModelSerializer): created = serializers.DateTimeField() class Meta: model = Comment ## DateField A date representation. Corresponds to `django.db.models.fields.DateField` **Signature:** `DateField(format=None, input_formats=None)` * `format` - A string representing the output format. If not specified, this defaults to the same value as the `DATE_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `date` objects should be returned by `to_representation`. In this case the date encoding will be determined by the renderer. * `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `DATE_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`. #### `DateField` format strings Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style dates should be used. (eg `'2013-01-29'`) ## TimeField A time representation. Corresponds to `django.db.models.fields.TimeField` **Signature:** `TimeField(format=None, input_formats=None)` * `format` - A string representing the output format. If not specified, this defaults to the same value as the `TIME_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `time` objects should be returned by `to_representation`. In this case the time encoding will be determined by the renderer. * `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `TIME_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`. #### `TimeField` format strings Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style times should be used. (eg `'12:34:56.000000'`) ## DurationField A Duration representation. Corresponds to `django.db.models.fields.DurationField` The `validated_data` for these fields will contain a `datetime.timedelta` instance. The representation is a string following this format `'[DD] [HH:[MM:]]ss[.uuuuuu]'`. **Note:** This field is only available with Django versions >= 1.8. **Signature:** `DurationField()` --- # Choice selection fields ## ChoiceField A field that can accept a value out of a limited set of choices. Used by `ModelSerializer` to automatically generate fields if the corresponding model field includes a `choices=…` argument. **Signature:** `ChoiceField(choices)` - `choices` - A list of valid values, or a list of `(key, display_name)` tuples. - `allow_blank` - If set to `True` then the empty string should be considered a valid value. If set to `False` then the empty string is considered invalid and will raise a validation error. Defaults to `False`. - `html_cutoff` - If set this will be the maximum number of choices that will be displayed by a HTML select drop down. Can be used to ensure that automatically generated ChoiceFields with very large possible selections do not prevent a template from rendering. Defaults to `None`. - `html_cutoff_text` - If set this will display a textual indicator if the maximum number of items have been cutoff in an HTML select drop down. Defaults to `"More than {count} items…"` Both the `allow_blank` and `allow_null` are valid options on `ChoiceField`, although it is highly recommended that you only use one and not both. `allow_blank` should be preferred for textual choices, and `allow_null` should be preferred for numeric or other non-textual choices. ## MultipleChoiceField A field that can accept a set of zero, one or many values, chosen from a limited set of choices. Takes a single mandatory argument. `to_internal_value` returns a `set` containing the selected values. **Signature:** `MultipleChoiceField(choices)` - `choices` - A list of valid values, or a list of `(key, display_name)` tuples. - `allow_blank` - If set to `True` then the empty string should be considered a valid value. If set to `False` then the empty string is considered invalid and will raise a validation error. Defaults to `False`. - `html_cutoff` - If set this will be the maximum number of choices that will be displayed by a HTML select drop down. Can be used to ensure that automatically generated ChoiceFields with very large possible selections do not prevent a template from rendering. Defaults to `None`. - `html_cutoff_text` - If set this will display a textual indicator if the maximum number of items have been cutoff in an HTML select drop down. Defaults to `"More than {count} items…"` As with `ChoiceField`, both the `allow_blank` and `allow_null` options are valid, although it is highly recommended that you only use one and not both. `allow_blank` should be preferred for textual choices, and `allow_null` should be preferred for numeric or other non-textual choices. --- # File upload fields #### Parsers and file uploads. The `FileField` and `ImageField` classes are only suitable for use with `MultiPartParser` or `FileUploadParser`. Most parsers, such as e.g. JSON don't support file uploads. Django's regular [FILE_UPLOAD_HANDLERS] are used for handling uploaded files. ## FileField A file representation. Performs Django's standard FileField validation. Corresponds to `django.forms.fields.FileField`. **Signature:** `FileField(max_length=None, allow_empty_file=False, use_url=UPLOADED_FILES_USE_URL)` - `max_length` - Designates the maximum length for the file name. - `allow_empty_file` - Designates if empty files are allowed. - `use_url` - If set to `True` then URL string values will be used for the output representation. If set to `False` then filename string values will be used for the output representation. Defaults to the value of the `UPLOADED_FILES_USE_URL` settings key, which is `True` unless set otherwise. ## ImageField An image representation. Validates the uploaded file content as matching a known image format. Corresponds to `django.forms.fields.ImageField`. **Signature:** `ImageField(max_length=None, allow_empty_file=False, use_url=UPLOADED_FILES_USE_URL)` - `max_length` - Designates the maximum length for the file name. - `allow_empty_file` - Designates if empty files are allowed. - `use_url` - If set to `True` then URL string values will be used for the output representation. If set to `False` then filename string values will be used for the output representation. Defaults to the value of the `UPLOADED_FILES_USE_URL` settings key, which is `True` unless set otherwise. Requires either the `Pillow` package or `PIL` package. The `Pillow` package is recommended, as `PIL` is no longer actively maintained. --- # Composite fields ## ListField A field class that validates a list of objects. **Signature**: `ListField(child)` - `child` - A field instance that should be used for validating the objects in the list. If this argument is not provided then objects in the list will not be validated. For example, to validate a list of integers you might use something like the following: scores = serializers.ListField( child=serializers.IntegerField(min_value=0, max_value=100) ) The `ListField` class also supports a declarative style that allows you to write reusable list field classes. class StringListField(serializers.ListField): child = serializers.CharField() We can now reuse our custom `StringListField` class throughout our application, without having to provide a `child` argument to it. ## DictField A field class that validates a dictionary of objects. The keys in `DictField` are always assumed to be string values. **Signature**: `DictField(child)` - `child` - A field instance that should be used for validating the values in the dictionary. If this argument is not provided then values in the mapping will not be validated. For example, to create a field that validates a mapping of strings to strings, you would write something like this: document = DictField(child=CharField()) You can also use the declarative style, as with `ListField`. For example: class DocumentField(DictField): child = CharField() ## JSONField A field class that validates that the incoming data structure consists of valid JSON primitives. In its alternate binary mode, it will represent and validate JSON-encoded binary strings. **Signature**: `JSONField(binary)` - `binary` - If set to `True` then the field will output and validate a JSON encoded string, rather than a primitive data structure. Defaults to `False`. --- # Miscellaneous fields ## ReadOnlyField A field class that simply returns the value of the field without modification. This field is used by default with `ModelSerializer` when including field names that relate to an attribute rather than a model field. **Signature**: `ReadOnlyField()` For example, is `has_expired` was a property on the `Account` model, then the following serializer would automatically generate it as a `ReadOnlyField`: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = ('id', 'account_name', 'has_expired') ## HiddenField A field class that does not take a value based on user input, but instead takes its value from a default value or callable. **Signature**: `HiddenField()` For example, to include a field that always provides the current time as part of the serializer validated data, you would use the following: modified = serializers.HiddenField(default=timezone.now) The `HiddenField` class is usually only needed if you have some validation that needs to run based on some pre-provided field values, but you do not want to expose all of those fields to the end user. For further examples on `HiddenField` see the [validators](validators.md) documentation. ## ModelField A generic field that can be tied to any arbitrary model field. The `ModelField` class delegates the task of serialization/deserialization to its associated model field. This field can be used to create serializer fields for custom model fields, without having to create a new custom serializer field. This field is used by `ModelSerializer` to correspond to custom model field classes. **Signature:** `ModelField(model_field=)` The `ModelField` class is generally intended for internal use, but can be used by your API if needed. In order to properly instantiate a `ModelField`, it must be passed a field that is attached to an instantiated model. For example: `ModelField(model_field=MyModel()._meta.get_field('custom_field'))` ## SerializerMethodField This is a read-only field. It gets its value by calling a method on the serializer class it is attached to. It can be used to add any sort of data to the serialized representation of your object. **Signature**: `SerializerMethodField(method_name=None)` - `method_name` - The name of the method on the serializer to be called. If not included this defaults to `get_`. The serializer method referred to by the `method_name` argument should accept a single argument (in addition to `self`), which is the object being serialized. It should return whatever you want to be included in the serialized representation of the object. For example: from django.contrib.auth.models import User from django.utils.timezone import now from rest_framework import serializers class UserSerializer(serializers.ModelSerializer): days_since_joined = serializers.SerializerMethodField() class Meta: model = User def get_days_since_joined(self, obj): return (now() - obj.date_joined).days --- # Custom fields If you want to create a custom field, you'll need to subclass `Field` and then override either one or both of the `.to_representation()` and `.to_internal_value()` methods. These two methods are used to convert between the initial datatype, and a primitive, serializable datatype. Primitive datatypes will typically be any of a number, string, boolean, `date`/`time`/`datetime` or `None`. They may also be any list or dictionary like object that only contains other primitive objects. Other types might be supported, depending on the renderer that you are using. The `.to_representation()` method is called to convert the initial datatype into a primitive, serializable datatype. The `to_internal_value()` method is called to restore a primitive datatype into its internal python representation. This method should raise a `serializers.ValidationError` if the data is invalid. Note that the `WritableField` class that was present in version 2.x no longer exists. You should subclass `Field` and override `to_internal_value()` if the field supports data input. ## Examples Let's look at an example of serializing a class that represents an RGB color value: class Color(object): """ A color represented in the RGB colorspace. """ def __init__(self, red, green, blue): assert(red >= 0 and green >= 0 and blue >= 0) assert(red < 256 and green < 256 and blue < 256) self.red, self.green, self.blue = red, green, blue class ColorField(serializers.Field): """ Color objects are serialized into 'rgb(#, #, #)' notation. """ def to_representation(self, obj): return "rgb(%d, %d, %d)" % (obj.red, obj.green, obj.blue) def to_internal_value(self, data): data = data.strip('rgb(').rstrip(')') red, green, blue = [int(col) for col in data.split(',')] return Color(red, green, blue) By default field values are treated as mapping to an attribute on the object. If you need to customize how the field value is accessed and set you need to override `.get_attribute()` and/or `.get_value()`. As an example, let's create a field that can be used to represent the class name of the object being serialized: class ClassNameField(serializers.Field): def get_attribute(self, obj): # We pass the object instance onto `to_representation`, # not just the field attribute. return obj def to_representation(self, obj): """ Serialize the object's class name. """ return obj.__class__.__name__ #### Raising validation errors Our `ColorField` class above currently does not perform any data validation. To indicate invalid data, we should raise a `serializers.ValidationError`, like so: def to_internal_value(self, data): if not isinstance(data, six.text_type): msg = 'Incorrect type. Expected a string, but got %s' raise ValidationError(msg % type(data).__name__) if not re.match(r'^rgb\([0-9]+,[0-9]+,[0-9]+\)$', data): raise ValidationError('Incorrect format. Expected `rgb(#,#,#)`.') data = data.strip('rgb(').rstrip(')') red, green, blue = [int(col) for col in data.split(',')] if any([col > 255 or col < 0 for col in (red, green, blue)]): raise ValidationError('Value out of range. Must be between 0 and 255.') return Color(red, green, blue) The `.fail()` method is a shortcut for raising `ValidationError` that takes a message string from the `error_messages` dictionary. For example: default_error_messages = { 'incorrect_type': 'Incorrect type. Expected a string, but got {input_type}', 'incorrect_format': 'Incorrect format. Expected `rgb(#,#,#)`.', 'out_of_range': 'Value out of range. Must be between 0 and 255.' } def to_internal_value(self, data): if not isinstance(data, six.text_type): msg = 'Incorrect type. Expected a string, but got %s' self.fail('incorrect_type', input_type=type(data).__name__) if not re.match(r'^rgb\([0-9]+,[0-9]+,[0-9]+\)$', data): self.fail('incorrect_format') data = data.strip('rgb(').rstrip(')') red, green, blue = [int(col) for col in data.split(',')] if any([col > 255 or col < 0 for col in (red, green, blue)]): self.fail('out_of_range') return Color(red, green, blue) This style keeps you error messages more cleanly separated from your code, and should be preferred. # Third party packages The following third party packages are also available. ## DRF Compound Fields The [drf-compound-fields][drf-compound-fields] package provides "compound" serializer fields, such as lists of simple values, which can be described by other fields rather than serializers with the `many=True` option. Also provided are fields for typed dictionaries and values that can be either a specific type or a list of items of that type. ## DRF Extra Fields The [drf-extra-fields][drf-extra-fields] package provides extra serializer fields for REST framework, including `Base64ImageField` and `PointField` classes. ## djangrestframework-recursive the [djangorestframework-recursive][djangorestframework-recursive] package provides a `RecursiveField` for serializing and deserializing recursive structures ## django-rest-framework-gis The [django-rest-framework-gis][django-rest-framework-gis] package provides geographic addons for django rest framework like a `GeometryField` field and a GeoJSON serializer. ## django-rest-framework-hstore The [django-rest-framework-hstore][django-rest-framework-hstore] package provides an `HStoreField` to support [django-hstore][django-hstore] `DictionaryField` model field. [cite]: https://docs.djangoproject.com/en/dev/ref/forms/api/#django.forms.Form.cleaned_data [html-and-forms]: ../topics/html-and-forms.md [FILE_UPLOAD_HANDLERS]: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FILE_UPLOAD_HANDLERS [ecma262]: http://ecma-international.org/ecma-262/5.1/#sec-15.9.1.15 [strftime]: http://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior [django-widgets]: https://docs.djangoproject.com/en/dev/ref/forms/widgets/ [iso8601]: http://www.w3.org/TR/NOTE-datetime [drf-compound-fields]: http://drf-compound-fields.readthedocs.org [drf-extra-fields]: https://github.com/Hipo/drf-extra-fields [djangorestframework-recursive]: https://github.com/heywbj/django-rest-framework-recursive [django-rest-framework-gis]: https://github.com/djangonauts/django-rest-framework-gis [django-rest-framework-hstore]: https://github.com/djangonauts/django-rest-framework-hstore [django-hstore]: https://github.com/djangonauts/django-hstore django-rest-framework-3.3.2/docs/api-guide/filtering.md000066400000000000000000000473051263353514300230460ustar00rootroot00000000000000source: filters.py # Filtering > The root QuerySet provided by the Manager describes all objects in the database table. Usually, though, you'll need to select only a subset of the complete set of objects. > > — [Django documentation][cite] The default behavior of REST framework's generic list views is to return the entire queryset for a model manager. Often you will want your API to restrict the items that are returned by the queryset. The simplest way to filter the queryset of any view that subclasses `GenericAPIView` is to override the `.get_queryset()` method. Overriding this method allows you to customize the queryset returned by the view in a number of different ways. ## Filtering against the current user You might want to filter the queryset to ensure that only results relevant to the currently authenticated user making the request are returned. You can do so by filtering based on the value of `request.user`. For example: from myapp.models import Purchase from myapp.serializers import PurchaseSerializer from rest_framework import generics class PurchaseList(generics.ListAPIView): serializer_class = PurchaseSerializer def get_queryset(self): """ This view should return a list of all the purchases for the currently authenticated user. """ user = self.request.user return Purchase.objects.filter(purchaser=user) ## Filtering against the URL Another style of filtering might involve restricting the queryset based on some part of the URL. For example if your URL config contained an entry like this: url('^purchases/(?P.+)/$', PurchaseList.as_view()), You could then write a view that returned a purchase queryset filtered by the username portion of the URL: class PurchaseList(generics.ListAPIView): serializer_class = PurchaseSerializer def get_queryset(self): """ This view should return a list of all the purchases for the user as determined by the username portion of the URL. """ username = self.kwargs['username'] return Purchase.objects.filter(purchaser__username=username) ## Filtering against query parameters A final example of filtering the initial queryset would be to determine the initial queryset based on query parameters in the url. We can override `.get_queryset()` to deal with URLs such as `http://example.com/api/purchases?username=denvercoder9`, and filter the queryset only if the `username` parameter is included in the URL: class PurchaseList(generics.ListAPIView): serializer_class = PurchaseSerializer def get_queryset(self): """ Optionally restricts the returned purchases to a given user, by filtering against a `username` query parameter in the URL. """ queryset = Purchase.objects.all() username = self.request.query_params.get('username', None) if username is not None: queryset = queryset.filter(purchaser__username=username) return queryset --- # Generic Filtering As well as being able to override the default queryset, REST framework also includes support for generic filtering backends that allow you to easily construct complex searches and filters. Generic filters can also present themselves as HTML controls in the browsable API and admin API. ![Filter Example](../img/filter-controls.png) ## Setting filter backends The default filter backends may be set globally, using the `DEFAULT_FILTER_BACKENDS` setting. For example. REST_FRAMEWORK = { 'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',) } You can also set the filter backends on a per-view, or per-viewset basis, using the `GenericAPIView` class based views. from django.contrib.auth.models import User from myapp.serializers import UserSerializer from rest_framework import filters from rest_framework import generics class UserListView(generics.ListAPIView): queryset = User.objects.all() serializer = UserSerializer filter_backends = (filters.DjangoFilterBackend,) ## Filtering and object lookups Note that if a filter backend is configured for a view, then as well as being used to filter list views, it will also be used to filter the querysets used for returning a single object. For instance, given the previous example, and a product with an id of `4675`, the following URL would either return the corresponding object, or return a 404 response, depending on if the filtering conditions were met by the given product instance: http://example.com/api/products/4675/?category=clothing&max_price=10.00 ## Overriding the initial queryset Note that you can use both an overridden `.get_queryset()` and generic filtering together, and everything will work as expected. For example, if `Product` had a many-to-many relationship with `User`, named `purchase`, you might want to write a view like this: class PurchasedProductsList(generics.ListAPIView): """ Return a list of all the products that the authenticated user has ever purchased, with optional filtering. """ model = Product serializer_class = ProductSerializer filter_class = ProductFilter def get_queryset(self): user = self.request.user return user.purchase_set.all() --- # API Guide ## DjangoFilterBackend The `DjangoFilterBackend` class supports highly customizable field filtering, using the [django-filter package][django-filter]. To use REST framework's `DjangoFilterBackend`, first install `django-filter`. pip install django-filter If you are using the browsable API or admin API you may also want to install `django-crispy-forms`, which will enhance the presentation of the filter forms in HTML views, by allowing them to render Bootstrap 3 HTML. pip install django-crispy-forms With crispy forms installed and added to Django's `INSTALLED_APPS`, the browsable API will present a filtering control for `DjangoFilterBackend`, like so: ![Django Filter](../img/django-filter.png) #### Specifying filter fields If all you need is simple equality-based filtering, you can set a `filter_fields` attribute on the view, or viewset, listing the set of fields you wish to filter against. class ProductList(generics.ListAPIView): queryset = Product.objects.all() serializer_class = ProductSerializer filter_backends = (filters.DjangoFilterBackend,) filter_fields = ('category', 'in_stock') This will automatically create a `FilterSet` class for the given fields, and will allow you to make requests such as: http://example.com/api/products?category=clothing&in_stock=True #### Specifying a FilterSet For more advanced filtering requirements you can specify a `FilterSet` class that should be used by the view. For example: import django_filters from myapp.models import Product from myapp.serializers import ProductSerializer from rest_framework import filters from rest_framework import generics class ProductFilter(django_filters.FilterSet): min_price = django_filters.NumberFilter(name="price", lookup_type='gte') max_price = django_filters.NumberFilter(name="price", lookup_type='lte') class Meta: model = Product fields = ['category', 'in_stock', 'min_price', 'max_price'] class ProductList(generics.ListAPIView): queryset = Product.objects.all() serializer_class = ProductSerializer filter_backends = (filters.DjangoFilterBackend,) filter_class = ProductFilter Which will allow you to make requests such as: http://example.com/api/products?category=clothing&max_price=10.00 You can also span relationships using `django-filter`, let's assume that each product has foreign key to `Manufacturer` model, so we create filter that filters using `Manufacturer` name. For example: import django_filters from myapp.models import Product from myapp.serializers import ProductSerializer from rest_framework import generics class ProductFilter(django_filters.FilterSet): class Meta: model = Product fields = ['category', 'in_stock', 'manufacturer__name'] This enables us to make queries like: http://example.com/api/products?manufacturer__name=foo This is nice, but it exposes the Django's double underscore convention as part of the API. If you instead want to explicitly name the filter argument you can instead explicitly include it on the `FilterSet` class: import django_filters from myapp.models import Product from myapp.serializers import ProductSerializer from rest_framework import generics class ProductFilter(django_filters.FilterSet): manufacturer = django_filters.CharFilter(name="manufacturer__name") class Meta: model = Product fields = ['category', 'in_stock', 'manufacturer'] And now you can execute: http://example.com/api/products?manufacturer=foo For more details on using filter sets see the [django-filter documentation][django-filter-docs]. --- **Hints & Tips** * By default filtering is not enabled. If you want to use `DjangoFilterBackend` remember to make sure it is installed by using the `'DEFAULT_FILTER_BACKENDS'` setting. * When using boolean fields, you should use the values `True` and `False` in the URL query parameters, rather than `0`, `1`, `true` or `false`. (The allowed boolean values are currently hardwired in Django's [NullBooleanSelect implementation][nullbooleanselect].) * `django-filter` supports filtering across relationships, using Django's double-underscore syntax. * For Django 1.3 support, make sure to install `django-filter` version 0.5.4, as later versions drop support for 1.3. --- ## SearchFilter The `SearchFilter` class supports simple single query parameter based searching, and is based on the [Django admin's search functionality][search-django-admin]. When in use, the browsable API will include a `SearchFilter` control: ![Search Filter](../img/search-filter.png) The `SearchFilter` class will only be applied if the view has a `search_fields` attribute set. The `search_fields` attribute should be a list of names of text type fields on the model, such as `CharField` or `TextField`. class UserListView(generics.ListAPIView): queryset = User.objects.all() serializer = UserSerializer filter_backends = (filters.SearchFilter,) search_fields = ('username', 'email') This will allow the client to filter the items in the list by making queries such as: http://example.com/api/users?search=russell You can also perform a related lookup on a ForeignKey or ManyToManyField with the lookup API double-underscore notation: search_fields = ('username', 'email', 'profile__profession') By default, searches will use case-insensitive partial matches. The search parameter may contain multiple search terms, which should be whitespace and/or comma separated. If multiple search terms are used then objects will be returned in the list only if all the provided terms are matched. The search behavior may be restricted by prepending various characters to the `search_fields`. * '^' Starts-with search. * '=' Exact matches. * '@' Full-text search. (Currently only supported Django's MySQL backend.) * '$' Regex search. For example: search_fields = ('=username', '=email') By default, the search parameter is named `'search`', but this may be overridden with the `SEARCH_PARAM` setting. For more details, see the [Django documentation][search-django-admin]. --- ## OrderingFilter The `OrderingFilter` class supports simple query parameter controlled ordering of results. ![Ordering Filter](../img/ordering-filter.png) By default, the query parameter is named `'ordering'`, but this may by overridden with the `ORDERING_PARAM` setting. For example, to order users by username: http://example.com/api/users?ordering=username The client may also specify reverse orderings by prefixing the field name with '-', like so: http://example.com/api/users?ordering=-username Multiple orderings may also be specified: http://example.com/api/users?ordering=account,username ### Specifying which fields may be ordered against It's recommended that you explicitly specify which fields the API should allowing in the ordering filter. You can do this by setting an `ordering_fields` attribute on the view, like so: class UserListView(generics.ListAPIView): queryset = User.objects.all() serializer_class = UserSerializer filter_backends = (filters.OrderingFilter,) ordering_fields = ('username', 'email') This helps prevent unexpected data leakage, such as allowing users to order against a password hash field or other sensitive data. If you *don't* specify an `ordering_fields` attribute on the view, the filter class will default to allowing the user to filter on any readable fields on the serializer specified by the `serializer_class` attribute. If you are confident that the queryset being used by the view doesn't contain any sensitive data, you can also explicitly specify that a view should allow ordering on *any* model field or queryset aggregate, by using the special value `'__all__'`. class BookingsListView(generics.ListAPIView): queryset = Booking.objects.all() serializer_class = BookingSerializer filter_backends = (filters.OrderingFilter,) ordering_fields = '__all__' ### Specifying a default ordering If an `ordering` attribute is set on the view, this will be used as the default ordering. Typically you'd instead control this by setting `order_by` on the initial queryset, but using the `ordering` parameter on the view allows you to specify the ordering in a way that it can then be passed automatically as context to a rendered template. This makes it possible to automatically render column headers differently if they are being used to order the results. class UserListView(generics.ListAPIView): queryset = User.objects.all() serializer_class = UserSerializer filter_backends = (filters.OrderingFilter,) ordering_fields = ('username', 'email') ordering = ('username',) The `ordering` attribute may be either a string or a list/tuple of strings. --- ## DjangoObjectPermissionsFilter The `DjangoObjectPermissionsFilter` is intended to be used together with the [`django-guardian`][guardian] package, with custom `'view'` permissions added. The filter will ensure that querysets only returns objects for which the user has the appropriate view permission. If you're using `DjangoObjectPermissionsFilter`, you'll probably also want to add an appropriate object permissions class, to ensure that users can only operate on instances if they have the appropriate object permissions. The easiest way to do this is to subclass `DjangoObjectPermissions` and add `'view'` permissions to the `perms_map` attribute. A complete example using both `DjangoObjectPermissionsFilter` and `DjangoObjectPermissions` might look something like this. **permissions.py**: class CustomObjectPermissions(permissions.DjangoObjectPermissions): """ Similar to `DjangoObjectPermissions`, but adding 'view' permissions. """ perms_map = { 'GET': ['%(app_label)s.view_%(model_name)s'], 'OPTIONS': ['%(app_label)s.view_%(model_name)s'], 'HEAD': ['%(app_label)s.view_%(model_name)s'], 'POST': ['%(app_label)s.add_%(model_name)s'], 'PUT': ['%(app_label)s.change_%(model_name)s'], 'PATCH': ['%(app_label)s.change_%(model_name)s'], 'DELETE': ['%(app_label)s.delete_%(model_name)s'], } **views.py**: class EventViewSet(viewsets.ModelViewSet): """ Viewset that only lists events if user has 'view' permissions, and only allows operations on individual events if user has appropriate 'view', 'add', 'change' or 'delete' permissions. """ queryset = Event.objects.all() serializer = EventSerializer filter_backends = (filters.DjangoObjectPermissionsFilter,) permission_classes = (myapp.permissions.CustomObjectPermissions,) For more information on adding `'view'` permissions for models, see the [relevant section][view-permissions] of the `django-guardian` documentation, and [this blogpost][view-permissions-blogpost]. --- # Custom generic filtering You can also provide your own generic filtering backend, or write an installable app for other developers to use. To do so override `BaseFilterBackend`, and override the `.filter_queryset(self, request, queryset, view)` method. The method should return a new, filtered queryset. As well as allowing clients to perform searches and filtering, generic filter backends can be useful for restricting which objects should be visible to any given request or user. ## Example For example, you might need to restrict users to only being able to see objects they created. class IsOwnerFilterBackend(filters.BaseFilterBackend): """ Filter that only allows users to see their own objects. """ def filter_queryset(self, request, queryset, view): return queryset.filter(owner=request.user) We could achieve the same behavior by overriding `get_queryset()` on the views, but using a filter backend allows you to more easily add this restriction to multiple views, or to apply it across the entire API. ## Customizing the interface Generic filters may also present an interface in the browsable API. To do so you should implement a `to_html()` method which returns a rendered HTML representation of the filter. This method should have the following signature: `to_html(self, request, queryset, view)` The method should return a rendered HTML string. # Third party packages The following third party packages provide additional filter implementations. ## Django REST framework filters package The [django-rest-framework-filters package][django-rest-framework-filters] works together with the `DjangoFilterBackend` class, and allows you to easily create filters across relationships, or create multiple filter lookup types for a given field. ## Django REST framework full word search filter The [djangorestframework-word-filter][django-rest-framework-word-search-filter] developed as alternative to `filters.SearchFilter` which will search full word in text, or exact match. ## Django URL Filter [django-url-filter][django-url-filter] provides a safe way to filter data via human-friendly URLs. It works very similar to DRF serializers and fields in a sense that they can be nested except they are called filtersets and filters. That provides easy way to filter related data. Also this library is generic-purpose so it can be used to filter other sources of data and not only Django `QuerySet`s. [cite]: https://docs.djangoproject.com/en/dev/topics/db/queries/#retrieving-specific-objects-with-filters [django-filter]: https://github.com/alex/django-filter [django-filter-docs]: https://django-filter.readthedocs.org/en/latest/index.html [guardian]: https://django-guardian.readthedocs.org/ [view-permissions]: https://django-guardian.readthedocs.org/en/latest/userguide/assign.html [view-permissions-blogpost]: http://blog.nyaruka.com/adding-a-view-permission-to-django-models [nullbooleanselect]: https://github.com/django/django/blob/master/django/forms/widgets.py [search-django-admin]: https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.search_fields [django-rest-framework-filters]: https://github.com/philipn/django-rest-framework-filters [django-rest-framework-word-search-filter]: https://github.com/trollknurr/django-rest-framework-word-search-filter [django-url-filter]: https://github.com/miki725/django-url-filter django-rest-framework-3.3.2/docs/api-guide/format-suffixes.md000066400000000000000000000076101263353514300242000ustar00rootroot00000000000000source: urlpatterns.py # Format suffixes > Section 6.2.1 does not say that content negotiation should be used all the time. > > — Roy Fielding, [REST discuss mailing list][cite] A common pattern for Web APIs is to use filename extensions on URLs to provide an endpoint for a given media type. For example, 'http://example.com/api/users.json' to serve a JSON representation. Adding format-suffix patterns to each individual entry in the URLconf for your API is error-prone and non-DRY, so REST framework provides a shortcut to adding these patterns to your URLConf. ## format_suffix_patterns **Signature**: format_suffix_patterns(urlpatterns, suffix_required=False, allowed=None) Returns a URL pattern list which includes format suffix patterns appended to each of the URL patterns provided. Arguments: * **urlpatterns**: Required. A URL pattern list. * **suffix_required**: Optional. A boolean indicating if suffixes in the URLs should be optional or mandatory. Defaults to `False`, meaning that suffixes are optional by default. * **allowed**: Optional. A list or tuple of valid format suffixes. If not provided, a wildcard format suffix pattern will be used. Example: from rest_framework.urlpatterns import format_suffix_patterns from blog import views urlpatterns = [ url(r'^/$', views.apt_root), url(r'^comments/$', views.comment_list), url(r'^comments/(?P[0-9]+)/$', views.comment_detail) ] urlpatterns = format_suffix_patterns(urlpatterns, allowed=['json', 'html']) When using `format_suffix_patterns`, you must make sure to add the `'format'` keyword argument to the corresponding views. For example: @api_view(('GET', 'POST')) def comment_list(request, format=None): # do stuff... Or with class based views: class CommentList(APIView): def get(self, request, format=None): # do stuff... def post(self, request, format=None): # do stuff... The name of the kwarg used may be modified by using the `FORMAT_SUFFIX_KWARG` setting. Also note that `format_suffix_patterns` does not support descending into `include` URL patterns. ### Using with `i18n_patterns` If using the `i18n_patterns` function provided by Django, as well as `format_suffix_patterns` you should make sure that the `i18n_patterns` function is applied as the final, or outermost function. For example: url patterns = [ … ] urlpatterns = i18n_patterns( format_suffix_patterns(urlpatterns, allowed=['json', 'html']) ) --- ## Query parameter formats An alternative to the format suffixes is to include the requested format in a query parameter. REST framework provides this option by default, and it is used in the browsable API to switch between differing available representations. To select a representation using its short format, use the `format` query parameter. For example: `http://example.com/organizations/?format=csv`. The name of this query parameter can be modified using the `URL_FORMAT_OVERRIDE` setting. Set the value to `None` to disable this behavior. --- ## Accept headers vs. format suffixes There seems to be a view among some of the Web community that filename extensions are not a RESTful pattern, and that `HTTP Accept` headers should always be used instead. It is actually a misconception. For example, take the following quote from Roy Fielding discussing the relative merits of query parameter media-type indicators vs. file extension media-type indicators: “That's why I always prefer extensions. Neither choice has anything to do with REST.” — Roy Fielding, [REST discuss mailing list][cite2] The quote does not mention Accept headers, but it does make it clear that format suffixes should be considered an acceptable pattern. [cite]: http://tech.groups.yahoo.com/group/rest-discuss/message/5857 [cite2]: http://tech.groups.yahoo.com/group/rest-discuss/message/14844 django-rest-framework-3.3.2/docs/api-guide/generic-views.md000066400000000000000000000450021263353514300236220ustar00rootroot00000000000000source: mixins.py generics.py # Generic views > Django’s generic views... were developed as a shortcut for common usage patterns... They take certain common idioms and patterns found in view development and abstract them so that you can quickly write common views of data without having to repeat yourself. > > — [Django Documentation][cite] One of the key benefits of class based views is the way they allow you to compose bits of reusable behavior. REST framework takes advantage of this by providing a number of pre-built views that provide for commonly used patterns. The generic views provided by REST framework allow you to quickly build API views that map closely to your database models. If the generic views don't suit the needs of your API, you can drop down to using the regular `APIView` class, or reuse the mixins and base classes used by the generic views to compose your own set of reusable generic views. ## Examples Typically when using the generic views, you'll override the view, and set several class attributes. from django.contrib.auth.models import User from myapp.serializers import UserSerializer from rest_framework import generics from rest_framework.permissions import IsAdminUser class UserList(generics.ListCreateAPIView): queryset = User.objects.all() serializer_class = UserSerializer permission_classes = (IsAdminUser,) paginate_by = 100 For more complex cases you might also want to override various methods on the view class. For example. class UserList(generics.ListCreateAPIView): queryset = User.objects.all() serializer_class = UserSerializer permission_classes = (IsAdminUser,) def list(self, request): # Note the use of `get_queryset()` instead of `self.queryset` queryset = self.get_queryset() serializer = UserSerializer(queryset, many=True) return Response(serializer.data) For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something like the following entry: url(r'^/users/', ListCreateAPIView.as_view(queryset=User.objects.all(), serializer_class=UserSerializer), name='user-list') --- # API Reference ## GenericAPIView This class extends REST framework's `APIView` class, adding commonly required behavior for standard list and detail views. Each of the concrete generic views provided is built by combining `GenericAPIView`, with one or more mixin classes. ### Attributes **Basic settings**: The following attributes control the basic view behavior. * `queryset` - The queryset that should be used for returning objects from this view. Typically, you must either set this attribute, or override the `get_queryset()` method. If you are overriding a view method, it is important that you call `get_queryset()` instead of accessing this property directly, as `queryset` will get evaluated once, and those results will be cached for all subsequent requests. * `serializer_class` - The serializer class that should be used for validating and deserializing input, and for serializing output. Typically, you must either set this attribute, or override the `get_serializer_class()` method. * `lookup_field` - The model field that should be used to for performing object lookup of individual model instances. Defaults to `'pk'`. Note that when using hyperlinked APIs you'll need to ensure that *both* the API views *and* the serializer classes set the lookup fields if you need to use a custom value. * `lookup_url_kwarg` - The URL keyword argument that should be used for object lookup. The URL conf should include a keyword argument corresponding to this value. If unset this defaults to using the same value as `lookup_field`. **Pagination**: The following attributes are used to control pagination when used with list views. * `pagination_class` - The pagination class that should be used when paginating list results. Defaults to the same value as the `DEFAULT_PAGINATION_CLASS` setting, which is `'rest_framework.pagination.PageNumberPagination'`. Note that usage of the `paginate_by`, `paginate_by_param` and `page_kwarg` attributes are now pending deprecation. The `pagination_serializer_class` attribute and `DEFAULT_PAGINATION_SERIALIZER_CLASS` setting have been removed completely. Pagination settings should instead be controlled by overriding a pagination class and setting any configuration attributes there. See the pagination documentation for more details. **Filtering**: * `filter_backends` - A list of filter backend classes that should be used for filtering the queryset. Defaults to the same value as the `DEFAULT_FILTER_BACKENDS` setting. ### Methods **Base methods**: #### `get_queryset(self)` Returns the queryset that should be used for list views, and that should be used as the base for lookups in detail views. Defaults to returning the queryset specified by the `queryset` attribute. This method should always be used rather than accessing `self.queryset` directly, as `self.queryset` gets evaluated only once, and those results are cached for all subsequent requests. May be overridden to provide dynamic behavior, such as returning a queryset, that is specific to the user making the request. For example: def get_queryset(self): user = self.request.user return user.accounts.all() #### `get_object(self)` Returns an object instance that should be used for detail views. Defaults to using the `lookup_field` parameter to filter the base queryset. May be overridden to provide more complex behavior, such as object lookups based on more than one URL kwarg. For example: def get_object(self): queryset = self.get_queryset() filter = {} for field in self.multiple_lookup_fields: filter[field] = self.kwargs[field] obj = get_object_or_404(queryset, **filter) self.check_object_permissions(self.request, obj) return obj Note that if your API doesn't include any object level permissions, you may optionally exclude the `self.check_object_permissions`, and simply return the object from the `get_object_or_404` lookup. #### `filter_queryset(self, queryset)` Given a queryset, filter it with whichever filter backends are in use, returning a new queryset. For example: def filter_queryset(self, queryset): filter_backends = (CategoryFilter,) if 'geo_route' in self.request.query_params: filter_backends = (GeoRouteFilter, CategoryFilter) elif 'geo_point' in self.request.query_params: filter_backends = (GeoPointFilter, CategoryFilter) for backend in list(filter_backends): queryset = backend().filter_queryset(self.request, queryset, view=self) return queryset #### `get_serializer_class(self)` Returns the class that should be used for the serializer. Defaults to returning the `serializer_class` attribute. May be overridden to provide dynamic behavior, such as using different serializers for read and write operations, or providing different serializers to different types of users. For example: def get_serializer_class(self): if self.request.user.is_staff: return FullAccountSerializer return BasicAccountSerializer **Save and deletion hooks**: The following methods are provided by the mixin classes, and provide easy overriding of the object save or deletion behavior. * `perform_create(self, serializer)` - Called by `CreateModelMixin` when saving a new object instance. * `perform_update(self, serializer)` - Called by `UpdateModelMixin` when saving an existing object instance. * `perform_destroy(self, instance)` - Called by `DestroyModelMixin` when deleting an object instance. These hooks are particularly useful for setting attributes that are implicit in the request, but are not part of the request data. For instance, you might set an attribute on the object based on the request user, or based on a URL keyword argument. def perform_create(self, serializer): serializer.save(user=self.request.user) These override points are also particularly useful for adding behavior that occurs before or after saving an object, such as emailing a confirmation, or logging the update. def perform_update(self, serializer): instance = serializer.save() send_email_confirmation(user=self.request.user, modified=instance) You can also use these hooks to provide additional validation, by raising a `ValidationError()`. This can be useful if you need some validation logic to apply at the point of database save. For example: def perform_create(self, serializer): queryset = SignupRequest.objects.filter(user=self.request.user) if queryset.exists(): raise ValidationError('You have already signed up') serializer.save(user=self.request.user) **Note**: These methods replace the old-style version 2.x `pre_save`, `post_save`, `pre_delete` and `post_delete` methods, which are no longer available. **Other methods**: You won't typically need to override the following methods, although you might need to call into them if you're writing custom views using `GenericAPIView`. * `get_serializer_context(self)` - Returns a dictionary containing any extra context that should be supplied to the serializer. Defaults to including `'request'`, `'view'` and `'format'` keys. * `get_serializer(self, instance=None, data=None, many=False, partial=False)` - Returns a serializer instance. * `get_paginated_response(self, data)` - Returns a paginated style `Response` object. * `paginate_queryset(self, queryset)` - Paginate a queryset if required, either returning a page object, or `None` if pagination is not configured for this view. * `filter_queryset(self, queryset)` - Given a queryset, filter it with whichever filter backends are in use, returning a new queryset. --- # Mixins The mixin classes provide the actions that are used to provide the basic view behavior. Note that the mixin classes provide action methods rather than defining the handler methods, such as `.get()` and `.post()`, directly. This allows for more flexible composition of behavior. The mixin classes can be imported from `rest_framework.mixins`. ## ListModelMixin Provides a `.list(request, *args, **kwargs)` method, that implements listing a queryset. If the queryset is populated, this returns a `200 OK` response, with a serialized representation of the queryset as the body of the response. The response data may optionally be paginated. ## CreateModelMixin Provides a `.create(request, *args, **kwargs)` method, that implements creating and saving a new model instance. If an object is created this returns a `201 Created` response, with a serialized representation of the object as the body of the response. If the representation contains a key named `url`, then the `Location` header of the response will be populated with that value. If the request data provided for creating the object was invalid, a `400 Bad Request` response will be returned, with the error details as the body of the response. ## RetrieveModelMixin Provides a `.retrieve(request, *args, **kwargs)` method, that implements returning an existing model instance in a response. If an object can be retrieved this returns a `200 OK` response, with a serialized representation of the object as the body of the response. Otherwise it will return a `404 Not Found`. ## UpdateModelMixin Provides a `.update(request, *args, **kwargs)` method, that implements updating and saving an existing model instance. Also provides a `.partial_update(request, *args, **kwargs)` method, which is similar to the `update` method, except that all fields for the update will be optional. This allows support for HTTP `PATCH` requests. If an object is updated this returns a `200 OK` response, with a serialized representation of the object as the body of the response. If an object is created, for example when making a `DELETE` request followed by a `PUT` request to the same URL, this returns a `201 Created` response, with a serialized representation of the object as the body of the response. If the request data provided for updating the object was invalid, a `400 Bad Request` response will be returned, with the error details as the body of the response. ## DestroyModelMixin Provides a `.destroy(request, *args, **kwargs)` method, that implements deletion of an existing model instance. If an object is deleted this returns a `204 No Content` response, otherwise it will return a `404 Not Found`. --- # Concrete View Classes The following classes are the concrete generic views. If you're using generic views this is normally the level you'll be working at unless you need heavily customized behavior. The view classes can be imported from `rest_framework.generics`. ## CreateAPIView Used for **create-only** endpoints. Provides a `post` method handler. Extends: [GenericAPIView], [CreateModelMixin] ## ListAPIView Used for **read-only** endpoints to represent a **collection of model instances**. Provides a `get` method handler. Extends: [GenericAPIView], [ListModelMixin] ## RetrieveAPIView Used for **read-only** endpoints to represent a **single model instance**. Provides a `get` method handler. Extends: [GenericAPIView], [RetrieveModelMixin] ## DestroyAPIView Used for **delete-only** endpoints for a **single model instance**. Provides a `delete` method handler. Extends: [GenericAPIView], [DestroyModelMixin] ## UpdateAPIView Used for **update-only** endpoints for a **single model instance**. Provides `put` and `patch` method handlers. Extends: [GenericAPIView], [UpdateModelMixin] ## ListCreateAPIView Used for **read-write** endpoints to represent a **collection of model instances**. Provides `get` and `post` method handlers. Extends: [GenericAPIView], [ListModelMixin], [CreateModelMixin] ## RetrieveUpdateAPIView Used for **read or update** endpoints to represent a **single model instance**. Provides `get`, `put` and `patch` method handlers. Extends: [GenericAPIView], [RetrieveModelMixin], [UpdateModelMixin] ## RetrieveDestroyAPIView Used for **read or delete** endpoints to represent a **single model instance**. Provides `get` and `delete` method handlers. Extends: [GenericAPIView], [RetrieveModelMixin], [DestroyModelMixin] ## RetrieveUpdateDestroyAPIView Used for **read-write-delete** endpoints to represent a **single model instance**. Provides `get`, `put`, `patch` and `delete` method handlers. Extends: [GenericAPIView], [RetrieveModelMixin], [UpdateModelMixin], [DestroyModelMixin] --- # Customizing the generic views Often you'll want to use the existing generic views, but use some slightly customized behavior. If you find yourself reusing some bit of customized behavior in multiple places, you might want to refactor the behavior into a common class that you can then just apply to any view or viewset as needed. ## Creating custom mixins For example, if you need to lookup objects based on multiple fields in the URL conf, you could create a mixin class like the following: class MultipleFieldLookupMixin(object): """ Apply this mixin to any view or viewset to get multiple field filtering based on a `lookup_fields` attribute, instead of the default single field filtering. """ def get_object(self): queryset = self.get_queryset() # Get the base queryset queryset = self.filter_queryset(queryset) # Apply any filter backends filter = {} for field in self.lookup_fields: filter[field] = self.kwargs[field] return get_object_or_404(queryset, **filter) # Lookup the object You can then simply apply this mixin to a view or viewset anytime you need to apply the custom behavior. class RetrieveUserView(MultipleFieldLookupMixin, generics.RetrieveAPIView): queryset = User.objects.all() serializer_class = UserSerializer lookup_fields = ('account', 'username') Using custom mixins is a good option if you have custom behavior that needs to be used. ## Creating custom base classes If you are using a mixin across multiple views, you can take this a step further and create your own set of base views that can then be used throughout your project. For example: class BaseRetrieveView(MultipleFieldLookupMixin, generics.RetrieveAPIView): pass class BaseRetrieveUpdateDestroyView(MultipleFieldLookupMixin, generics.RetrieveUpdateDestroyAPIView): pass Using custom base classes is a good option if you have custom behavior that consistently needs to be repeated across a large number of views throughout your project. --- # PUT as create Prior to version 3.0 the REST framework mixins treated `PUT` as either an update or a create operation, depending on if the object already existed or not. Allowing `PUT` as create operations is problematic, as it necessarily exposes information about the existence or non-existence of objects. It's also not obvious that transparently allowing re-creating of previously deleted instances is necessarily a better default behavior than simply returning `404` responses. Both styles "`PUT` as 404" and "`PUT` as create" can be valid in different circumstances, but from version 3.0 onwards we now use 404 behavior as the default, due to it being simpler and more obvious. If you need to generic PUT-as-create behavior you may want to include something like [this `AllowPUTAsCreateMixin` class](https://gist.github.com/tomchristie/a2ace4577eff2c603b1b) as a mixin to your views. --- # Third party packages The following third party packages provide additional generic view implementations. ## Django REST Framework bulk The [django-rest-framework-bulk package][django-rest-framework-bulk] implements generic view mixins as well as some common concrete generic views to allow to apply bulk operations via API requests. ## Django Rest Multiple Models [Django Rest Multiple Models][django-rest-multiple-models] provides a generic view (and mixin) for sending multiple serialized models and/or querysets via a single API request. [cite]: https://docs.djangoproject.com/en/dev/ref/class-based-views/#base-vs-generic-views [GenericAPIView]: #genericapiview [ListModelMixin]: #listmodelmixin [CreateModelMixin]: #createmodelmixin [RetrieveModelMixin]: #retrievemodelmixin [UpdateModelMixin]: #updatemodelmixin [DestroyModelMixin]: #destroymodelmixin [django-rest-framework-bulk]: https://github.com/miki725/django-rest-framework-bulk [django-rest-multiple-models]: https://github.com/Axiologue/DjangoRestMultipleModels django-rest-framework-3.3.2/docs/api-guide/metadata.md000066400000000000000000000076461263353514300226470ustar00rootroot00000000000000source: metadata.py # Metadata > [The `OPTIONS`] method allows a client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval. > > — [RFC7231, Section 4.3.7.][cite] REST framework includes a configurable mechanism for determining how your API should respond to `OPTIONS` requests. This allows you to return API schema or other resource information. There are not currently any widely adopted conventions for exactly what style of response should be returned for HTTP `OPTIONS` requests, so we provide an ad-hoc style that returns some useful information. Here's an example response that demonstrates the information that is returned by default. HTTP 200 OK Allow: GET, POST, HEAD, OPTIONS Content-Type: application/json { "name": "To Do List", "description": "List existing 'To Do' items, or create a new item.", "renders": [ "application/json", "text/html" ], "parses": [ "application/json", "application/x-www-form-urlencoded", "multipart/form-data" ], "actions": { "POST": { "note": { "type": "string", "required": false, "read_only": false, "label": "title", "max_length": 100 } } } } ## Setting the metadata scheme You can set the metadata class globally using the `'DEFAULT_METADATA_CLASS'` settings key: REST_FRAMEWORK = { 'DEFAULT_METADATA_CLASS': 'rest_framework.metadata.SimpleMetadata' } Or you can set the metadata class individually for a view: class APIRoot(APIView): metadata_class = APIRootMetadata def get(self, request, format=None): return Response({ ... }) The REST framework package only includes a single metadata class implementation, named `SimpleMetadata`. If you want to use an alternative style you'll need to implement a custom metadata class. ## Creating schema endpoints If you have specific requirements for creating schema endpoints that are accessed with regular `GET` requests, you might consider re-using the metadata API for doing so. For example, the following additional route could be used on a viewset to provide a linkable schema endpoint. @list_route(methods=['GET']) def schema(self, request): meta = self.metadata_class() data = meta.determine_metadata(request, self) return Response(data) There are a couple of reasons that you might choose to take this approach, including that `OPTIONS` responses [are not cacheable][no-options]. --- # Custom metadata classes If you want to provide a custom metadata class you should override `BaseMetadata` and implement the `determine_metadata(self, request, view)` method. Useful things that you might want to do could include returning schema information, using a format such as [JSON schema][json-schema], or returning debug information to admin users. ## Example The following class could be used to limit the information that is returned to `OPTIONS` requests. class MinimalMetadata(BaseMetadata): """ Don't include field and other information for `OPTIONS` requests. Just return the name and description. """ def determine_metadata(self, request, view): return { 'name': view.get_view_name(), 'description': view.get_view_description() } Then configure your settings to use this custom class: REST_FRAMEWORK = { 'DEFAULT_METADATA_CLASS': 'myproject.apps.core.MinimalMetadata' } [cite]: http://tools.ietf.org/html/rfc7231#section-4.3.7 [no-options]: https://www.mnot.net/blog/2012/10/29/NO_OPTIONS [json-schema]: http://json-schema.org/ django-rest-framework-3.3.2/docs/api-guide/pagination.md000066400000000000000000000424571263353514300232170ustar00rootroot00000000000000source: pagination.py # Pagination > Django provides a few classes that help you manage paginated data – that is, data that’s split across several pages, with “Previous/Next” links. > > — [Django documentation][cite] REST framework includes support for customizable pagination styles. This allows you to modify how large result sets are split into individual pages of data. The pagination API can support either: * Pagination links that are provided as part of the content of the response. * Pagination links that are included in response headers, such as `Content-Range` or `Link`. The built-in styles currently all use links included as part of the content of the response. This style is more accessible when using the browsable API. Pagination is only performed automatically if you're using the generic views or viewsets. If you're using a regular `APIView`, you'll need to call into the pagination API yourself to ensure you return a paginated response. See the source code for the `mixins.ListModelMixin` and `generics.GenericAPIView` classes for an example. Pagination can be turned off by setting the pagination class to `None`. ## Setting the pagination style The default pagination style may be set globally, using the `DEFAULT_PAGINATION_CLASS` settings key. For example, to use the built-in limit/offset pagination, you would do: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination' } You can also set the pagination class on an individual view by using the `pagination_class` attribute. Typically you'll want to use the same pagination style throughout your API, although you might want to vary individual aspects of the pagination, such as default or maximum page size, on a per-view basis. ## Modifying the pagination style If you want to modify particular aspects of the pagination style, you'll want to override one of the pagination classes, and set the attributes that you want to change. class LargeResultsSetPagination(PageNumberPagination): page_size = 1000 page_size_query_param = 'page_size' max_page_size = 10000 class StandardResultsSetPagination(PageNumberPagination): page_size = 100 page_size_query_param = 'page_size' max_page_size = 1000 You can then apply your new style to a view using the `.pagination_class` attribute: class BillingRecordsView(generics.ListAPIView): queryset = Billing.objects.all() serializer = BillingRecordsSerializer pagination_class = LargeResultsSetPagination Or apply the style globally, using the `DEFAULT_PAGINATION_CLASS` settings key. For example: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'apps.core.pagination.StandardResultsSetPagination' } --- # API Reference ## PageNumberPagination This pagination style accepts a single number page number in the request query parameters. **Request**: GET https://api.example.org/accounts/?page=4 **Response**: HTTP 200 OK { "count": 1023 "next": "https://api.example.org/accounts/?page=5", "previous": "https://api.example.org/accounts/?page=3", "results": [ … ] } #### Setup To enable the `PageNumberPagination` style globally, use the following configuration, modifying the `PAGE_SIZE` as desired: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'PAGE_SIZE': 100 } On `GenericAPIView` subclasses you may also set the `pagination_class` attribute to select `PageNumberPagination` on a per-view basis. #### Configuration The `PageNumberPagination` class includes a number of attributes that may be overridden to modify the pagination style. To set these attributes you should override the `PageNumberPagination` class, and then enable your custom pagination class as above. * `django_paginator_class` - The Django Paginator class to use. Default is `django.core.paginator.Paginator`, which should be fine for most usecases. * `page_size` - A numeric value indicating the page size. If set, this overrides the `PAGE_SIZE` setting. Defaults to the same value as the `PAGE_SIZE` settings key. * `page_query_param` - A string value indicating the name of the query parameter to use for the pagination control. * `page_size_query_param` - If set, this is a string value indicating the name of a query parameter that allows the client to set the page size on a per-request basis. Defaults to `None`, indicating that the client may not control the requested page size. * `max_page_size` - If set, this is a numeric value indicating the maximum allowable requested page size. This attribute is only valid if `page_size_query_param` is also set. * `last_page_strings` - A list or tuple of string values indicating values that may be used with the `page_query_param` to request the final page in the set. Defaults to `('last',)` * `template` - The name of a template to use when rendering pagination controls in the browsable API. May be overridden to modify the rendering style, or set to `None` to disable HTML pagination controls completely. Defaults to `"rest_framework/pagination/numbers.html"`. --- ## LimitOffsetPagination This pagination style mirrors the syntax used when looking up multiple database records. The client includes both a "limit" and an "offset" query parameter. The limit indicates the maximum number of items to return, and is equivalent to the `page_size` in other styles. The offset indicates the starting position of the query in relation to the complete set of unpaginated items. **Request**: GET https://api.example.org/accounts/?limit=100&offset=400 **Response**: HTTP 200 OK { "count": 1023 "next": "https://api.example.org/accounts/?limit=100&offset=500", "previous": "https://api.example.org/accounts/?limit=100&offset=300", "results": [ … ] } #### Setup To enable the `LimitOffsetPagination` style globally, use the following configuration: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination' } Optionally, you may also set a `PAGE_SIZE` key. If the `PAGE_SIZE` parameter is also used then the `limit` query parameter will be optional, and may be omitted by the client. On `GenericAPIView` subclasses you may also set the `pagination_class` attribute to select `LimitOffsetPagination` on a per-view basis. #### Configuration The `LimitOffsetPagination` class includes a number of attributes that may be overridden to modify the pagination style. To set these attributes you should override the `LimitOffsetPagination` class, and then enable your custom pagination class as above. * `default_limit` - A numeric value indicating the limit to use if one is not provided by the client in a query parameter. Defaults to the same value as the `PAGE_SIZE` settings key. * `limit_query_param` - A string value indicating the name of the "limit" query parameter. Defaults to `'limit'`. * `offset_query_param` - A string value indicating the name of the "offset" query parameter. Defaults to `'offset'`. * `max_limit` - If set this is a numeric value indicating the maximum allowable limit that may be requested by the client. Defaults to `None`. * `template` - The name of a template to use when rendering pagination controls in the browsable API. May be overridden to modify the rendering style, or set to `None` to disable HTML pagination controls completely. Defaults to `"rest_framework/pagination/numbers.html"`. --- ## CursorPagination The cursor-based pagination presents an opaque "cursor" indicator that the client may use to page through the result set. This pagination style only presents forward and reverse controls, and does not allow the client to navigate to arbitrary positions. Cursor based pagination requires that there is a unique, unchanging ordering of items in the result set. This ordering might typically be a creation timestamp on the records, as this presents a consistent ordering to paginate against. Cursor based pagination is more complex than other schemes. It also requires that the result set presents a fixed ordering, and does not allow the client to arbitrarily index into the result set. However it does provide the following benefits: * Provides a consistent pagination view. When used properly `CursorPagination` ensures that the client will never see the same item twice when paging through records, even when new items are being inserted by other clients during the pagination process. * Supports usage with very large datasets. With extremely large datasets pagination using offset-based pagination styles may become inefficient or unusable. Cursor based pagination schemes instead have fixed-time properties, and do not slow down as the dataset size increases. #### Details and limitations Proper use of cursor based pagination requires a little attention to detail. You'll need to think about what ordering you want the scheme to be applied against. The default is to order by `"-created"`. This assumes that **there must be a 'created' timestamp field** on the model instances, and will present a "timeline" style paginated view, with the most recently added items first. You can modify the ordering by overriding the `'ordering'` attribute on the pagination class, or by using the `OrderingFilter` filter class together with `CursorPagination`. When used with `OrderingFilter` you should strongly consider restricting the fields that the user may order by. Proper usage of cursor pagination should have an ordering field that satisfies the following: * Should be an unchanging value, such as a timestamp, slug, or other field that is only set once, on creation. * Should be unique, or nearly unique. Millisecond precision timestamps are a good example. This implementation of cursor pagination uses a smart "position plus offset" style that allows it to properly support not-strictly-unique values as the ordering. * Should be a non-nullable value that can be coerced to a string. * The field should have a database index. Using an ordering field that does not satisfy these constraints will generally still work, but you'll be loosing some of the benefits of cursor pagination. For more technical details on the implementation we use for cursor pagination, the ["Building cursors for the Disqus API"][disqus-cursor-api] blog post gives a good overview of the basic approach. #### Setup To enable the `CursorPagination` style globally, use the following configuration, modifying the `PAGE_SIZE` as desired: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.CursorPagination', 'PAGE_SIZE': 100 } On `GenericAPIView` subclasses you may also set the `pagination_class` attribute to select `CursorPagination` on a per-view basis. #### Configuration The `CursorPagination` class includes a number of attributes that may be overridden to modify the pagination style. To set these attributes you should override the `CursorPagination` class, and then enable your custom pagination class as above. * `page_size` = A numeric value indicating the page size. If set, this overrides the `PAGE_SIZE` setting. Defaults to the same value as the `PAGE_SIZE` settings key. * `cursor_query_param` = A string value indicating the name of the "cursor" query parameter. Defaults to `'cursor'`. * `ordering` = This should be a string, or list of strings, indicating the field against which the cursor based pagination will be applied. For example: `ordering = 'slug'`. Defaults to `-created`. This value may also be overridden by using `OrderingFilter` on the view. * `template` = The name of a template to use when rendering pagination controls in the browsable API. May be overridden to modify the rendering style, or set to `None` to disable HTML pagination controls completely. Defaults to `"rest_framework/pagination/previous_and_next.html"`. --- # Custom pagination styles To create a custom pagination serializer class you should subclass `pagination.BasePagination` and override the `paginate_queryset(self, queryset, request, view=None)` and `get_paginated_response(self, data)` methods: * The `paginate_queryset` method is passed the initial queryset and should return an iterable object that contains only the data in the requested page. * The `get_paginated_response` method is passed the serialized page data and should return a `Response` instance. Note that the `paginate_queryset` method may set state on the pagination instance, that may later be used by the `get_paginated_response` method. ## Example Suppose we want to replace the default pagination output style with a modified format that includes the next and previous links under in a nested 'links' key. We could specify a custom pagination class like so: class CustomPagination(pagination.PageNumberPagination): def get_paginated_response(self, data): return Response({ 'links': { 'next': self.get_next_link(), 'previous': self.get_previous_link() }, 'count': self.page.paginator.count, 'results': data }) We'd then need to setup the custom class in our configuration: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'my_project.apps.core.pagination.CustomPagination', 'PAGE_SIZE': 100 } Note that if you care about how the ordering of keys is displayed in responses in the browsable API you might choose to use an `OrderedDict` when constructing the body of paginated responses, but this is optional. ## Header based pagination Let's modify the built-in `PageNumberPagination` style, so that instead of include the pagination links in the body of the response, we'll instead include a `Link` header, in a [similar style to the GitHub API][github-link-pagination]. class LinkHeaderPagination(pagination.PageNumberPagination): def get_paginated_response(self, data): next_url = self.get_next_link() previous_url = self.get_previous_link() if next_url is not None and previous_url is not None: link = '<{next_url}>; rel="next", <{previous_url}>; rel="prev"' elif next_url is not None: link = '<{next_url}>; rel="next"' elif previous_url is not None: link = '<{previous_url}>; rel="prev"' else: link = '' link = link.format(next_url=next_url, previous_url=previous_url) headers = {'Link': link} if link else {} return Response(data, headers=headers) ## Using your custom pagination class To have your custom pagination class be used by default, use the `DEFAULT_PAGINATION_CLASS` setting: REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'my_project.apps.core.pagination.LinkHeaderPagination', 'PAGE_SIZE': 100 } API responses for list endpoints will now include a `Link` header, instead of including the pagination links as part of the body of the response, for example: --- ![Link Header][link-header] *A custom pagination style, using the 'Link' header'* --- # HTML pagination controls By default using the pagination classes will cause HTML pagination controls to be displayed in the browsable API. There are two built-in display styles. The `PageNumberPagination` and `LimitOffsetPagination` classes display a list of page numbers with previous and next controls. The `CursorPagination` class displays a simpler style that only displays a previous and next control. ## Customizing the controls You can override the templates that render the HTML pagination controls. The two built-in styles are: * `rest_framework/pagination/numbers.html` * `rest_framework/pagination/previous_and_next.html` Providing a template with either of these paths in a global template directory will override the default rendering for the relevant pagination classes. Alternatively you can disable HTML pagination controls completely by subclassing on of the existing classes, setting `template = None` as an attribute on the class. You'll then need to configure your `DEFAULT_PAGINATION_CLASS` settings key to use your custom class as the default pagination style. #### Low-level API The low-level API for determining if a pagination class should display the controls or not is exposed as a `display_page_controls` attribute on the pagination instance. Custom pagination classes should be set to `True` in the `paginate_queryset` method if they require the HTML pagination controls to be displayed. The `.to_html()` and `.get_html_context()` methods may also be overridden in a custom pagination class in order to further customize how the controls are rendered. --- # Third party packages The following third party packages are also available. ## DRF-extensions The [`DRF-extensions` package][drf-extensions] includes a [`PaginateByMaxMixin` mixin class][paginate-by-max-mixin] that allows your API clients to specify `?page_size=max` to obtain the maximum allowed page size. [cite]: https://docs.djangoproject.com/en/dev/topics/pagination/ [github-link-pagination]: https://developer.github.com/guides/traversing-with-pagination/ [link-header]: ../img/link-header-pagination.png [drf-extensions]: http://chibisov.github.io/drf-extensions/docs/ [paginate-by-max-mixin]: http://chibisov.github.io/drf-extensions/docs/#paginatebymaxmixin [disqus-cursor-api]: http://cramer.io/2011/03/08/building-cursors-for-the-disqus-api/ django-rest-framework-3.3.2/docs/api-guide/parsers.md000066400000000000000000000211761263353514300225400ustar00rootroot00000000000000source: parsers.py # Parsers > Machine interacting web services tend to use more structured formats for sending data than form-encoded, since they're sending more complex data than simple forms > > — Malcom Tredinnick, [Django developers group][cite] REST framework includes a number of built in Parser classes, that allow you to accept requests with various media types. There is also support for defining your own custom parsers, which gives you the flexibility to design the media types that your API accepts. ## How the parser is determined The set of valid parsers for a view is always defined as a list of classes. When `request.data` is accessed, REST framework will examine the `Content-Type` header on the incoming request, and determine which parser to use to parse the request content. --- **Note**: When developing client applications always remember to make sure you're setting the `Content-Type` header when sending data in an HTTP request. If you don't set the content type, most clients will default to using `'application/x-www-form-urlencoded'`, which may not be what you wanted. As an example, if you are sending `json` encoded data using jQuery with the [.ajax() method][jquery-ajax], you should make sure to include the `contentType: 'application/json'` setting. --- ## Setting the parsers The default set of parsers may be set globally, using the `DEFAULT_PARSER_CLASSES` setting. For example, the following settings would allow only requests with `JSON` content, instead of the default of JSON or form data. REST_FRAMEWORK = { 'DEFAULT_PARSER_CLASSES': ( 'rest_framework.parsers.JSONParser', ) } You can also set the parsers used for an individual view, or viewset, using the `APIView` class based views. from rest_framework.parsers import JSONParser from rest_framework.response import Response from rest_framework.views import APIView class ExampleView(APIView): """ A view that can accept POST requests with JSON content. """ parser_classes = (JSONParser,) def post(self, request, format=None): return Response({'received data': request.data}) Or, if you're using the `@api_view` decorator with function based views. from rest_framework.decorators import api_view from rest_framework.decorators import parser_classes @api_view(['POST']) @parser_classes((JSONParser,)) def example_view(request, format=None): """ A view that can accept POST requests with JSON content. """ return Response({'received data': request.data}) --- # API Reference ## JSONParser Parses `JSON` request content. **.media_type**: `application/json` ## FormParser Parses HTML form content. `request.data` will be populated with a `QueryDict` of data. You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data. **.media_type**: `application/x-www-form-urlencoded` ## MultiPartParser Parses multipart HTML form content, which supports file uploads. Both `request.data` will be populated with a `QueryDict`. You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data. **.media_type**: `multipart/form-data` ## FileUploadParser Parses raw file upload content. The `request.data` property will be a dictionary with a single key `'file'` containing the uploaded file. If the view used with `FileUploadParser` is called with a `filename` URL keyword argument, then that argument will be used as the filename. If it is called without a `filename` URL keyword argument, then the client must set the filename in the `Content-Disposition` HTTP header. For example `Content-Disposition: attachment; filename=upload.jpg`. **.media_type**: `*/*` ##### Notes: * The `FileUploadParser` is for usage with native clients that can upload the file as a raw data request. For web-based uploads, or for native clients with multipart upload support, you should use the `MultiPartParser` parser instead. * Since this parser's `media_type` matches any content type, `FileUploadParser` should generally be the only parser set on an API view. * `FileUploadParser` respects Django's standard `FILE_UPLOAD_HANDLERS` setting, and the `request.upload_handlers` attribute. See the [Django documentation][upload-handlers] for more details. ##### Basic usage example: class FileUploadView(views.APIView): parser_classes = (FileUploadParser,) def put(self, request, filename, format=None): file_obj = request.data['file'] # ... # do some stuff with uploaded file # ... return Response(status=204) --- # Custom parsers To implement a custom parser, you should override `BaseParser`, set the `.media_type` property, and implement the `.parse(self, stream, media_type, parser_context)` method. The method should return the data that will be used to populate the `request.data` property. The arguments passed to `.parse()` are: ### stream A stream-like object representing the body of the request. ### media_type Optional. If provided, this is the media type of the incoming request content. Depending on the request's `Content-Type:` header, this may be more specific than the renderer's `media_type` attribute, and may include media type parameters. For example `"text/plain; charset=utf-8"`. ### parser_context Optional. If supplied, this argument will be a dictionary containing any additional context that may be required to parse the request content. By default this will include the following keys: `view`, `request`, `args`, `kwargs`. ## Example The following is an example plaintext parser that will populate the `request.data` property with a string representing the body of the request. class PlainTextParser(BaseParser): """ Plain text parser. """ media_type = 'text/plain' def parse(self, stream, media_type=None, parser_context=None): """ Simply return a string representing the body of the request. """ return stream.read() --- # Third party packages The following third party packages are also available. ## YAML [REST framework YAML][rest-framework-yaml] provides [YAML][yaml] parsing and rendering support. It was previously included directly in the REST framework package, and is now instead supported as a third-party package. #### Installation & configuration Install using pip. $ pip install djangorestframework-yaml Modify your REST framework settings. REST_FRAMEWORK = { 'DEFAULT_PARSER_CLASSES': ( 'rest_framework_yaml.parsers.YAMLParser', ), 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework_yaml.renderers.YAMLRenderer', ), } ## XML [REST Framework XML][rest-framework-xml] provides a simple informal XML format. It was previously included directly in the REST framework package, and is now instead supported as a third-party package. #### Installation & configuration Install using pip. $ pip install djangorestframework-xml Modify your REST framework settings. REST_FRAMEWORK = { 'DEFAULT_PARSER_CLASSES': ( 'rest_framework_xml.parsers.XMLParser', ), 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework_xml.renderers.XMLRenderer', ), } ## MessagePack [MessagePack][messagepack] is a fast, efficient binary serialization format. [Juan Riaza][juanriaza] maintains the [djangorestframework-msgpack][djangorestframework-msgpack] package which provides MessagePack renderer and parser support for REST framework. ## CamelCase JSON [djangorestframework-camel-case] provides camel case JSON renderers and parsers for REST framework. This allows serializers to use Python-style underscored field names, but be exposed in the API as Javascript-style camel case field names. It is maintained by [Vitaly Babiy][vbabiy]. [jquery-ajax]: http://api.jquery.com/jQuery.ajax/ [cite]: https://groups.google.com/d/topic/django-developers/dxI4qVzrBY4/discussion [upload-handlers]: https://docs.djangoproject.com/en/dev/topics/http/file-uploads/#upload-handlers [rest-framework-yaml]: http://jpadilla.github.io/django-rest-framework-yaml/ [rest-framework-xml]: http://jpadilla.github.io/django-rest-framework-xml/ [yaml]: http://www.yaml.org/ [messagepack]: https://github.com/juanriaza/django-rest-framework-msgpack [juanriaza]: https://github.com/juanriaza [vbabiy]: https://github.com/vbabiy [djangorestframework-msgpack]: https://github.com/juanriaza/django-rest-framework-msgpack [djangorestframework-camel-case]: https://github.com/vbabiy/djangorestframework-camel-case django-rest-framework-3.3.2/docs/api-guide/permissions.md000066400000000000000000000361161263353514300234340ustar00rootroot00000000000000source: permissions.py # Permissions > Authentication or identification by itself is not usually sufficient to gain access to information or code. For that, the entity requesting access must have authorization. > > — [Apple Developer Documentation][cite] Together with [authentication] and [throttling], permissions determine whether a request should be granted or denied access. Permission checks are always run at the very start of the view, before any other code is allowed to proceed. Permission checks will typically use the authentication information in the `request.user` and `request.auth` properties to determine if the incoming request should be permitted. Permissions are used to grant or deny access different classes of users to different parts of the API. The simplest style of permission would be to allow access to any authenticated user, and deny access to any unauthenticated user. This corresponds the `IsAuthenticated` class in REST framework. A slightly less strict style of permission would be to allow full access to authenticated users, but allow read-only access to unauthenticated users. This corresponds to the `IsAuthenticatedOrReadOnly` class in REST framework. ## How permissions are determined Permissions in REST framework are always defined as a list of permission classes. Before running the main body of the view each permission in the list is checked. If any permission check fails an `exceptions.PermissionDenied` or `exceptions.NotAuthenticated` exception will be raised, and the main body of the view will not run. When the permissions checks fail either a "403 Forbidden" or a "401 Unauthorized" response will be returned, according to the following rules: * The request was successfully authenticated, but permission was denied. *— An HTTP 403 Forbidden response will be returned.* * The request was not successfully authenticated, and the highest priority authentication class *does not* use `WWW-Authenticate` headers. *— An HTTP 403 Forbidden response will be returned.* * The request was not successfully authenticated, and the highest priority authentication class *does* use `WWW-Authenticate` headers. *— An HTTP 401 Unauthorized response, with an appropriate `WWW-Authenticate` header will be returned.* ## Object level permissions REST framework permissions also support object-level permissioning. Object level permissions are used to determine if a user should be allowed to act on a particular object, which will typically be a model instance. Object level permissions are run by REST framework's generic views when `.get_object()` is called. As with view level permissions, an `exceptions.PermissionDenied` exception will be raised if the user is not allowed to act on the given object. If you're writing your own views and want to enforce object level permissions, or if you override the `get_object` method on a generic view, then you'll need to explicitly call the `.check_object_permissions(request, obj)` method on the view at the point at which you've retrieved the object. This will either raise a `PermissionDenied` or `NotAuthenticated` exception, or simply return if the view has the appropriate permissions. For example: def get_object(self): obj = get_object_or_404(self.get_queryset()) self.check_object_permissions(self.request, obj) return obj #### Limitations of object level permissions For performance reasons the generic views will not automatically apply object level permissions to each instance in a queryset when returning a list of objects. Often when you're using object level permissions you'll also want to [filter the queryset][filtering] appropriately, to ensure that users only have visibility onto instances that they are permitted to view. ## Setting the permission policy The default permission policy may be set globally, using the `DEFAULT_PERMISSION_CLASSES` setting. For example. REST_FRAMEWORK = { 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.IsAuthenticated', ) } If not specified, this setting defaults to allowing unrestricted access: 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.AllowAny', ) You can also set the authentication policy on a per-view, or per-viewset basis, using the `APIView` class based views. from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response from rest_framework.views import APIView class ExampleView(APIView): permission_classes = (IsAuthenticated,) def get(self, request, format=None): content = { 'status': 'request was permitted' } return Response(content) Or, if you're using the `@api_view` decorator with function based views. from rest_framework.decorators import api_view, permission_classes from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response @api_view('GET') @permission_classes((IsAuthenticated, )) def example_view(request, format=None): content = { 'status': 'request was permitted' } return Response(content) --- # API Reference ## AllowAny The `AllowAny` permission class will allow unrestricted access, **regardless of if the request was authenticated or unauthenticated**. This permission is not strictly required, since you can achieve the same result by using an empty list or tuple for the permissions setting, but you may find it useful to specify this class because it makes the intention explicit. ## IsAuthenticated The `IsAuthenticated` permission class will deny permission to any unauthenticated user, and allow permission otherwise. This permission is suitable if you want your API to only be accessible to registered users. ## IsAdminUser The `IsAdminUser` permission class will deny permission to any user, unless `user.is_staff` is `True` in which case permission will be allowed. This permission is suitable if you want your API to only be accessible to a subset of trusted administrators. ## IsAuthenticatedOrReadOnly The `IsAuthenticatedOrReadOnly` will allow authenticated users to perform any request. Requests for unauthorised users will only be permitted if the request method is one of the "safe" methods; `GET`, `HEAD` or `OPTIONS`. This permission is suitable if you want to your API to allow read permissions to anonymous users, and only allow write permissions to authenticated users. ## DjangoModelPermissions This permission class ties into Django's standard `django.contrib.auth` [model permissions][contribauth]. This permission must only be applied to views that has a `.queryset` property set. Authorization will only be granted if the user *is authenticated* and has the *relevant model permissions* assigned. * `POST` requests require the user to have the `add` permission on the model. * `PUT` and `PATCH` requests require the user to have the `change` permission on the model. * `DELETE` requests require the user to have the `delete` permission on the model. The default behaviour can also be overridden to support custom model permissions. For example, you might want to include a `view` model permission for `GET` requests. To use custom model permissions, override `DjangoModelPermissions` and set the `.perms_map` property. Refer to the source code for details. #### Using with views that do not include a `queryset` attribute. If you're using this permission with a view that uses an overridden `get_queryset()` method there may not be a `queryset` attribute on the view. In this case we suggest also marking the view with a sential queryset, so that this class can determine the required permissions. For example: queryset = User.objects.none() # Required for DjangoModelPermissions ## DjangoModelPermissionsOrAnonReadOnly Similar to `DjangoModelPermissions`, but also allows unauthenticated users to have read-only access to the API. ## DjangoObjectPermissions This permission class ties into Django's standard [object permissions framework][objectpermissions] that allows per-object permissions on models. In order to use this permission class, you'll also need to add a permission backend that supports object-level permissions, such as [django-guardian][guardian]. As with `DjangoModelPermissions`, this permission must only be applied to views that have a `.queryset` property or `.get_queryset()` method. Authorization will only be granted if the user *is authenticated* and has the *relevant per-object permissions* and *relevant model permissions* assigned. * `POST` requests require the user to have the `add` permission on the model instance. * `PUT` and `PATCH` requests require the user to have the `change` permission on the model instance. * `DELETE` requests require the user to have the `delete` permission on the model instance. Note that `DjangoObjectPermissions` **does not** require the `django-guardian` package, and should support other object-level backends equally well. As with `DjangoModelPermissions` you can use custom model permissions by overriding `DjangoModelPermissions` and setting the `.perms_map` property. Refer to the source code for details. --- **Note**: If you need object level `view` permissions for `GET`, `HEAD` and `OPTIONS` requests, you'll want to consider also adding the `DjangoObjectPermissionsFilter` class to ensure that list endpoints only return results including objects for which the user has appropriate view permissions. --- --- # Custom permissions To implement a custom permission, override `BasePermission` and implement either, or both, of the following methods: * `.has_permission(self, request, view)` * `.has_object_permission(self, request, view, obj)` The methods should return `True` if the request should be granted access, and `False` otherwise. If you need to test if a request is a read operation or a write operation, you should check the request method against the constant `SAFE_METHODS`, which is a tuple containing `'GET'`, `'OPTIONS'` and `'HEAD'`. For example: if request.method in permissions.SAFE_METHODS: # Check permissions for read-only request else: # Check permissions for write request --- **Note**: The instance-level `has_object_permission` method will only be called if the view-level `has_permission` checks have already passed. Also note that in order for the instance-level checks to run, the view code should explicitly call `.check_object_permissions(request, obj)`. If you are using the generic views then this will be handled for you by default. --- Custom permissions will raise a `PermissionDenied` exception if the test fails. To change the error message associated with the exception, implement a `message` attribute directly on your custom permission. Otherwise the `default_detail` attribute from `PermissionDenied` will be used. from rest_framework import permissions class CustomerAccessPermission(permissions.BasePermission): message = 'Adding customers not allowed.' def has_permission(self, request, view): ... ## Examples The following is an example of a permission class that checks the incoming request's IP address against a blacklist, and denies the request if the IP has been blacklisted. from rest_framework import permissions class BlacklistPermission(permissions.BasePermission): """ Global permission check for blacklisted IPs. """ def has_permission(self, request, view): ip_addr = request.META['REMOTE_ADDR'] blacklisted = Blacklist.objects.filter(ip_addr=ip_addr).exists() return not blacklisted As well as global permissions, that are run against all incoming requests, you can also create object-level permissions, that are only run against operations that affect a particular object instance. For example: class IsOwnerOrReadOnly(permissions.BasePermission): """ Object-level permission to only allow owners of an object to edit it. Assumes the model instance has an `owner` attribute. """ def has_object_permission(self, request, view, obj): # Read permissions are allowed to any request, # so we'll always allow GET, HEAD or OPTIONS requests. if request.method in permissions.SAFE_METHODS: return True # Instance must have an attribute named `owner`. return obj.owner == request.user Note that the generic views will check the appropriate object level permissions, but if you're writing your own custom views, you'll need to make sure you check the object level permission checks yourself. You can do so by calling `self.check_object_permissions(request, obj)` from the view once you have the object instance. This call will raise an appropriate `APIException` if any object-level permission checks fail, and will otherwise simply return. Also note that the generic views will only check the object-level permissions for views that retrieve a single model instance. If you require object-level filtering of list views, you'll need to filter the queryset separately. See the [filtering documentation][filtering] for more details. --- # Third party packages The following third party packages are also available. ## Composed Permissions The [Composed Permissions][composed-permissions] package provides a simple way to define complex and multi-depth (with logic operators) permission objects, using small and reusable components. ## REST Condition The [REST Condition][rest-condition] package is another extension for building complex permissions in a simple and convenient way. The extension allows you to combine permissions with logical operators. ## DRY Rest Permissions The [DRY Rest Permissions][dry-rest-permissions] package provides the ability to define different permissions for individual default and custom actions. This package is made for apps with permissions that are derived from relationships defined in the app's data model. It also supports permission checks being returned to a client app through the API's serializer. Additionally it supports adding permissions to the default and custom list actions to restrict the data they retrive per user. [cite]: https://developer.apple.com/library/mac/#documentation/security/Conceptual/AuthenticationAndAuthorizationGuide/Authorization/Authorization.html [authentication]: authentication.md [throttling]: throttling.md [filtering]: filtering.md [contribauth]: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#custom-permissions [objectpermissions]: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#handling-object-permissions [guardian]: https://github.com/lukaszb/django-guardian [get_objects_for_user]: http://pythonhosted.org/django-guardian/api/guardian.shortcuts.html#get-objects-for-user [2.2-announcement]: ../topics/2.2-announcement.md [filtering]: filtering.md [drf-any-permissions]: https://github.com/kevin-brown/drf-any-permissions [composed-permissions]: https://github.com/niwibe/djangorestframework-composed-permissions [rest-condition]: https://github.com/caxap/rest_condition [dry-rest-permissions]: https://github.com/Helioscene/dry-rest-permissions django-rest-framework-3.3.2/docs/api-guide/relations.md000066400000000000000000000601711263353514300230570ustar00rootroot00000000000000source: relations.py # Serializer relations > Bad programmers worry about the code. > Good programmers worry about data structures and their relationships. > > — [Linus Torvalds][cite] Relational fields are used to represent model relationships. They can be applied to `ForeignKey`, `ManyToManyField` and `OneToOneField` relationships, as well as to reverse relationships, and custom relationships such as `GenericForeignKey`. --- **Note:** The relational fields are declared in `relations.py`, but by convention you should import them from the `serializers` module, using `from rest_framework import serializers` and refer to fields as `serializers.`. --- #### Inspecting relationships. When using the `ModelSerializer` class, serializer fields and relationships will be automatically generated for you. Inspecting these automatically generated fields can be a useful tool for determining how to customize the relationship style. To do so, open the Django shell, using `python manage.py shell`, then import the serializer class, instantiate it, and print the object representation… >>> from myapp.serializers import AccountSerializer >>> serializer = AccountSerializer() >>> print repr(serializer) # Or `print(repr(serializer))` in Python 3.x. AccountSerializer(): id = IntegerField(label='ID', read_only=True) name = CharField(allow_blank=True, max_length=100, required=False) owner = PrimaryKeyRelatedField(queryset=User.objects.all()) # API Reference In order to explain the various types of relational fields, we'll use a couple of simple models for our examples. Our models will be for music albums, and the tracks listed on each album. class Album(models.Model): album_name = models.CharField(max_length=100) artist = models.CharField(max_length=100) class Track(models.Model): album = models.ForeignKey(Album, related_name='tracks') order = models.IntegerField() title = models.CharField(max_length=100) duration = models.IntegerField() class Meta: unique_together = ('album', 'order') ordering = ['order'] def __unicode__(self): return '%d: %s' % (self.order, self.title) ## StringRelatedField `StringRelatedField` may be used to represent the target of the relationship using its `__unicode__` method. For example, the following serializer. class AlbumSerializer(serializers.ModelSerializer): tracks = serializers.StringRelatedField(many=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Would serialize to the following representation. { 'album_name': 'Things We Lost In The Fire', 'artist': 'Low', 'tracks': [ '1: Sunflower', '2: Whitetail', '3: Dinosaur Act', ... ] } This field is read only. **Arguments**: * `many` - If applied to a to-many relationship, you should set this argument to `True`. ## PrimaryKeyRelatedField `PrimaryKeyRelatedField` may be used to represent the target of the relationship using its primary key. For example, the following serializer: class AlbumSerializer(serializers.ModelSerializer): tracks = serializers.PrimaryKeyRelatedField(many=True, read_only=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Would serialize to a representation like this: { 'album_name': 'The Roots', 'artist': 'Undun', 'tracks': [ 89, 90, 91, ... ] } By default this field is read-write, although you can change this behavior using the `read_only` flag. **Arguments**: * `queryset` - The queryset used for model instance lookups when validating the field input. Relationships must either set a queryset explicitly, or set `read_only=True`. * `many` - If applied to a to-many relationship, you should set this argument to `True`. * `allow_null` - If set to `True`, the field will accept values of `None` or the empty string for nullable relationships. Defaults to `False`. * `pk_field` - Set to a field to control serialization/deserialization of the primary key's value. For example, `pk_field=UUIDField(format='hex')` would serialize a UUID primary key into its compact hex representation. ## HyperlinkedRelatedField `HyperlinkedRelatedField` may be used to represent the target of the relationship using a hyperlink. For example, the following serializer: class AlbumSerializer(serializers.ModelSerializer): tracks = serializers.HyperlinkedRelatedField( many=True, read_only=True, view_name='track-detail' ) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Would serialize to a representation like this: { 'album_name': 'Graceland', 'artist': 'Paul Simon', 'tracks': [ 'http://www.example.com/api/tracks/45/', 'http://www.example.com/api/tracks/46/', 'http://www.example.com/api/tracks/47/', ... ] } By default this field is read-write, although you can change this behavior using the `read_only` flag. --- **Note**: This field is designed for objects that map to a URL that accepts a single URL keyword argument, as set using the `lookup_field` and `lookup_url_kwarg` arguments. This is suitable for URLs that contain a single primary key or slug argument as part of the URL. If you require more complex hyperlinked representation you'll need to customize the field, as described in the [custom hyperlinked fields](#custom-hyperlinked-fields) section, below. --- **Arguments**: * `view_name` - The view name that should be used as the target of the relationship. If you're using [the standard router classes][routers] this will be a string with the format `-detail`. **required**. * `queryset` - The queryset used for model instance lookups when validating the field input. Relationships must either set a queryset explicitly, or set `read_only=True`. * `many` - If applied to a to-many relationship, you should set this argument to `True`. * `allow_null` - If set to `True`, the field will accept values of `None` or the empty string for nullable relationships. Defaults to `False`. * `lookup_field` - The field on the target that should be used for the lookup. Should correspond to a URL keyword argument on the referenced view. Default is `'pk'`. * `lookup_url_kwarg` - The name of the keyword argument defined in the URL conf that corresponds to the lookup field. Defaults to using the same value as `lookup_field`. * `format` - If using format suffixes, hyperlinked fields will use the same format suffix for the target unless overridden by using the `format` argument. ## SlugRelatedField `SlugRelatedField` may be used to represent the target of the relationship using a field on the target. For example, the following serializer: class AlbumSerializer(serializers.ModelSerializer): tracks = serializers.SlugRelatedField( many=True, read_only=True, slug_field='title' ) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Would serialize to a representation like this: { 'album_name': 'Dear John', 'artist': 'Loney Dear', 'tracks': [ 'Airport Surroundings', 'Everything Turns to You', 'I Was Only Going Out', ... ] } By default this field is read-write, although you can change this behavior using the `read_only` flag. When using `SlugRelatedField` as a read-write field, you will normally want to ensure that the slug field corresponds to a model field with `unique=True`. **Arguments**: * `slug_field` - The field on the target that should be used to represent it. This should be a field that uniquely identifies any given instance. For example, `username`. **required** * `queryset` - The queryset used for model instance lookups when validating the field input. Relationships must either set a queryset explicitly, or set `read_only=True`. * `many` - If applied to a to-many relationship, you should set this argument to `True`. * `allow_null` - If set to `True`, the field will accept values of `None` or the empty string for nullable relationships. Defaults to `False`. ## HyperlinkedIdentityField This field can be applied as an identity relationship, such as the `'url'` field on a HyperlinkedModelSerializer. It can also be used for an attribute on the object. For example, the following serializer: class AlbumSerializer(serializers.HyperlinkedModelSerializer): track_listing = serializers.HyperlinkedIdentityField(view_name='track-list') class Meta: model = Album fields = ('album_name', 'artist', 'track_listing') Would serialize to a representation like this: { 'album_name': 'The Eraser', 'artist': 'Thom Yorke', 'track_listing': 'http://www.example.com/api/track_list/12/', } This field is always read-only. **Arguments**: * `view_name` - The view name that should be used as the target of the relationship. If you're using [the standard router classes][routers] this will be a string with the format `-detail`. **required**. * `lookup_field` - The field on the target that should be used for the lookup. Should correspond to a URL keyword argument on the referenced view. Default is `'pk'`. * `lookup_url_kwarg` - The name of the keyword argument defined in the URL conf that corresponds to the lookup field. Defaults to using the same value as `lookup_field`. * `format` - If using format suffixes, hyperlinked fields will use the same format suffix for the target unless overridden by using the `format` argument. --- # Nested relationships Nested relationships can be expressed by using serializers as fields. If the field is used to represent a to-many relationship, you should add the `many=True` flag to the serializer field. ## Example For example, the following serializer: class TrackSerializer(serializers.ModelSerializer): class Meta: model = Track fields = ('order', 'title', 'duration') class AlbumSerializer(serializers.ModelSerializer): tracks = TrackSerializer(many=True, read_only=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Would serialize to a nested representation like this: >>> album = Album.objects.create(album_name="The Grey Album", artist='Danger Mouse') >>> Track.objects.create(album=album, order=1, title='Public Service Announcement', duration=245) >>> Track.objects.create(album=album, order=2, title='What More Can I Say', duration=264) >>> Track.objects.create(album=album, order=3, title='Encore', duration=159) >>> serializer = AlbumSerializer(instance=album) >>> serializer.data { 'album_name': 'The Grey Album', 'artist': 'Danger Mouse', 'tracks': [ {'order': 1, 'title': 'Public Service Announcement', 'duration': 245}, {'order': 2, 'title': 'What More Can I Say', 'duration': 264}, {'order': 3, 'title': 'Encore', 'duration': 159}, ... ], } # Writable nested serializers By default nested serializers are read-only. If you want to support write-operations to a nested serializer field you'll need to create `create()` and/or `update()` methods in order to explicitly specify how the child relationships should be saved. class TrackSerializer(serializers.ModelSerializer): class Meta: model = Track fields = ('order', 'title', 'duration') class AlbumSerializer(serializers.ModelSerializer): tracks = TrackSerializer(many=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') def create(self, validated_data): tracks_data = validated_data.pop('tracks') album = Album.objects.create(**validated_data) for track_data in tracks_data: Track.objects.create(album=album, **track_data) return album >>> data = { 'album_name': 'The Grey Album', 'artist': 'Danger Mouse', 'tracks': [ {'order': 1, 'title': 'Public Service Announcement', 'duration': 245}, {'order': 2, 'title': 'What More Can I Say', 'duration': 264}, {'order': 3, 'title': 'Encore', 'duration': 159}, ], } >>> serializer = AlbumSerializer(data=data) >>> serializer.is_valid() True >>> serializer.save() # Custom relational fields To implement a custom relational field, you should override `RelatedField`, and implement the `.to_representation(self, value)` method. This method takes the target of the field as the `value` argument, and should return the representation that should be used to serialize the target. The `value` argument will typically be a model instance. If you want to implement a read-write relational field, you must also implement the `.to_internal_value(self, data)` method. ## Example For example, we could define a relational field to serialize a track to a custom string representation, using its ordering, title, and duration. import time class TrackListingField(serializers.RelatedField): def to_representation(self, value): duration = time.strftime('%M:%S', time.gmtime(value.duration)) return 'Track %d: %s (%s)' % (value.order, value.name, duration) class AlbumSerializer(serializers.ModelSerializer): tracks = TrackListingField(many=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') This custom field would then serialize to the following representation. { 'album_name': 'Sometimes I Wish We Were an Eagle', 'artist': 'Bill Callahan', 'tracks': [ 'Track 1: Jim Cain (04:39)', 'Track 2: Eid Ma Clack Shaw (04:19)', 'Track 3: The Wind and the Dove (04:34)', ... ] } --- # Custom hyperlinked fields In some cases you may need to customize the behavior of a hyperlinked field, in order to represent URLs that require more than a single lookup field. You can achieve this by overriding `HyperlinkedRelatedField`. There are two methods that may be overridden: **get_url(self, obj, view_name, request, format)** The `get_url` method is used to map the object instance to its URL representation. May raise a `NoReverseMatch` if the `view_name` and `lookup_field` attributes are not configured to correctly match the URL conf. **get_object(self, queryset, view_name, view_args, view_kwargs)** If you want to support a writable hyperlinked field then you'll also want to override `get_object`, in order to map incoming URLs back to the object they represent. For read-only hyperlinked fields there is no need to override this method. The return value of this method should the object that corresponds to the matched URL conf arguments. May raise an `ObjectDoesNotExist` exception. ## Example Say we have a URL for a customer object that takes two keyword arguments, like so: /api//customers// This cannot be represented with the default implementation, which accepts only a single lookup field. In this case we'd need to override `HyperlinkedRelatedField` to get the behavior we want: from rest_framework import serializers from rest_framework.reverse import reverse class CustomerHyperlink(serializers.HyperlinkedRelatedField): # We define these as class attributes, so we don't need to pass them as arguments. view_name = 'customer-detail' queryset = Customer.objects.all() def get_url(self, obj, view_name, request, format): url_kwargs = { 'organization_slug': obj.organization.slug, 'customer_pk': obj.pk } return reverse(view_name, kwargs=url_kwargs, request=request, format=format) def get_object(self, view_name, view_args, view_kwargs): lookup_kwargs = { 'organization__slug': view_kwargs['organization_slug'], 'pk': view_kwargs['customer_pk'] } return self.get_queryset().get(**lookup_kwargs) Note that if you wanted to use this style together with the generic views then you'd also need to override `.get_object` on the view in order to get the correct lookup behavior. Generally we recommend a flat style for API representations where possible, but the nested URL style can also be reasonable when used in moderation. --- # Further notes ## The `queryset` argument The `queryset` argument is only ever required for *writable* relationship field, in which case it is used for performing the model instance lookup, that maps from the primitive user input, into a model instance. In version 2.x a serializer class could *sometimes* automatically determine the `queryset` argument *if* a `ModelSerializer` class was being used. This behavior is now replaced with *always* using an explicit `queryset` argument for writable relational fields. Doing so reduces the amount of hidden 'magic' that `ModelSerializer` provides, makes the behavior of the field more clear, and ensures that it is trivial to move between using the `ModelSerializer` shortcut, or using fully explicit `Serializer` classes. ## Customizing the HTML display The built-in `__str__` method of the model will be used to generate string representations of the objects used to populate the `choices` property. These choices are used to populate select HTML inputs in the browsable API. To provide customized representations for such inputs, override `display_value()` of a `RelatedField` subclass. This method will receive a model object, and should return a string suitable for representing it. For example: class TrackPrimaryKeyRelatedField(serializers.PrimaryKeyRelatedField): def display_value(self, instance): return 'Track: %s' % (instance.title) ## Select field cutoffs When rendered in the browsable API relational fields will default to only displaying a maximum of 1000 selectable items. If more items are present then a disabled option with "More than 1000 items…" will be displayed. This behavior is intended to prevent a template from being unable to render in an acceptable timespan due to a very large number of relationships being displayed. There are two keyword arguments you can use to control this behavior: - `html_cutoff` - If set this will be the maximum number of choices that will be displayed by a HTML select drop down. Set to `None` to disable any limiting. Defaults to `1000`. - `html_cutoff_text` - If set this will display a textual indicator if the maximum number of items have been cutoff in an HTML select drop down. Defaults to `"More than {count} items…"` In cases where the cutoff is being enforced you may want to instead use a plain input field in the HTML form. You can do so using the `style` keyword argument. For example: assigned_to = serializers.SlugRelatedField( queryset=User.objects.all(), slug field='username', style={'base_template': 'input.html'} ) ## Reverse relations Note that reverse relationships are not automatically included by the `ModelSerializer` and `HyperlinkedModelSerializer` classes. To include a reverse relationship, you must explicitly add it to the fields list. For example: class AlbumSerializer(serializers.ModelSerializer): class Meta: fields = ('tracks', ...) You'll normally want to ensure that you've set an appropriate `related_name` argument on the relationship, that you can use as the field name. For example: class Track(models.Model): album = models.ForeignKey(Album, related_name='tracks') ... If you have not set a related name for the reverse relationship, you'll need to use the automatically generated related name in the `fields` argument. For example: class AlbumSerializer(serializers.ModelSerializer): class Meta: fields = ('track_set', ...) See the Django documentation on [reverse relationships][reverse-relationships] for more details. ## Generic relationships If you want to serialize a generic foreign key, you need to define a custom field, to determine explicitly how you want serialize the targets of the relationship. For example, given the following model for a tag, which has a generic relationship with other arbitrary models: class TaggedItem(models.Model): """ Tags arbitrary model instances using a generic relation. See: https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/ """ tag_name = models.SlugField() content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() tagged_object = GenericForeignKey('content_type', 'object_id') def __unicode__(self): return self.tag_name And the following two models, which may be have associated tags: class Bookmark(models.Model): """ A bookmark consists of a URL, and 0 or more descriptive tags. """ url = models.URLField() tags = GenericRelation(TaggedItem) class Note(models.Model): """ A note consists of some text, and 0 or more descriptive tags. """ text = models.CharField(max_length=1000) tags = GenericRelation(TaggedItem) We could define a custom field that could be used to serialize tagged instances, using the type of each instance to determine how it should be serialized. class TaggedObjectRelatedField(serializers.RelatedField): """ A custom field to use for the `tagged_object` generic relationship. """ def to_representation(self, value): """ Serialize tagged objects to a simple textual representation. """ if isinstance(value, Bookmark): return 'Bookmark: ' + value.url elif isinstance(value, Note): return 'Note: ' + value.text raise Exception('Unexpected type of tagged object') If you need the target of the relationship to have a nested representation, you can use the required serializers inside the `.to_representation()` method: def to_representation(self, value): """ Serialize bookmark instances using a bookmark serializer, and note instances using a note serializer. """ if isinstance(value, Bookmark): serializer = BookmarkSerializer(value) elif isinstance(value, Note): serializer = NoteSerializer(value) else: raise Exception('Unexpected type of tagged object') return serializer.data Note that reverse generic keys, expressed using the `GenericRelation` field, can be serialized using the regular relational field types, since the type of the target in the relationship is always known. For more information see [the Django documentation on generic relations][generic-relations]. ## ManyToManyFields with a Through Model By default, relational fields that target a ``ManyToManyField`` with a ``through`` model specified are set to read-only. If you explicitly specify a relational field pointing to a ``ManyToManyField`` with a through model, be sure to set ``read_only`` to ``True``. --- # Third Party Packages The following third party packages are also available. ## DRF Nested Routers The [drf-nested-routers package][drf-nested-routers] provides routers and relationship fields for working with nested resources. [cite]: http://lwn.net/Articles/193245/ [reverse-relationships]: https://docs.djangoproject.com/en/dev/topics/db/queries/#following-relationships-backward [routers]: http://www.django-rest-framework.org/api-guide/routers#defaultrouter [generic-relations]: https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#id1 [2.2-announcement]: ../topics/2.2-announcement.md [drf-nested-routers]: https://github.com/alanjds/drf-nested-routers django-rest-framework-3.3.2/docs/api-guide/renderers.md000066400000000000000000000541431263353514300230520ustar00rootroot00000000000000source: renderers.py # Renderers > Before a TemplateResponse instance can be returned to the client, it must be rendered. The rendering process takes the intermediate representation of template and context, and turns it into the final byte stream that can be served to the client. > > — [Django documentation][cite] REST framework includes a number of built in Renderer classes, that allow you to return responses with various media types. There is also support for defining your own custom renderers, which gives you the flexibility to design your own media types. ## How the renderer is determined The set of valid renderers for a view is always defined as a list of classes. When a view is entered REST framework will perform content negotiation on the incoming request, and determine the most appropriate renderer to satisfy the request. The basic process of content negotiation involves examining the request's `Accept` header, to determine which media types it expects in the response. Optionally, format suffixes on the URL may be used to explicitly request a particular representation. For example the URL `http://example.com/api/users_count.json` might be an endpoint that always returns JSON data. For more information see the documentation on [content negotiation][conneg]. ## Setting the renderers The default set of renderers may be set globally, using the `DEFAULT_RENDERER_CLASSES` setting. For example, the following settings would use `JSON` as the main media type and also include the self describing API. REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.BrowsableAPIRenderer', ) } You can also set the renderers used for an individual view, or viewset, using the `APIView` class based views. from django.contrib.auth.models import User from rest_framework.renderers import JSONRenderer from rest_framework.response import Response from rest_framework.views import APIView class UserCountView(APIView): """ A view that returns the count of active users in JSON. """ renderer_classes = (JSONRenderer, ) def get(self, request, format=None): user_count = User.objects.filter(active=True).count() content = {'user_count': user_count} return Response(content) Or, if you're using the `@api_view` decorator with function based views. @api_view(['GET']) @renderer_classes((JSONRenderer,)) def user_count_view(request, format=None): """ A view that returns the count of active users in JSON. """ user_count = User.objects.filter(active=True).count() content = {'user_count': user_count} return Response(content) ## Ordering of renderer classes It's important when specifying the renderer classes for your API to think about what priority you want to assign to each media type. If a client underspecifies the representations it can accept, such as sending an `Accept: */*` header, or not including an `Accept` header at all, then REST framework will select the first renderer in the list to use for the response. For example if your API serves JSON responses and the HTML browsable API, you might want to make `JSONRenderer` your default renderer, in order to send `JSON` responses to clients that do not specify an `Accept` header. If your API includes views that can serve both regular webpages and API responses depending on the request, then you might consider making `TemplateHTMLRenderer` your default renderer, in order to play nicely with older browsers that send [broken accept headers][browser-accept-headers]. --- # API Reference ## JSONRenderer Renders the request data into `JSON`, using utf-8 encoding. Note that the default style is to include unicode characters, and render the response using a compact style with no unnecessary whitespace: {"unicode black star":"★","value":999} The client may additionally include an `'indent'` media type parameter, in which case the returned `JSON` will be indented. For example `Accept: application/json; indent=4`. { "unicode black star": "★", "value": 999 } The default JSON encoding style can be altered using the `UNICODE_JSON` and `COMPACT_JSON` settings keys. **.media_type**: `application/json` **.format**: `'.json'` **.charset**: `None` ## TemplateHTMLRenderer Renders data to HTML, using Django's standard template rendering. Unlike other renderers, the data passed to the `Response` does not need to be serialized. Also, unlike other renderers, you may want to include a `template_name` argument when creating the `Response`. The TemplateHTMLRenderer will create a `RequestContext`, using the `response.data` as the context dict, and determine a template name to use to render the context. The template name is determined by (in order of preference): 1. An explicit `template_name` argument passed to the response. 2. An explicit `.template_name` attribute set on this class. 3. The return result of calling `view.get_template_names()`. An example of a view that uses `TemplateHTMLRenderer`: class UserDetail(generics.RetrieveAPIView): """ A view that returns a templated HTML representation of a given user. """ queryset = User.objects.all() renderer_classes = (TemplateHTMLRenderer,) def get(self, request, *args, **kwargs): self.object = self.get_object() return Response({'user': self.object}, template_name='user_detail.html') You can use `TemplateHTMLRenderer` either to return regular HTML pages using REST framework, or to return both HTML and API responses from a single endpoint. If you're building websites that use `TemplateHTMLRenderer` along with other renderer classes, you should consider listing `TemplateHTMLRenderer` as the first class in the `renderer_classes` list, so that it will be prioritised first even for browsers that send poorly formed `ACCEPT:` headers. **.media_type**: `text/html` **.format**: `'.html'` **.charset**: `utf-8` See also: `StaticHTMLRenderer` ## StaticHTMLRenderer A simple renderer that simply returns pre-rendered HTML. Unlike other renderers, the data passed to the response object should be a string representing the content to be returned. An example of a view that uses `StaticHTMLRenderer`: @api_view(('GET',)) @renderer_classes((StaticHTMLRenderer,)) def simple_html_view(request): data = '

Hello, world

' return Response(data) You can use `StaticHTMLRenderer` either to return regular HTML pages using REST framework, or to return both HTML and API responses from a single endpoint. **.media_type**: `text/html` **.format**: `'.html'` **.charset**: `utf-8` See also: `TemplateHTMLRenderer` ## BrowsableAPIRenderer Renders data into HTML for the Browsable API: ![The BrowsableAPIRenderer](../img/quickstart.png) This renderer will determine which other renderer would have been given highest priority, and use that to display an API style response within the HTML page. **.media_type**: `text/html` **.format**: `'.api'` **.charset**: `utf-8` **.template**: `'rest_framework/api.html'` #### Customizing BrowsableAPIRenderer By default the response content will be rendered with the highest priority renderer apart from `BrowsableAPIRenderer`. If you need to customize this behavior, for example to use HTML as the default return format, but use JSON in the browsable API, you can do so by overriding the `get_default_renderer()` method. For example: class CustomBrowsableAPIRenderer(BrowsableAPIRenderer): def get_default_renderer(self, view): return JSONRenderer() ## AdminRenderer Renders data into HTML for an admin-like display: ![The AdminRender view](../img/admin.png) This renderer is suitable for CRUD-style web APIs that should also present a user-friendly interface for managing the data. Note that views that have nested or list serializers for their input won't work well with the `AdminRenderer`, as the HTML forms are unable to properly support them. **Note**: The `AdminRenderer` is only able to include links to detail pages when a properly configured `URL_FIELD_NAME` (`url` by default) attribute is present in the data. For `HyperlinkedModelSerializer` this will be the case, but for `ModelSerializer` or plain `Serializer` classes you'll need to make sure to include the field explicitly. For example here we use models `get_absolute_url` method: class AccountSerializer(serializers.ModelSerializer): url = serializers.CharField(source='get_absolute_url', read_only=True) class Meta: model = Account **.media_type**: `text/html` **.format**: `'.admin'` **.charset**: `utf-8` **.template**: `'rest_framework/admin.html'` ## HTMLFormRenderer Renders data returned by a serializer into an HTML form. The output of this renderer does not include the enclosing `
` tags, a hidden CSRF input or any submit buttons. This renderer is not intended to be used directly, but can instead be used in templates by passing a serializer instance to the `render_form` template tag. {% load rest_framework %} {% csrf_token %} {% render_form serializer %}
For more information see the [HTML & Forms][html-and-forms] documentation. **.media_type**: `text/html` **.format**: `'.form'` **.charset**: `utf-8` **.template**: `'rest_framework/horizontal/form.html'` ## MultiPartRenderer This renderer is used for rendering HTML multipart form data. **It is not suitable as a response renderer**, but is instead used for creating test requests, using REST framework's [test client and test request factory][testing]. **.media_type**: `multipart/form-data; boundary=BoUnDaRyStRiNg` **.format**: `'.multipart'` **.charset**: `utf-8` --- # Custom renderers To implement a custom renderer, you should override `BaseRenderer`, set the `.media_type` and `.format` properties, and implement the `.render(self, data, media_type=None, renderer_context=None)` method. The method should return a bytestring, which will be used as the body of the HTTP response. The arguments passed to the `.render()` method are: ### `data` The request data, as set by the `Response()` instantiation. ### `media_type=None` Optional. If provided, this is the accepted media type, as determined by the content negotiation stage. Depending on the client's `Accept:` header, this may be more specific than the renderer's `media_type` attribute, and may include media type parameters. For example `"application/json; nested=true"`. ### `renderer_context=None` Optional. If provided, this is a dictionary of contextual information provided by the view. By default this will include the following keys: `view`, `request`, `response`, `args`, `kwargs`. ## Example The following is an example plaintext renderer that will return a response with the `data` parameter as the content of the response. from django.utils.encoding import smart_unicode from rest_framework import renderers class PlainTextRenderer(renderers.BaseRenderer): media_type = 'text/plain' format = 'txt' def render(self, data, media_type=None, renderer_context=None): return data.encode(self.charset) ## Setting the character set By default renderer classes are assumed to be using the `UTF-8` encoding. To use a different encoding, set the `charset` attribute on the renderer. class PlainTextRenderer(renderers.BaseRenderer): media_type = 'text/plain' format = 'txt' charset = 'iso-8859-1' def render(self, data, media_type=None, renderer_context=None): return data.encode(self.charset) Note that if a renderer class returns a unicode string, then the response content will be coerced into a bytestring by the `Response` class, with the `charset` attribute set on the renderer used to determine the encoding. If the renderer returns a bytestring representing raw binary content, you should set a charset value of `None`, which will ensure the `Content-Type` header of the response will not have a `charset` value set. In some cases you may also want to set the `render_style` attribute to `'binary'`. Doing so will also ensure that the browsable API will not attempt to display the binary content as a string. class JPEGRenderer(renderers.BaseRenderer): media_type = 'image/jpeg' format = 'jpg' charset = None render_style = 'binary' def render(self, data, media_type=None, renderer_context=None): return data --- # Advanced renderer usage You can do some pretty flexible things using REST framework's renderers. Some examples... * Provide either flat or nested representations from the same endpoint, depending on the requested media type. * Serve both regular HTML webpages, and JSON based API responses from the same endpoints. * Specify multiple types of HTML representation for API clients to use. * Underspecify a renderer's media type, such as using `media_type = 'image/*'`, and use the `Accept` header to vary the encoding of the response. ## Varying behaviour by media type In some cases you might want your view to use different serialization styles depending on the accepted media type. If you need to do this you can access `request.accepted_renderer` to determine the negotiated renderer that will be used for the response. For example: @api_view(('GET',)) @renderer_classes((TemplateHTMLRenderer, JSONRenderer)) def list_users(request): """ A view that can return JSON or HTML representations of the users in the system. """ queryset = Users.objects.filter(active=True) if request.accepted_renderer.format == 'html': # TemplateHTMLRenderer takes a context dict, # and additionally requires a 'template_name'. # It does not require serialization. data = {'users': queryset} return Response(data, template_name='list_users.html') # JSONRenderer requires serialized data as normal. serializer = UserSerializer(instance=queryset) data = serializer.data return Response(data) ## Underspecifying the media type In some cases you might want a renderer to serve a range of media types. In this case you can underspecify the media types it should respond to, by using a `media_type` value such as `image/*`, or `*/*`. If you underspecify the renderer's media type, you should make sure to specify the media type explicitly when you return the response, using the `content_type` attribute. For example: return Response(data, content_type='image/png') ## Designing your media types For the purposes of many Web APIs, simple `JSON` responses with hyperlinked relations may be sufficient. If you want to fully embrace RESTful design and [HATEOAS] you'll need to consider the design and usage of your media types in more detail. In [the words of Roy Fielding][quote], "A REST API should spend almost all of its descriptive effort in defining the media type(s) used for representing resources and driving application state, or in defining extended relation names and/or hypertext-enabled mark-up for existing standard media types.". For good examples of custom media types, see GitHub's use of a custom [application/vnd.github+json] media type, and Mike Amundsen's IANA approved [application/vnd.collection+json] JSON-based hypermedia. ## HTML error views Typically a renderer will behave the same regardless of if it's dealing with a regular response, or with a response caused by an exception being raised, such as an `Http404` or `PermissionDenied` exception, or a subclass of `APIException`. If you're using either the `TemplateHTMLRenderer` or the `StaticHTMLRenderer` and an exception is raised, the behavior is slightly different, and mirrors [Django's default handling of error views][django-error-views]. Exceptions raised and handled by an HTML renderer will attempt to render using one of the following methods, by order of precedence. * Load and render a template named `{status_code}.html`. * Load and render a template named `api_exception.html`. * Render the HTTP status code and text, for example "404 Not Found". Templates will render with a `RequestContext` which includes the `status_code` and `details` keys. **Note**: If `DEBUG=True`, Django's standard traceback error page will be displayed instead of rendering the HTTP status code and text. --- # Third party packages The following third party packages are also available. ## YAML [REST framework YAML][rest-framework-yaml] provides [YAML][yaml] parsing and rendering support. It was previously included directly in the REST framework package, and is now instead supported as a third-party package. #### Installation & configuration Install using pip. $ pip install djangorestframework-yaml Modify your REST framework settings. REST_FRAMEWORK = { 'DEFAULT_PARSER_CLASSES': ( 'rest_framework_yaml.parsers.YAMLParser', ), 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework_yaml.renderers.YAMLRenderer', ), } ## XML [REST Framework XML][rest-framework-xml] provides a simple informal XML format. It was previously included directly in the REST framework package, and is now instead supported as a third-party package. #### Installation & configuration Install using pip. $ pip install djangorestframework-xml Modify your REST framework settings. REST_FRAMEWORK = { 'DEFAULT_PARSER_CLASSES': ( 'rest_framework_xml.parsers.XMLParser', ), 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework_xml.renderers.XMLRenderer', ), } ## JSONP [REST framework JSONP][rest-framework-jsonp] provides JSONP rendering support. It was previously included directly in the REST framework package, and is now instead supported as a third-party package. --- **Warning**: If you require cross-domain AJAX requests, you should generally be using the more modern approach of [CORS][cors] as an alternative to `JSONP`. See the [CORS documentation][cors-docs] for more details. The `jsonp` approach is essentially a browser hack, and is [only appropriate for globally readable API endpoints][jsonp-security], where `GET` requests are unauthenticated and do not require any user permissions. --- #### Installation & configuration Install using pip. $ pip install djangorestframework-jsonp Modify your REST framework settings. REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework_jsonp.renderers.JSONPRenderer', ), } ## MessagePack [MessagePack][messagepack] is a fast, efficient binary serialization format. [Juan Riaza][juanriaza] maintains the [djangorestframework-msgpack][djangorestframework-msgpack] package which provides MessagePack renderer and parser support for REST framework. ## CSV Comma-separated values are a plain-text tabular data format, that can be easily imported into spreadsheet applications. [Mjumbe Poe][mjumbewu] maintains the [djangorestframework-csv][djangorestframework-csv] package which provides CSV renderer support for REST framework. ## UltraJSON [UltraJSON][ultrajson] is an optimized C JSON encoder which can give significantly faster JSON rendering. [Jacob Haslehurst][hzy] maintains the [drf-ujson-renderer][drf-ujson-renderer] package which implements JSON rendering using the UJSON package. ## CamelCase JSON [djangorestframework-camel-case] provides camel case JSON renderers and parsers for REST framework. This allows serializers to use Python-style underscored field names, but be exposed in the API as Javascript-style camel case field names. It is maintained by [Vitaly Babiy][vbabiy]. ## Pandas (CSV, Excel, PNG) [Django REST Pandas] provides a serializer and renderers that support additional data processing and output via the [Pandas] DataFrame API. Django REST Pandas includes renderers for Pandas-style CSV files, Excel workbooks (both `.xls` and `.xlsx`), and a number of [other formats]. It is maintained by [S. Andrew Sheppard][sheppard] as part of the [wq Project][wq]. [cite]: https://docs.djangoproject.com/en/dev/ref/template-response/#the-rendering-process [conneg]: content-negotiation.md [html-and-forms]: ../topics/html-and-forms.md [browser-accept-headers]: http://www.gethifi.com/blog/browser-rest-http-accept-headers [testing]: testing.md [HATEOAS]: http://timelessrepo.com/haters-gonna-hateoas [quote]: http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven [application/vnd.github+json]: http://developer.github.com/v3/media/ [application/vnd.collection+json]: http://www.amundsen.com/media-types/collection/ [django-error-views]: https://docs.djangoproject.com/en/dev/topics/http/views/#customizing-error-views [rest-framework-jsonp]: http://jpadilla.github.io/django-rest-framework-jsonp/ [cors]: http://www.w3.org/TR/cors/ [cors-docs]: http://www.django-rest-framework.org/topics/ajax-csrf-cors/ [jsonp-security]: http://stackoverflow.com/questions/613962/is-jsonp-safe-to-use [rest-framework-yaml]: http://jpadilla.github.io/django-rest-framework-yaml/ [rest-framework-xml]: http://jpadilla.github.io/django-rest-framework-xml/ [messagepack]: http://msgpack.org/ [juanriaza]: https://github.com/juanriaza [mjumbewu]: https://github.com/mjumbewu [vbabiy]: https://github.com/vbabiy [rest-framework-yaml]: http://jpadilla.github.io/django-rest-framework-yaml/ [rest-framework-xml]: http://jpadilla.github.io/django-rest-framework-xml/ [yaml]: http://www.yaml.org/ [djangorestframework-msgpack]: https://github.com/juanriaza/django-rest-framework-msgpack [djangorestframework-csv]: https://github.com/mjumbewu/django-rest-framework-csv [ultrajson]: https://github.com/esnme/ultrajson [hzy]: https://github.com/hzy [drf-ujson-renderer]: https://github.com/gizmag/drf-ujson-renderer [djangorestframework-camel-case]: https://github.com/vbabiy/djangorestframework-camel-case [Django REST Pandas]: https://github.com/wq/django-rest-pandas [Pandas]: http://pandas.pydata.org/ [other formats]: https://github.com/wq/django-rest-pandas#supported-formats [sheppard]: https://github.com/sheppard [wq]: https://github.com/wq django-rest-framework-3.3.2/docs/api-guide/requests.md000066400000000000000000000143441263353514300227330ustar00rootroot00000000000000source: request.py # Requests > If you're doing REST-based web service stuff ... you should ignore request.POST. > > — Malcom Tredinnick, [Django developers group][cite] REST framework's `Request` class extends the standard `HttpRequest`, adding support for REST framework's flexible request parsing and request authentication. --- # Request parsing REST framework's Request objects provide flexible request parsing that allows you to treat requests with JSON data or other media types in the same way that you would normally deal with form data. ## .data `request.data` returns the parsed content of the request body. This is similar to the standard `request.POST` and `request.FILES` attributes except that: * It includes all parsed content, including *file and non-file* inputs. * It supports parsing the content of HTTP methods other than `POST`, meaning that you can access the content of `PUT` and `PATCH` requests. * It supports REST framework's flexible request parsing, rather than just supporting form data. For example you can handle incoming JSON data in the same way that you handle incoming form data. For more details see the [parsers documentation]. ## .query_params `request.query_params` is a more correctly named synonym for `request.GET`. For clarity inside your code, we recommend using `request.query_params` instead of the Django's standard `request.GET`. Doing so will help keep your codebase more correct and obvious - any HTTP method type may include query parameters, not just `GET` requests. ## .parsers The `APIView` class or `@api_view` decorator will ensure that this property is automatically set to a list of `Parser` instances, based on the `parser_classes` set on the view or based on the `DEFAULT_PARSER_CLASSES` setting. You won't typically need to access this property. --- **Note:** If a client sends malformed content, then accessing `request.data` may raise a `ParseError`. By default REST framework's `APIView` class or `@api_view` decorator will catch the error and return a `400 Bad Request` response. If a client sends a request with a content-type that cannot be parsed then a `UnsupportedMediaType` exception will be raised, which by default will be caught and return a `415 Unsupported Media Type` response. --- # Content negotiation The request exposes some properties that allow you to determine the result of the content negotiation stage. This allows you to implement behaviour such as selecting a different serialisation schemes for different media types. ## .accepted_renderer The renderer instance what was selected by the content negotiation stage. ## .accepted_media_type A string representing the media type that was accepted by the content negotiation stage. --- # Authentication REST framework provides flexible, per-request authentication, that gives you the ability to: * Use different authentication policies for different parts of your API. * Support the use of multiple authentication policies. * Provide both user and token information associated with the incoming request. ## .user `request.user` typically returns an instance of `django.contrib.auth.models.User`, although the behavior depends on the authentication policy being used. If the request is unauthenticated the default value of `request.user` is an instance of `django.contrib.auth.models.AnonymousUser`. For more details see the [authentication documentation]. ## .auth `request.auth` returns any additional authentication context. The exact behavior of `request.auth` depends on the authentication policy being used, but it may typically be an instance of the token that the request was authenticated against. If the request is unauthenticated, or if no additional context is present, the default value of `request.auth` is `None`. For more details see the [authentication documentation]. ## .authenticators The `APIView` class or `@api_view` decorator will ensure that this property is automatically set to a list of `Authentication` instances, based on the `authentication_classes` set on the view or based on the `DEFAULT_AUTHENTICATORS` setting. You won't typically need to access this property. --- # Browser enhancements REST framework supports a few browser enhancements such as browser-based `PUT`, `PATCH` and `DELETE` forms. ## .method `request.method` returns the **uppercased** string representation of the request's HTTP method. Browser-based `PUT`, `PATCH` and `DELETE` forms are transparently supported. For more information see the [browser enhancements documentation]. ## .content_type `request.content_type`, returns a string object representing the media type of the HTTP request's body, or an empty string if no media type was provided. You won't typically need to directly access the request's content type, as you'll normally rely on REST framework's default request parsing behavior. If you do need to access the content type of the request you should use the `.content_type` property in preference to using `request.META.get('HTTP_CONTENT_TYPE')`, as it provides transparent support for browser-based non-form content. For more information see the [browser enhancements documentation]. ## .stream `request.stream` returns a stream representing the content of the request body. You won't typically need to directly access the request's content, as you'll normally rely on REST framework's default request parsing behavior. If you do need to access the raw content directly, you should use the `.stream` property in preference to using `request.content`, as it provides transparent support for browser-based non-form content. For more information see the [browser enhancements documentation]. --- # Standard HttpRequest attributes As REST framework's `Request` extends Django's `HttpRequest`, all the other standard attributes and methods are also available. For example the `request.META` and `request.session` dictionaries are available as normal. Note that due to implementation reasons the `Request` class does not inherit from `HttpRequest` class, but instead extends the class using composition. [cite]: https://groups.google.com/d/topic/django-developers/dxI4qVzrBY4/discussion [parsers documentation]: parsers.md [authentication documentation]: authentication.md [browser enhancements documentation]: ../topics/browser-enhancements.md django-rest-framework-3.3.2/docs/api-guide/responses.md000066400000000000000000000110501263353514300230700ustar00rootroot00000000000000source: response.py # Responses > Unlike basic HttpResponse objects, TemplateResponse objects retain the details of the context that was provided by the view to compute the response. The final output of the response is not computed until it is needed, later in the response process. > > — [Django documentation][cite] REST framework supports HTTP content negotiation by providing a `Response` class which allows you to return content that can be rendered into multiple content types, depending on the client request. The `Response` class subclasses Django's `SimpleTemplateResponse`. `Response` objects are initialised with data, which should consist of native Python primitives. REST framework then uses standard HTTP content negotiation to determine how it should render the final response content. There's no requirement for you to use the `Response` class, you can also return regular `HttpResponse` or `StreamingHttpResponse` objects from your views if required. Using the `Response` class simply provides a nicer interface for returning content-negotiated Web API responses, that can be rendered to multiple formats. Unless you want to heavily customize REST framework for some reason, you should always use an `APIView` class or `@api_view` function for views that return `Response` objects. Doing so ensures that the view can perform content negotiation and select the appropriate renderer for the response, before it is returned from the view. --- # Creating responses ## Response() **Signature:** `Response(data, status=None, template_name=None, headers=None, content_type=None)` Unlike regular `HttpResponse` objects, you do not instantiate `Response` objects with rendered content. Instead you pass in unrendered data, which may consist of any Python primitives. The renderers used by the `Response` class cannot natively handle complex datatypes such as Django model instances, so you need to serialize the data into primitive datatypes before creating the `Response` object. You can use REST framework's `Serializer` classes to perform this data serialization, or use your own custom serialization. Arguments: * `data`: The serialized data for the response. * `status`: A status code for the response. Defaults to 200. See also [status codes][statuscodes]. * `template_name`: A template name to use if `HTMLRenderer` is selected. * `headers`: A dictionary of HTTP headers to use in the response. * `content_type`: The content type of the response. Typically, this will be set automatically by the renderer as determined by content negotiation, but there may be some cases where you need to specify the content type explicitly. --- # Attributes ## .data The unrendered content of a `Request` object. ## .status_code The numeric status code of the HTTP response. ## .content The rendered content of the response. The `.render()` method must have been called before `.content` can be accessed. ## .template_name The `template_name`, if supplied. Only required if `HTMLRenderer` or some other custom template renderer is the accepted renderer for the response. ## .accepted_renderer The renderer instance that will be used to render the response. Set automatically by the `APIView` or `@api_view` immediately before the response is returned from the view. ## .accepted_media_type The media type that was selected by the content negotiation stage. Set automatically by the `APIView` or `@api_view` immediately before the response is returned from the view. ## .renderer_context A dictionary of additional context information that will be passed to the renderer's `.render()` method. Set automatically by the `APIView` or `@api_view` immediately before the response is returned from the view. --- # Standard HttpResponse attributes The `Response` class extends `SimpleTemplateResponse`, and all the usual attributes and methods are also available on the response. For example you can set headers on the response in the standard way: response = Response() response['Cache-Control'] = 'no-cache' ## .render() **Signature:** `.render()` As with any other `TemplateResponse`, this method is called to render the serialized data of the response into the final response content. When `.render()` is called, the response content will be set to the result of calling the `.render(data, accepted_media_type, renderer_context)` method on the `accepted_renderer` instance. You won't typically need to call `.render()` yourself, as it's handled by Django's standard response cycle. [cite]: https://docs.djangoproject.com/en/dev/ref/template-response/ [statuscodes]: status-codes.md django-rest-framework-3.3.2/docs/api-guide/reverse.md000066400000000000000000000046611263353514300225340ustar00rootroot00000000000000source: reverse.py # Returning URLs > The central feature that distinguishes the REST architectural style from other network-based styles is its emphasis on a uniform interface between components. > > — Roy Fielding, [Architectural Styles and the Design of Network-based Software Architectures][cite] As a rule, it's probably better practice to return absolute URIs from your Web APIs, such as `http://example.com/foobar`, rather than returning relative URIs, such as `/foobar`. The advantages of doing so are: * It's more explicit. * It leaves less work for your API clients. * There's no ambiguity about the meaning of the string when it's found in representations such as JSON that do not have a native URI type. * It makes it easy to do things like markup HTML representations with hyperlinks. REST framework provides two utility functions to make it more simple to return absolute URIs from your Web API. There's no requirement for you to use them, but if you do then the self-describing API will be able to automatically hyperlink its output for you, which makes browsing the API much easier. ## reverse **Signature:** `reverse(viewname, *args, **kwargs)` Has the same behavior as [`django.core.urlresolvers.reverse`][reverse], except that it returns a fully qualified URL, using the request to determine the host and port. You should **include the request as a keyword argument** to the function, for example: from rest_framework.reverse import reverse from rest_framework.views import APIView from django.utils.timezone import now class APIRootView(APIView): def get(self, request): year = now().year data = { ... 'year-summary-url': reverse('year-summary', args=[year], request=request) } return Response(data) ## reverse_lazy **Signature:** `reverse_lazy(viewname, *args, **kwargs)` Has the same behavior as [`django.core.urlresolvers.reverse_lazy`][reverse-lazy], except that it returns a fully qualified URL, using the request to determine the host and port. As with the `reverse` function, you should **include the request as a keyword argument** to the function, for example: api_root = reverse_lazy('api-root', request=request) [cite]: http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_1_5 [reverse]: https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse [reverse-lazy]: https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse-lazy django-rest-framework-3.3.2/docs/api-guide/routers.md000066400000000000000000000365351263353514300225710ustar00rootroot00000000000000source: routers.py # Routers > Resource routing allows you to quickly declare all of the common routes for a given resourceful controller. Instead of declaring separate routes for your index... a resourceful route declares them in a single line of code. > > — [Ruby on Rails Documentation][cite] Some Web frameworks such as Rails provide functionality for automatically determining how the URLs for an application should be mapped to the logic that deals with handling incoming requests. REST framework adds support for automatic URL routing to Django, and provides you with a simple, quick and consistent way of wiring your view logic to a set of URLs. ## Usage Here's an example of a simple URL conf, that uses `SimpleRouter`. from rest_framework import routers router = routers.SimpleRouter() router.register(r'users', UserViewSet) router.register(r'accounts', AccountViewSet) urlpatterns = router.urls There are two mandatory arguments to the `register()` method: * `prefix` - The URL prefix to use for this set of routes. * `viewset` - The viewset class. Optionally, you may also specify an additional argument: * `base_name` - The base to use for the URL names that are created. If unset the basename will be automatically generated based on the `queryset` attribute of the viewset, if it has one. Note that if the viewset does not include a `queryset` attribute then you must set `base_name` when registering the viewset. The example above would generate the following URL patterns: * URL pattern: `^users/$` Name: `'user-list'` * URL pattern: `^users/{pk}/$` Name: `'user-detail'` * URL pattern: `^accounts/$` Name: `'account-list'` * URL pattern: `^accounts/{pk}/$` Name: `'account-detail'` --- **Note**: The `base_name` argument is used to specify the initial part of the view name pattern. In the example above, that's the `user` or `account` part. Typically you won't *need* to specify the `base_name` argument, but if you have a viewset where you've defined a custom `get_queryset` method, then the viewset may not have a `.queryset` attribute set. If you try to register that viewset you'll see an error like this: 'base_name' argument not specified, and could not automatically determine the name from the viewset, as it does not have a '.queryset' attribute. This means you'll need to explicitly set the `base_name` argument when registering the viewset, as it could not be automatically determined from the model name. --- ### Using `include` with routers The `.urls` attribute on a router instance is simply a standard list of URL patterns. There are a number of different styles for how you can include these URLs. For example, you can append `router.urls` to a list of existing views… router = routers.SimpleRouter() router.register(r'users', UserViewSet) router.register(r'accounts', AccountViewSet) urlpatterns = [ url(r'^forgot-password/$', ForgotPasswordFormView.as_view()), ] urlpatterns += router.urls Alternatively you can use Django's `include` function, like so… urlpatterns = [ url(r'^forgot-password/$', ForgotPasswordFormView.as_view()), url(r'^', include(router.urls)), ] Router URL patterns can also be namespaces. urlpatterns = [ url(r'^forgot-password/$', ForgotPasswordFormView.as_view()), url(r'^api/', include(router.urls, namespace='api')), ] If using namespacing with hyperlinked serializers you'll also need to ensure that any `view_name` parameters on the serializers correctly reflect the namespace. In the example above you'd need to include a parameter such as `view_name='api:user-detail'` for serializer fields hyperlinked to the user detail view. ### Extra link and actions Any methods on the viewset decorated with `@detail_route` or `@list_route` will also be routed. For example, given a method like this on the `UserViewSet` class: from myapp.permissions import IsAdminOrIsSelf from rest_framework.decorators import detail_route class UserViewSet(ModelViewSet): ... @detail_route(methods=['post'], permission_classes=[IsAdminOrIsSelf]) def set_password(self, request, pk=None): ... The following URL pattern would additionally be generated: * URL pattern: `^users/{pk}/set_password/$` Name: `'user-set-password'` If you do not want to use the default URL generated for your custom action, you can instead use the url_path parameter to customize it. For example, if you want to change the URL for our custom action to `^users/{pk}/change-password/$`, you could write: from myapp.permissions import IsAdminOrIsSelf from rest_framework.decorators import detail_route class UserViewSet(ModelViewSet): ... @detail_route(methods=['post'], permission_classes=[IsAdminOrIsSelf], url_path='change-password') def set_password(self, request, pk=None): ... The above example would now generate the following URL pattern: * URL pattern: `^users/{pk}/change-password/$` Name: `'user-change-password'` For more information see the viewset documentation on [marking extra actions for routing][route-decorators]. # API Guide ## SimpleRouter This router includes routes for the standard set of `list`, `create`, `retrieve`, `update`, `partial_update` and `destroy` actions. The viewset can also mark additional methods to be routed, using the `@detail_route` or `@list_route` decorators.
URL StyleHTTP MethodActionURL Name
{prefix}/GETlist{basename}-list
POSTcreate
{prefix}/{methodname}/GET, or as specified by `methods` argument`@list_route` decorated method{basename}-{methodname}
{prefix}/{lookup}/GETretrieve{basename}-detail
PUTupdate
PATCHpartial_update
DELETEdestroy
{prefix}/{lookup}/{methodname}/GET, or as specified by `methods` argument`@detail_route` decorated method{basename}-{methodname}
By default the URLs created by `SimpleRouter` are appended with a trailing slash. This behavior can be modified by setting the `trailing_slash` argument to `False` when instantiating the router. For example: router = SimpleRouter(trailing_slash=False) Trailing slashes are conventional in Django, but are not used by default in some other frameworks such as Rails. Which style you choose to use is largely a matter of preference, although some javascript frameworks may expect a particular routing style. The router will match lookup values containing any characters except slashes and period characters. For a more restrictive (or lenient) lookup pattern, set the `lookup_value_regex` attribute on the viewset. For example, you can limit the lookup to valid UUIDs: class MyModelViewSet(mixins.RetrieveModelMixin, viewsets.GenericViewSet): lookup_field = 'my_model_id' lookup_value_regex = '[0-9a-f]{32}' ## DefaultRouter This router is similar to `SimpleRouter` as above, but additionally includes a default API root view, that returns a response containing hyperlinks to all the list views. It also generates routes for optional `.json` style format suffixes.
URL StyleHTTP MethodActionURL Name
[.format]GETautomatically generated root viewapi-root
{prefix}/[.format]GETlist{basename}-list
POSTcreate
{prefix}/{methodname}/[.format]GET, or as specified by `methods` argument`@list_route` decorated method{basename}-{methodname}
{prefix}/{lookup}/[.format]GETretrieve{basename}-detail
PUTupdate
PATCHpartial_update
DELETEdestroy
{prefix}/{lookup}/{methodname}/[.format]GET, or as specified by `methods` argument`@detail_route` decorated method{basename}-{methodname}
As with `SimpleRouter` the trailing slashes on the URL routes can be removed by setting the `trailing_slash` argument to `False` when instantiating the router. router = DefaultRouter(trailing_slash=False) # Custom Routers Implementing a custom router isn't something you'd need to do very often, but it can be useful if you have specific requirements about how the your URLs for your API are structured. Doing so allows you to encapsulate the URL structure in a reusable way that ensures you don't have to write your URL patterns explicitly for each new view. The simplest way to implement a custom router is to subclass one of the existing router classes. The `.routes` attribute is used to template the URL patterns that will be mapped to each viewset. The `.routes` attribute is a list of `Route` named tuples. The arguments to the `Route` named tuple are: **url**: A string representing the URL to be routed. May include the following format strings: * `{prefix}` - The URL prefix to use for this set of routes. * `{lookup}` - The lookup field used to match against a single instance. * `{trailing_slash}` - Either a '/' or an empty string, depending on the `trailing_slash` argument. **mapping**: A mapping of HTTP method names to the view methods **name**: The name of the URL as used in `reverse` calls. May include the following format string: * `{basename}` - The base to use for the URL names that are created. **initkwargs**: A dictionary of any additional arguments that should be passed when instantiating the view. Note that the `suffix` argument is reserved for identifying the viewset type, used when generating the view name and breadcrumb links. ## Customizing dynamic routes You can also customize how the `@list_route` and `@detail_route` decorators are routed. To route either or both of these decorators, include a `DynamicListRoute` and/or `DynamicDetailRoute` named tuple in the `.routes` list. The arguments to `DynamicListRoute` and `DynamicDetailRoute` are: **url**: A string representing the URL to be routed. May include the same format strings as `Route`, and additionally accepts the `{methodname}` and `{methodnamehyphen}` format strings. **name**: The name of the URL as used in `reverse` calls. May include the following format strings: `{basename}`, `{methodname}` and `{methodnamehyphen}`. **initkwargs**: A dictionary of any additional arguments that should be passed when instantiating the view. ## Example The following example will only route to the `list` and `retrieve` actions, and does not use the trailing slash convention. from rest_framework.routers import Route, DynamicDetailRoute, SimpleRouter class CustomReadOnlyRouter(SimpleRouter): """ A router for read-only APIs, which doesn't use trailing slashes. """ routes = [ Route( url=r'^{prefix}$', mapping={'get': 'list'}, name='{basename}-list', initkwargs={'suffix': 'List'} ), Route( url=r'^{prefix}/{lookup}$', mapping={'get': 'retrieve'}, name='{basename}-detail', initkwargs={'suffix': 'Detail'} ), DynamicDetailRoute( url=r'^{prefix}/{lookup}/{methodnamehyphen}$', name='{basename}-{methodnamehyphen}', initkwargs={} ) ] Let's take a look at the routes our `CustomReadOnlyRouter` would generate for a simple viewset. `views.py`: class UserViewSet(viewsets.ReadOnlyModelViewSet): """ A viewset that provides the standard actions """ queryset = User.objects.all() serializer_class = UserSerializer lookup_field = 'username' @detail_route() def group_names(self, request): """ Returns a list of all the group names that the given user belongs to. """ user = self.get_object() groups = user.groups.all() return Response([group.name for group in groups]) `urls.py`: router = CustomReadOnlyRouter() router.register('users', UserViewSet) urlpatterns = router.urls The following mappings would be generated...
URLHTTP MethodActionURL Name
/usersGETlistuser-list
/users/{username}GETretrieveuser-detail
/users/{username}/group-namesGETgroup_namesuser-group-names
For another example of setting the `.routes` attribute, see the source code for the `SimpleRouter` class. ## Advanced custom routers If you want to provide totally custom behavior, you can override `BaseRouter` and override the `get_urls(self)` method. The method should inspect the registered viewsets and return a list of URL patterns. The registered prefix, viewset and basename tuples may be inspected by accessing the `self.registry` attribute. You may also want to override the `get_default_base_name(self, viewset)` method, or else always explicitly set the `base_name` argument when registering your viewsets with the router. # Third Party Packages The following third party packages are also available. ## DRF Nested Routers The [drf-nested-routers package][drf-nested-routers] provides routers and relationship fields for working with nested resources. ## ModelRouter (wq.db.rest) The [wq.db package][wq.db] provides an advanced [ModelRouter][wq.db-router] class (and singleton instance) that extends `DefaultRouter` with a `register_model()` API. Much like Django's `admin.site.register`, the only required argument to `rest.router.register_model` is a model class. Reasonable defaults for a url prefix, serializer, and viewset will be inferred from the model and global configuration. from wq.db import rest from myapp.models import MyModel rest.router.register_model(MyModel) ## DRF-extensions The [`DRF-extensions` package][drf-extensions] provides [routers][drf-extensions-routers] for creating [nested viewsets][drf-extensions-nested-viewsets], [collection level controllers][drf-extensions-collection-level-controllers] with [customizable endpoint names][drf-extensions-customizable-endpoint-names]. [cite]: http://guides.rubyonrails.org/routing.html [route-decorators]: viewsets.md#marking-extra-actions-for-routing [drf-nested-routers]: https://github.com/alanjds/drf-nested-routers [wq.db]: http://wq.io/wq.db [wq.db-router]: http://wq.io/docs/router [drf-extensions]: http://chibisov.github.io/drf-extensions/docs/ [drf-extensions-routers]: http://chibisov.github.io/drf-extensions/docs/#routers [drf-extensions-nested-viewsets]: http://chibisov.github.io/drf-extensions/docs/#nested-routes [drf-extensions-collection-level-controllers]: http://chibisov.github.io/drf-extensions/docs/#collection-level-controllers [drf-extensions-customizable-endpoint-names]: http://chibisov.github.io/drf-extensions/docs/#controller-endpoint-name django-rest-framework-3.3.2/docs/api-guide/serializers.md000066400000000000000000001463541263353514300234230ustar00rootroot00000000000000source: serializers.py # Serializers > Expanding the usefulness of the serializers is something that we would like to address. However, it's not a trivial problem, and it will take some serious design work. > > — Russell Keith-Magee, [Django users group][cite] Serializers allow complex data such as querysets and model instances to be converted to native Python datatypes that can then be easily rendered into `JSON`, `XML` or other content types. Serializers also provide deserialization, allowing parsed data to be converted back into complex types, after first validating the incoming data. The serializers in REST framework work very similarly to Django's `Form` and `ModelForm` classes. We provide a `Serializer` class which gives you a powerful, generic way to control the output of your responses, as well as a `ModelSerializer` class which provides a useful shortcut for creating serializers that deal with model instances and querysets. ## Declaring Serializers Let's start by creating a simple object we can use for example purposes: from datetime import datetime class Comment(object): def __init__(self, email, content, created=None): self.email = email self.content = content self.created = created or datetime.now() comment = Comment(email='leila@example.com', content='foo bar') We'll declare a serializer that we can use to serialize and deserialize data that corresponds to `Comment` objects. Declaring a serializer looks very similar to declaring a form: from rest_framework import serializers class CommentSerializer(serializers.Serializer): email = serializers.EmailField() content = serializers.CharField(max_length=200) created = serializers.DateTimeField() ## Serializing objects We can now use `CommentSerializer` to serialize a comment, or list of comments. Again, using the `Serializer` class looks a lot like using a `Form` class. serializer = CommentSerializer(comment) serializer.data # {'email': u'leila@example.com', 'content': u'foo bar', 'created': datetime.datetime(2012, 8, 22, 16, 20, 9, 822774)} At this point we've translated the model instance into Python native datatypes. To finalise the serialization process we render the data into `json`. from rest_framework.renderers import JSONRenderer json = JSONRenderer().render(serializer.data) json # '{"email": "leila@example.com", "content": "foo bar", "created": "2012-08-22T16:20:09.822"}' ## Deserializing objects Deserialization is similar. First we parse a stream into Python native datatypes... from django.utils.six import BytesIO from rest_framework.parsers import JSONParser stream = BytesIO(json) data = JSONParser().parse(stream) ...then we restore those native datatypes into a dictionary of validated data. serializer = CommentSerializer(data=data) serializer.is_valid() # True serializer.validated_data # {'content': 'foo bar', 'email': 'leila@example.com', 'created': datetime.datetime(2012, 08, 22, 16, 20, 09, 822243)} ## Saving instances If we want to be able to return complete object instances based on the validated data we need to implement one or both of the `.create()` and `update()` methods. For example: class CommentSerializer(serializers.Serializer): email = serializers.EmailField() content = serializers.CharField(max_length=200) created = serializers.DateTimeField() def create(self, validated_data): return Comment(**validated_data) def update(self, instance, validated_data): instance.email = validated_data.get('email', instance.email) instance.content = validated_data.get('content', instance.content) instance.created = validated_data.get('created', instance.created) return instance If your object instances correspond to Django models you'll also want to ensure that these methods save the object to the database. For example, if `Comment` was a Django model, the methods might look like this: def create(self, validated_data): return Comment.objects.create(**validated_data) def update(self, instance, validated_data): instance.email = validated_data.get('email', instance.email) instance.content = validated_data.get('content', instance.content) instance.created = validated_data.get('created', instance.created) instance.save() return instance Now when deserializing data, we can call `.save()` to return an object instance, based on the validated data. comment = serializer.save() Calling `.save()` will either create a new instance, or update an existing instance, depending on if an existing instance was passed when instantiating the serializer class: # .save() will create a new instance. serializer = CommentSerializer(data=data) # .save() will update the existing `comment` instance. serializer = CommentSerializer(comment, data=data) Both the `.create()` and `.update()` methods are optional. You can implement either neither, one, or both of them, depending on the use-case for your serializer class. #### Passing additional attributes to `.save()` Sometimes you'll want your view code to be able to inject additional data at the point of saving the instance. This additional data might include information like the current user, the current time, or anything else that is not part of the request data. You can do so by including additional keyword arguments when calling `.save()`. For example: serializer.save(owner=request.user) Any additional keyword arguments will be included in the `validated_data` argument when `.create()` or `.update()` are called. #### Overriding `.save()` directly. In some cases the `.create()` and `.update()` method names may not be meaningful. For example, in a contact form we may not be creating new instances, but instead sending an email or other message. In these cases you might instead choose to override `.save()` directly, as being more readable and meaningful. For example: class ContactForm(serializers.Serializer): email = serializers.EmailField() message = serializers.CharField() def save(self): email = self.validated_data['email'] message = self.validated_data['message'] send_email(from=email, message=message) Note that in the case above we're now having to access the serializer `.validated_data` property directly. ## Validation When deserializing data, you always need to call `is_valid()` before attempting to access the validated data, or save an object instance. If any validation errors occur, the `.errors` property will contain a dictionary representing the resulting error messages. For example: serializer = CommentSerializer(data={'email': 'foobar', 'content': 'baz'}) serializer.is_valid() # False serializer.errors # {'email': [u'Enter a valid e-mail address.'], 'created': [u'This field is required.']} Each key in the dictionary will be the field name, and the values will be lists of strings of any error messages corresponding to that field. The `non_field_errors` key may also be present, and will list any general validation errors. The name of the `non_field_errors` key may be customized using the `NON_FIELD_ERRORS_KEY` REST framework setting. When deserializing a list of items, errors will be returned as a list of dictionaries representing each of the deserialized items. #### Raising an exception on invalid data The `.is_valid()` method takes an optional `raise_exception` flag that will cause it to raise a `serializers.ValidationError` exception if there are validation errors. These exceptions are automatically dealt with by the default exception handler that REST framework provides, and will return `HTTP 400 Bad Request` responses by default. # Return a 400 response if the data was invalid. serializer.is_valid(raise_exception=True) #### Field-level validation You can specify custom field-level validation by adding `.validate_` methods to your `Serializer` subclass. These are similar to the `.clean_` methods on Django forms. These methods take a single argument, which is the field value that requires validation. Your `validate_` methods should return the validated value or raise a `serializers.ValidationError`. For example: from rest_framework import serializers class BlogPostSerializer(serializers.Serializer): title = serializers.CharField(max_length=100) content = serializers.CharField() def validate_title(self, value): """ Check that the blog post is about Django. """ if 'django' not in value.lower(): raise serializers.ValidationError("Blog post is not about Django") return value --- **Note:** If your `` is declared on your serializer with the parameter `required=False` then this validation step will not take place if the field is not included. --- #### Object-level validation To do any other validation that requires access to multiple fields, add a method called `.validate()` to your `Serializer` subclass. This method takes a single argument, which is a dictionary of field values. It should raise a `ValidationError` if necessary, or just return the validated values. For example: from rest_framework import serializers class EventSerializer(serializers.Serializer): description = serializers.CharField(max_length=100) start = serializers.DateTimeField() finish = serializers.DateTimeField() def validate(self, data): """ Check that the start is before the stop. """ if data['start'] > data['finish']: raise serializers.ValidationError("finish must occur after start") return data #### Validators Individual fields on a serializer can include validators, by declaring them on the field instance, for example: def multiple_of_ten(value): if value % 10 != 0: raise serializers.ValidationError('Not a multiple of ten') class GameRecord(serializers.Serializer): score = IntegerField(validators=[multiple_of_ten]) ... Serializer classes can also include reusable validators that are applied to the complete set of field data. These validators are included by declaring them on an inner `Meta` class, like so: class EventSerializer(serializers.Serializer): name = serializers.CharField() room_number = serializers.IntegerField(choices=[101, 102, 103, 201]) date = serializers.DateField() class Meta: # Each room only has one event per day. validators = UniqueTogetherValidator( queryset=Event.objects.all(), fields=['room_number', 'date'] ) For more information see the [validators documentation](validators.md). ## Accessing the initial data and instance When passing an initial object or queryset to a serializer instance, the object will be made available as `.instance`. If no initial object is passed then the `.instance` attribute will be `None`. When passing data to a serializer instance, the unmodified data will be made available as `.initial_data`. If the data keyword argument is not passed then the `.initial_data` attribute will not exist. ## Partial updates By default, serializers must be passed values for all required fields or they will raise validation errors. You can use the `partial` argument in order to allow partial updates. # Update `comment` with partial data serializer = CommentSerializer(comment, data={'content': u'foo bar'}, partial=True) ## Dealing with nested objects The previous examples are fine for dealing with objects that only have simple datatypes, but sometimes we also need to be able to represent more complex objects, where some of the attributes of an object might not be simple datatypes such as strings, dates or integers. The `Serializer` class is itself a type of `Field`, and can be used to represent relationships where one object type is nested inside another. class UserSerializer(serializers.Serializer): email = serializers.EmailField() username = serializers.CharField(max_length=100) class CommentSerializer(serializers.Serializer): user = UserSerializer() content = serializers.CharField(max_length=200) created = serializers.DateTimeField() If a nested representation may optionally accept the `None` value you should pass the `required=False` flag to the nested serializer. class CommentSerializer(serializers.Serializer): user = UserSerializer(required=False) # May be an anonymous user. content = serializers.CharField(max_length=200) created = serializers.DateTimeField() Similarly if a nested representation should be a list of items, you should pass the `many=True` flag to the nested serialized. class CommentSerializer(serializers.Serializer): user = UserSerializer(required=False) edits = EditItemSerializer(many=True) # A nested list of 'edit' items. content = serializers.CharField(max_length=200) created = serializers.DateTimeField() ## Writable nested representations When dealing with nested representations that support deserializing the data, any errors with nested objects will be nested under the field name of the nested object. serializer = CommentSerializer(data={'user': {'email': 'foobar', 'username': 'doe'}, 'content': 'baz'}) serializer.is_valid() # False serializer.errors # {'user': {'email': [u'Enter a valid e-mail address.']}, 'created': [u'This field is required.']} Similarly, the `.validated_data` property will include nested data structures. #### Writing `.create()` methods for nested representations If you're supporting writable nested representations you'll need to write `.create()` or `.update()` methods that handle saving multiple objects. The following example demonstrates how you might handle creating a user with a nested profile object. class UserSerializer(serializers.ModelSerializer): profile = ProfileSerializer() class Meta: model = User fields = ('username', 'email', 'profile') def create(self, validated_data): profile_data = validated_data.pop('profile') user = User.objects.create(**validated_data) Profile.objects.create(user=user, **profile_data) return user #### Writing `.update()` methods for nested representations For updates you'll want to think carefully about how to handle updates to relationships. For example if the data for the relationship is `None`, or not provided, which of the following should occur? * Set the relationship to `NULL` in the database. * Delete the associated instance. * Ignore the data and leave the instance as it is. * Raise a validation error. Here's an example for an `update()` method on our previous `UserSerializer` class. def update(self, instance, validated_data): profile_data = validated_data.pop('profile') # Unless the application properly enforces that this field is # always set, the follow could raise a `DoesNotExist`, which # would need to be handled. profile = instance.profile instance.username = validated_data.get('username', instance.username) instance.email = validated_data.get('email', instance.email) instance.save() profile.is_premium_member = profile_data.get( 'is_premium_member', profile.is_premium_member ) profile.has_support_contract = profile_data.get( 'has_support_contract', profile.has_support_contract ) profile.save() return instance Because the behavior of nested creates and updates can be ambiguous, and may require complex dependencies between related models, REST framework 3 requires you to always write these methods explicitly. The default `ModelSerializer` `.create()` and `.update()` methods do not include support for writable nested representations. It is possible that a third party package, providing automatic support some kinds of automatic writable nested representations may be released alongside the 3.1 release. #### Handling saving related instances in model manager classes An alternative to saving multiple related instances in the serializer is to write custom model manager classes that handle creating the correct instances. For example, suppose we wanted to ensure that `User` instances and `Profile` instances are always created together as a pair. We might write a custom manager class that looks something like this: class UserManager(models.Manager): ... def create(self, username, email, is_premium_member=False, has_support_contract=False): user = User(username=username, email=email) user.save() profile = Profile( user=user, is_premium_member=is_premium_member, has_support_contract=has_support_contract ) profile.save() return user This manager class now more nicely encapsulates that user instances and profile instances are always created at the same time. Our `.create()` method on the serializer class can now be re-written to use the new manager method. def create(self, validated_data): return User.objects.create( username=validated_data['username'], email=validated_data['email'] is_premium_member=validated_data['profile']['is_premium_member'] has_support_contract=validated_data['profile']['has_support_contract'] ) For more details on this approach see the Django documentation on [model managers](model-managers), and [this blogpost on using model and manager classes](encapsulation-blogpost). ## Dealing with multiple objects The `Serializer` class can also handle serializing or deserializing lists of objects. #### Serializing multiple objects To serialize a queryset or list of objects instead of a single object instance, you should pass the `many=True` flag when instantiating the serializer. You can then pass a queryset or list of objects to be serialized. queryset = Book.objects.all() serializer = BookSerializer(queryset, many=True) serializer.data # [ # {'id': 0, 'title': 'The electric kool-aid acid test', 'author': 'Tom Wolfe'}, # {'id': 1, 'title': 'If this is a man', 'author': 'Primo Levi'}, # {'id': 2, 'title': 'The wind-up bird chronicle', 'author': 'Haruki Murakami'} # ] #### Deserializing multiple objects The default behavior for deserializing multiple objects is to support multiple object creation, but not support multiple object updates. For more information on how to support or customize either of these cases, see the [ListSerializer](#listserializer) documentation below. ## Including extra context There are some cases where you need to provide extra context to the serializer in addition to the object being serialized. One common case is if you're using a serializer that includes hyperlinked relations, which requires the serializer to have access to the current request so that it can properly generate fully qualified URLs. You can provide arbitrary additional context by passing a `context` argument when instantiating the serializer. For example: serializer = AccountSerializer(account, context={'request': request}) serializer.data # {'id': 6, 'owner': u'denvercoder9', 'created': datetime.datetime(2013, 2, 12, 09, 44, 56, 678870), 'details': 'http://example.com/accounts/6/details'} The context dictionary can be used within any serializer field logic, such as a custom `.to_representation()` method, by accessing the `self.context` attribute. --- # ModelSerializer Often you'll want serializer classes that map closely to Django model definitions. The `ModelSerializer` class provides a shortcut that lets you automatically create a `Serializer` class with fields that correspond to the Model fields. **The `ModelSerializer` class is the same as a regular `Serializer` class, except that**: * It will automatically generate a set of fields for you, based on the model. * It will automatically generate validators for the serializer, such as unique_together validators. * It includes simple default implementations of `.create()` and `.update()`. Declaring a `ModelSerializer` looks like this: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = ('id', 'account_name', 'users', 'created') By default, all the model fields on the class will be mapped to a corresponding serializer fields. Any relationships such as foreign keys on the model will be mapped to `PrimaryKeyRelatedField`. Reverse relationships are not included by default unless explicitly included as described below. #### Inspecting a `ModelSerializer` Serializer classes generate helpful verbose representation strings, that allow you to fully inspect the state of their fields. This is particularly useful when working with `ModelSerializers` where you want to determine what set of fields and validators are being automatically created for you. To do so, open the Django shell, using `python manage.py shell`, then import the serializer class, instantiate it, and print the object representation… >>> from myapp.serializers import AccountSerializer >>> serializer = AccountSerializer() >>> print repr(serializer) # Or `print(repr(serializer))` in Python 3.x. AccountSerializer(): id = IntegerField(label='ID', read_only=True) name = CharField(allow_blank=True, max_length=100, required=False) owner = PrimaryKeyRelatedField(queryset=User.objects.all()) ## Specifying which fields to include If you only want a subset of the default fields to be used in a model serializer, you can do so using `fields` or `exclude` options, just as you would with a `ModelForm`. It is strongly recommended that you explicitly set all fields that should be serialized using the `fields` attribute. This will make it less likely to result in unintentionally exposing data when your models change. For example: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = ('id', 'account_name', 'users', 'created') You can also set the `fields` attribute to the special value `'__all__'` to indicate that all fields in the model should be used. For example: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = '__all__' You can set the `exclude` attribute to a list of fields to be excluded from the serializer. For example: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account exclude = ('users',) In the example above, if the `Account` model had 3 fields `account_name`, `users`, and `created`, this will result in the fields `account_name` and `created` to be serialized. The names in the `fields` and `exclude` attributes will normally map to model fields on the model class. Alternatively names in the `fields` options can map to properties or methods which take no arguments that exist on the model class. ## Specifying nested serialization The default `ModelSerializer` uses primary keys for relationships, but you can also easily generate nested representations using the `depth` option: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = ('id', 'account_name', 'users', 'created') depth = 1 The `depth` option should be set to an integer value that indicates the depth of relationships that should be traversed before reverting to a flat representation. If you want to customize the way the serialization is done you'll need to define the field yourself. ## Specifying fields explicitly You can add extra fields to a `ModelSerializer` or override the default fields by declaring fields on the class, just as you would for a `Serializer` class. class AccountSerializer(serializers.ModelSerializer): url = serializers.CharField(source='get_absolute_url', read_only=True) groups = serializers.PrimaryKeyRelatedField(many=True) class Meta: model = Account Extra fields can correspond to any property or callable on the model. ## Specifying read only fields You may wish to specify multiple fields as read-only. Instead of adding each field explicitly with the `read_only=True` attribute, you may use the shortcut Meta option, `read_only_fields`. This option should be a list or tuple of field names, and is declared as follows: class AccountSerializer(serializers.ModelSerializer): class Meta: model = Account fields = ('id', 'account_name', 'users', 'created') read_only_fields = ('account_name',) Model fields which have `editable=False` set, and `AutoField` fields will be set to read-only by default, and do not need to be added to the `read_only_fields` option. --- **Note**: There is a special-case where a read-only field is part of a `unique_together` constraint at the model level. In this case the field is required by the serializer class in order to validate the constraint, but should also not be editable by the user. The right way to deal with this is to specify the field explicitly on the serializer, providing both the `read_only=True` and `default=…` keyword arguments. One example of this is a read-only relation to the currently authenticated `User` which is `unique_together` with another identifier. In this case you would declare the user field like so: user = serializers.PrimaryKeyRelatedField(read_only=True, default=serializers.CurrentUserDefault()) Please review the [Validators Documentation](/api-guide/validators/) for details on the [UniqueTogetherValidator](/api-guide/validators/#uniquetogethervalidator) and [CurrentUserDefault](/api-guide/validators/#currentuserdefault) classes. --- ## Additional keyword arguments There is also a shortcut allowing you to specify arbitrary additional keyword arguments on fields, using the `extra_kwargs` option. As in the case of `read_only_fields`, this means you do not need to explicitly declare the field on the serializer. This option is a dictionary, mapping field names to a dictionary of keyword arguments. For example: class CreateUserSerializer(serializers.ModelSerializer): class Meta: model = User fields = ('email', 'username', 'password') extra_kwargs = {'password': {'write_only': True}} def create(self, validated_data): user = User( email=validated_data['email'], username=validated_data['username'] ) user.set_password(validated_data['password']) user.save() return user ## Relational fields When serializing model instances, there are a number of different ways you might choose to represent relationships. The default representation for `ModelSerializer` is to use the primary keys of the related instances. Alternative representations include serializing using hyperlinks, serializing complete nested representations, or serializing with a custom representation. For full details see the [serializer relations][relations] documentation. ## Inheritance of the 'Meta' class The inner `Meta` class on serializers is not inherited from parent classes by default. This is the same behavior as with Django's `Model` and `ModelForm` classes. If you want the `Meta` class to inherit from a parent class you must do so explicitly. For example: class AccountSerializer(MyBaseSerializer): class Meta(MyBaseSerializer.Meta): model = Account Typically we would recommend *not* using inheritance on inner Meta classes, but instead declaring all options explicitly. ## Customizing field mappings The ModelSerializer class also exposes an API that you can override in order to alter how serializer fields are automatically determined when instantiating the serializer. Normally if a `ModelSerializer` does not generate the fields you need by default then you should either add them to the class explicitly, or simply use a regular `Serializer` class instead. However in some cases you may want to create a new base class that defines how the serializer fields are created for any given model. ### `.serializer_field_mapping` A mapping of Django model classes to REST framework serializer classes. You can override this mapping to alter the default serializer classes that should be used for each model class. ### `.serializer_related_field` This property should be the serializer field class, that is used for relational fields by default. For `ModelSerializer` this defaults to `PrimaryKeyRelatedField`. For `HyperlinkedModelSerializer` this defaults to `serializers.HyperlinkedRelatedField`. ### `serializer_url_field` The serializer field class that should be used for any `url` field on the serializer. Defaults to `serializers.HyperlinkedIdentityField` ### `serializer_choice_field` The serializer field class that should be used for any choice fields on the serializer. Defaults to `serializers.ChoiceField` ### The field_class and field_kwargs API The following methods are called to determine the class and keyword arguments for each field that should be automatically included on the serializer. Each of these methods should return a two tuple of `(field_class, field_kwargs)`. ### `.build_standard_field(self, field_name, model_field)` Called to generate a serializer field that maps to a standard model field. The default implementation returns a serializer class based on the `serializer_field_mapping` attribute. ### `.build_relational_field(self, field_name, relation_info)` Called to generate a serializer field that maps to a relational model field. The default implementation returns a serializer class based on the `serializer_relational_field` attribute. The `relation_info` argument is a named tuple, that contains `model_field`, `related_model`, `to_many` and `has_through_model` properties. ### `.build_nested_field(self, field_name, relation_info, nested_depth)` Called to generate a serializer field that maps to a relational model field, when the `depth` option has been set. The default implementation dynamically creates a nested serializer class based on either `ModelSerializer` or `HyperlinkedModelSerializer`. The `nested_depth` will be the value of the `depth` option, minus one. The `relation_info` argument is a named tuple, that contains `model_field`, `related_model`, `to_many` and `has_through_model` properties. ### `.build_property_field(self, field_name, model_class)` Called to generate a serializer field that maps to a property or zero-argument method on the model class. The default implementation returns a `ReadOnlyField` class. ### `.build_url_field(self, field_name, model_class)` Called to generate a serializer field for the serializer's own `url` field. The default implementation returns a `HyperlinkedIdentityField` class. ### `.build_unknown_field(self, field_name, model_class)` Called when the field name did not map to any model field or model property. The default implementation raises an error, although subclasses may customize this behavior. --- # HyperlinkedModelSerializer The `HyperlinkedModelSerializer` class is similar to the `ModelSerializer` class except that it uses hyperlinks to represent relationships, rather than primary keys. By default the serializer will include a `url` field instead of a primary key field. The url field will be represented using a `HyperlinkedIdentityField` serializer field, and any relationships on the model will be represented using a `HyperlinkedRelatedField` serializer field. You can explicitly include the primary key by adding it to the `fields` option, for example: class AccountSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = Account fields = ('url', 'id', 'account_name', 'users', 'created') ## How hyperlinked views are determined There needs to be a way of determining which views should be used for hyperlinking to model instances. By default hyperlinks are expected to correspond to a view name that matches the style `'{model_name}-detail'`, and looks up the instance by a `pk` keyword argument. You can override a URL field view name and lookup field by using either, or both of, the `view_name` and `lookup_field` options in the `extra_kwargs` setting, like so: class AccountSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = Account fields = ('account_url', 'account_name', 'users', 'created') extra_kwargs = { 'url': {'view_name': 'accounts', 'lookup_field': 'account_name'} 'users': {'lookup_field': 'username'} } Alternatively you can set the fields on the serializer explicitly. For example: class AccountSerializer(serializers.HyperlinkedModelSerializer): url = serializers.HyperlinkedIdentityField( view_name='accounts', lookup_field='slug' ) users = serializers.HyperlinkedRelatedField( view_name='user-detail', lookup_field='username', many=True, read_only=True ) class Meta: model = Account fields = ('url', 'account_name', 'users', 'created') --- **Tip**: Properly matching together hyperlinked representations and your URL conf can sometimes be a bit fiddly. Printing the `repr` of a `HyperlinkedModelSerializer` instance is a particularly useful way to inspect exactly which view names and lookup fields the relationships are expected to map too. --- ## Changing the URL field name The name of the URL field defaults to 'url'. You can override this globally, by using the `URL_FIELD_NAME` setting. --- # ListSerializer The `ListSerializer` class provides the behavior for serializing and validating multiple objects at once. You won't *typically* need to use `ListSerializer` directly, but should instead simply pass `many=True` when instantiating a serializer. When a serializer is instantiated and `many=True` is passed, a `ListSerializer` instance will be created. The serializer class then becomes a child of the parent `ListSerializer` There *are* a few use cases when you might want to customize the `ListSerializer` behavior. For example: * You want to provide particular validation of the lists, such as always ensuring that there is at least one element in a list. * You want to customize the create or update behavior of multiple objects. For these cases you can modify the class that is used when `many=True` is passed, by using the `list_serializer_class` option on the serializer `Meta` class. For example: class CustomListSerializer(serializers.ListSerializer): ... class CustomSerializer(serializers.Serializer): ... class Meta: list_serializer_class = CustomListSerializer #### Customizing multiple create The default implementation for multiple object creation is to simply call `.create()` for each item in the list. If you want to customize this behavior, you'll need to customize the `.create()` method on `ListSerializer` class that is used when `many=True` is passed. For example: class BookListSerializer(serializers.ListSerializer): def create(self, validated_data): books = [Book(**item) for item in validated_data] return Book.objects.bulk_create(books) class BookSerializer(serializers.Serializer): ... class Meta: list_serializer_class = BookListSerializer #### Customizing multiple update By default the `ListSerializer` class does not support multiple updates. This is because the behavior that should be expected for insertions and deletions is ambiguous. To support multiple updates you'll need to do so explicitly. When writing your multiple update code make sure to keep the following in mind: * How do you determine which instance should be updated for each item in the list of data? * How should insertions be handled? Are they invalid, or do they create new objects? * How should removals be handled? Do they imply object deletion, or removing a relationship? Should they be silently ignored, or are they invalid? * How should ordering be handled? Does changing the position of two items imply any state change or is it ignored? Here's an example of how you might choose to implement multiple updates: class BookListSerializer(serializers.ListSerializer): def update(self, instance, validated_data): # Maps for id->instance and id->data item. book_mapping = {book.id: book for book in instance} data_mapping = {item['id']: item for item in validated_data} # Perform creations and updates. ret = [] for book_id, data in data_mapping.items(): book = book_mapping.get(book_id, None): if book is None: ret.append(self.child.create(data)) else: ret.append(self.child.update(book, data)) # Perform deletions. for book_id, book in book_mapping.items(): if book_id not in data_mapping: book.delete() return ret class BookSerializer(serializers.Serializer): # We need to identify elements in the list using their primary key, # so use a writable field here, rather than the default which would be read-only. id = serializers.IntegerField() ... class Meta: list_serializer_class = BookListSerializer It is possible that a third party package may be included alongside the 3.1 release that provides some automatic support for multiple update operations, similar to the `allow_add_remove` behavior that was present in REST framework 2. #### Customizing ListSerializer initialization When a serializer with `many=True` is instantiated, we need to determine which arguments and keyword arguments should be passed to the `.__init__()` method for both the child `Serializer` class, and for the parent `ListSerializer` class. The default implementation is to pass all arguments to both classes, except for `validators`, and any custom keyword arguments, both of which are assumed to be intended for the child serializer class. Occasionally you might need to explicitly specify how the child and parent classes should be instantiated when `many=True` is passed. You can do so by using the `many_init` class method. @classmethod def many_init(cls, *args, **kwargs): # Instantiate the child serializer. kwargs['child'] = cls() # Instantiate the parent list serializer. return CustomListSerializer(*args, **kwargs) --- # BaseSerializer `BaseSerializer` class that can be used to easily support alternative serialization and deserialization styles. This class implements the same basic API as the `Serializer` class: * `.data` - Returns the outgoing primitive representation. * `.is_valid()` - Deserializes and validates incoming data. * `.validated_data` - Returns the validated incoming data. * `.errors` - Returns any errors during validation. * `.save()` - Persists the validated data into an object instance. There are four methods that can be overridden, depending on what functionality you want the serializer class to support: * `.to_representation()` - Override this to support serialization, for read operations. * `.to_internal_value()` - Override this to support deserialization, for write operations. * `.create()` and `.update()` - Override either or both of these to support saving instances. Because this class provides the same interface as the `Serializer` class, you can use it with the existing generic class based views exactly as you would for a regular `Serializer` or `ModelSerializer`. The only difference you'll notice when doing so is the `BaseSerializer` classes will not generate HTML forms in the browsable API. This is because the data they return does not include all the field information that would allow each field to be rendered into a suitable HTML input. ##### Read-only `BaseSerializer` classes To implement a read-only serializer using the `BaseSerializer` class, we just need to override the `.to_representation()` method. Let's take a look at an example using a simple Django model: class HighScore(models.Model): created = models.DateTimeField(auto_now_add=True) player_name = models.CharField(max_length=10) score = models.IntegerField() It's simple to create a read-only serializer for converting `HighScore` instances into primitive data types. class HighScoreSerializer(serializers.BaseSerializer): def to_representation(self, obj): return { 'score': obj.score, 'player_name': obj.player_name } We can now use this class to serialize single `HighScore` instances: @api_view(['GET']) def high_score(request, pk): instance = HighScore.objects.get(pk=pk) serializer = HighScoreSerializer(instance) return Response(serializer.data) Or use it to serialize multiple instances: @api_view(['GET']) def all_high_scores(request): queryset = HighScore.objects.order_by('-score') serializer = HighScoreSerializer(queryset, many=True) return Response(serializer.data) ##### Read-write `BaseSerializer` classes To create a read-write serializer we first need to implement a `.to_internal_value()` method. This method returns the validated values that will be used to construct the object instance, and may raise a `ValidationError` if the supplied data is in an incorrect format. Once you've implemented `.to_internal_value()`, the basic validation API will be available on the serializer, and you will be able to use `.is_valid()`, `.validated_data` and `.errors`. If you want to also support `.save()` you'll need to also implement either or both of the `.create()` and `.update()` methods. Here's a complete example of our previous `HighScoreSerializer`, that's been updated to support both read and write operations. class HighScoreSerializer(serializers.BaseSerializer): def to_internal_value(self, data): score = data.get('score') player_name = data.get('player_name') # Perform the data validation. if not score: raise ValidationError({ 'score': 'This field is required.' }) if not player_name: raise ValidationError({ 'player_name': 'This field is required.' }) if len(player_name) > 10: raise ValidationError({ 'player_name': 'May not be more than 10 characters.' }) # Return the validated values. This will be available as # the `.validated_data` property. return { 'score': int(score), 'player_name': player_name } def to_representation(self, obj): return { 'score': obj.score, 'player_name': obj.player_name } def create(self, validated_data): return HighScore.objects.create(**validated_data) #### Creating new base classes The `BaseSerializer` class is also useful if you want to implement new generic serializer classes for dealing with particular serialization styles, or for integrating with alternative storage backends. The following class is an example of a generic serializer that can handle coercing arbitrary objects into primitive representations. class ObjectSerializer(serializers.BaseSerializer): """ A read-only serializer that coerces arbitrary complex objects into primitive representations. """ def to_representation(self, obj): for attribute_name in dir(obj): attribute = getattr(obj, attribute_name) if attribute_name('_'): # Ignore private attributes. pass elif hasattr(attribute, '__call__'): # Ignore methods and other callables. pass elif isinstance(attribute, (str, int, bool, float, type(None))): # Primitive types can be passed through unmodified. output[attribute_name] = attribute elif isinstance(attribute, list): # Recursively deal with items in lists. output[attribute_name] = [ self.to_representation(item) for item in attribute ] elif isinstance(attribute, dict): # Recursively deal with items in dictionaries. output[attribute_name] = { str(key): self.to_representation(value) for key, value in attribute.items() } else: # Force anything else to its string representation. output[attribute_name] = str(attribute) --- # Advanced serializer usage ## Overriding serialization and deserialization behavior If you need to alter the serialization, deserialization or validation of a serializer class you can do so by overriding the `.to_representation()` or `.to_internal_value()` methods. Some reasons this might be useful include... * Adding new behavior for new serializer base classes. * Modifying the behavior slightly for an existing class. * Improving serialization performance for a frequently accessed API endpoint that returns lots of data. The signatures for these methods are as follows: #### `.to_representation(self, obj)` Takes the object instance that requires serialization, and should return a primitive representation. Typically this means returning a structure of built-in Python datatypes. The exact types that can be handled will depend on the render classes you have configured for your API. #### ``.to_internal_value(self, data)`` Takes the unvalidated incoming data as input and should return the validated data that will be made available as `serializer.validated_data`. The return value will also be passed to the `.create()` or `.update()` methods if `.save()` is called on the serializer class. If any of the validation fails, then the method should raise a `serializers.ValidationError(errors)`. Typically the `errors` argument here will be a dictionary mapping field names to error messages. The `data` argument passed to this method will normally be the value of `request.data`, so the datatype it provides will depend on the parser classes you have configured for your API. ## Dynamically modifying fields Once a serializer has been initialized, the dictionary of fields that are set on the serializer may be accessed using the `.fields` attribute. Accessing and modifying this attribute allows you to dynamically modify the serializer. Modifying the `fields` argument directly allows you to do interesting things such as changing the arguments on serializer fields at runtime, rather than at the point of declaring the serializer. ### Example For example, if you wanted to be able to set which fields should be used by a serializer at the point of initializing it, you could create a serializer class like so: class DynamicFieldsModelSerializer(serializers.ModelSerializer): """ A ModelSerializer that takes an additional `fields` argument that controls which fields should be displayed. """ def __init__(self, *args, **kwargs): # Don't pass the 'fields' arg up to the superclass fields = kwargs.pop('fields', None) # Instantiate the superclass normally super(DynamicFieldsModelSerializer, self).__init__(*args, **kwargs) if fields is not None: # Drop any fields that are not specified in the `fields` argument. allowed = set(fields) existing = set(self.fields.keys()) for field_name in existing - allowed: self.fields.pop(field_name) This would then allow you to do the following: >>> class UserSerializer(DynamicFieldsModelSerializer): >>> class Meta: >>> model = User >>> fields = ('id', 'username', 'email') >>> >>> print UserSerializer(user) {'id': 2, 'username': 'jonwatts', 'email': 'jon@example.com'} >>> >>> print UserSerializer(user, fields=('id', 'email')) {'id': 2, 'email': 'jon@example.com'} ## Customizing the default fields REST framework 2 provided an API to allow developers to override how a `ModelSerializer` class would automatically generate the default set of fields. This API included the `.get_field()`, `.get_pk_field()` and other methods. Because the serializers have been fundamentally redesigned with 3.0 this API no longer exists. You can still modify the fields that get created but you'll need to refer to the source code, and be aware that if the changes you make are against private bits of API then they may be subject to change. A new interface for controlling this behavior is currently planned for REST framework 3.1. --- # Third party packages The following third party packages are also available. ## Django REST marshmallow The [django-rest-marshmallow][django-rest-marshmallow] package provides an alternative implementation for serializers, using the python [marshmallow][marshmallow] library. It exposes the same API as the REST framework serializers, and can be used as a drop-in replacement in some use-cases. ## Serpy The [serpy][serpy] package is an alternative implementation for serializers that is built for speed. [Serpy][serpy] serializes complex datatypes to simple native types. The native types can be easily converted to JSON or any other format needed. ## MongoengineModelSerializer The [django-rest-framework-mongoengine][mongoengine] package provides a `MongoEngineModelSerializer` serializer class that supports using MongoDB as the storage layer for Django REST framework. ## GeoFeatureModelSerializer The [django-rest-framework-gis][django-rest-framework-gis] package provides a `GeoFeatureModelSerializer` serializer class that supports GeoJSON both for read and write operations. ## HStoreSerializer The [django-rest-framework-hstore][django-rest-framework-hstore] package provides an `HStoreSerializer` to support [django-hstore][django-hstore] `DictionaryField` model field and its `schema-mode` feature. [cite]: https://groups.google.com/d/topic/django-users/sVFaOfQi4wY/discussion [relations]: relations.md [model-managers]: https://docs.djangoproject.com/en/dev/topics/db/managers/ [encapsulation-blogpost]: http://www.dabapps.com/blog/django-models-and-encapsulation/ [django-rest-marshmallow]: http://tomchristie.github.io/django-rest-marshmallow/ [marshmallow]: https://marshmallow.readthedocs.org/en/latest/ [serpy]: https://github.com/clarkduvall/serpy [mongoengine]: https://github.com/umutbozkurt/django-rest-framework-mongoengine [django-rest-framework-gis]: https://github.com/djangonauts/django-rest-framework-gis [django-rest-framework-hstore]: https://github.com/djangonauts/django-rest-framework-hstore [django-hstore]: https://github.com/djangonauts/django-hstore django-rest-framework-3.3.2/docs/api-guide/settings.md000066400000000000000000000334471263353514300227250ustar00rootroot00000000000000source: settings.py # Settings > Namespaces are one honking great idea - let's do more of those! > > — [The Zen of Python][cite] Configuration for REST framework is all namespaced inside a single Django setting, named `REST_FRAMEWORK`. For example your project's `settings.py` file might include something like this: REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( 'rest_framework.renderers.JSONRenderer', ), 'DEFAULT_PARSER_CLASSES': ( 'rest_framework.parsers.JSONParser', ) } ## Accessing settings If you need to access the values of REST framework's API settings in your project, you should use the `api_settings` object. For example. from rest_framework.settings import api_settings print api_settings.DEFAULT_AUTHENTICATION_CLASSES The `api_settings` object will check for any user-defined settings, and otherwise fall back to the default values. Any setting that uses string import paths to refer to a class will automatically import and return the referenced class, instead of the string literal. --- # API Reference ## API policy settings *The following settings control the basic API policies, and are applied to every `APIView` class based view, or `@api_view` function based view.* #### DEFAULT_RENDERER_CLASSES A list or tuple of renderer classes, that determines the default set of renderers that may be used when returning a `Response` object. Default: ( 'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.BrowsableAPIRenderer', ) #### DEFAULT_PARSER_CLASSES A list or tuple of parser classes, that determines the default set of parsers used when accessing the `request.data` property. Default: ( 'rest_framework.parsers.JSONParser', 'rest_framework.parsers.FormParser', 'rest_framework.parsers.MultiPartParser' ) #### DEFAULT_AUTHENTICATION_CLASSES A list or tuple of authentication classes, that determines the default set of authenticators used when accessing the `request.user` or `request.auth` properties. Default: ( 'rest_framework.authentication.SessionAuthentication', 'rest_framework.authentication.BasicAuthentication' ) #### DEFAULT_PERMISSION_CLASSES A list or tuple of permission classes, that determines the default set of permissions checked at the start of a view. Permission must be granted by every class in the list. Default: ( 'rest_framework.permissions.AllowAny', ) #### DEFAULT_THROTTLE_CLASSES A list or tuple of throttle classes, that determines the default set of throttles checked at the start of a view. Default: `()` #### DEFAULT_CONTENT_NEGOTIATION_CLASS A content negotiation class, that determines how a renderer is selected for the response, given an incoming request. Default: `'rest_framework.negotiation.DefaultContentNegotiation'` --- ## Generic view settings *The following settings control the behavior of the generic class based views.* #### DEFAULT_PAGINATION_SERIALIZER_CLASS A class the determines the default serialization style for paginated responses. Default: `rest_framework.pagination.PaginationSerializer` #### DEFAULT_FILTER_BACKENDS A list of filter backend classes that should be used for generic filtering. If set to `None` then generic filtering is disabled. #### PAGINATE_BY The default page size to use for pagination. If set to `None`, pagination is disabled by default. Default: `None` #### PAGINATE_BY_PARAM --- **This setting is pending deprecation.** See the pagination documentation for further guidance on [setting the pagination style](pagination.md#modifying-the-pagination-style). --- The name of a query parameter, which can be used by the client to override the default page size to use for pagination. If set to `None`, clients may not override the default page size. For example, given the following settings: REST_FRAMEWORK = { 'PAGINATE_BY': 10, 'PAGINATE_BY_PARAM': 'page_size', } A client would be able to modify the pagination size by using the `page_size` query parameter. For example: GET http://example.com/api/accounts?page_size=25 Default: `None` #### MAX_PAGINATE_BY --- **This setting is pending deprecation.** See the pagination documentation for further guidance on [setting the pagination style](pagination.md#modifying-the-pagination-style). --- The maximum page size to allow when the page size is specified by the client. If set to `None`, then no maximum limit is applied. For example, given the following settings: REST_FRAMEWORK = { 'PAGINATE_BY': 10, 'PAGINATE_BY_PARAM': 'page_size', 'MAX_PAGINATE_BY': 100 } A client request like the following would return a paginated list of up to 100 items. GET http://example.com/api/accounts?page_size=999 Default: `None` ### SEARCH_PARAM The name of a query parameter, which can be used to specify the search term used by `SearchFilter`. Default: `search` #### ORDERING_PARAM The name of a query parameter, which can be used to specify the ordering of results returned by `OrderingFilter`. Default: `ordering` --- ## Versioning settings #### DEFAULT_VERSION The value that should be used for `request.version` when no versioning information is present. Default: `None` #### ALLOWED_VERSIONS If set, this value will restrict the set of versions that may be returned by the versioning scheme, and will raise an error if the provided version if not in this set. Default: `None` #### VERSION_PARAMETER The string that should used for any versioning parameters, such as in the media type or URL query parameters. Default: `'version'` --- ## Authentication settings *The following settings control the behavior of unauthenticated requests.* #### UNAUTHENTICATED_USER The class that should be used to initialize `request.user` for unauthenticated requests. Default: `django.contrib.auth.models.AnonymousUser` #### UNAUTHENTICATED_TOKEN The class that should be used to initialize `request.auth` for unauthenticated requests. Default: `None` --- ## Test settings *The following settings control the behavior of APIRequestFactory and APIClient* #### TEST_REQUEST_DEFAULT_FORMAT The default format that should be used when making test requests. This should match up with the format of one of the renderer classes in the `TEST_REQUEST_RENDERER_CLASSES` setting. Default: `'multipart'` #### TEST_REQUEST_RENDERER_CLASSES The renderer classes that are supported when building test requests. The format of any of these renderer classes may be used when constructing a test request, for example: `client.post('/users', {'username': 'jamie'}, format='json')` Default: ( 'rest_framework.renderers.MultiPartRenderer', 'rest_framework.renderers.JSONRenderer' ) --- ## Content type controls #### URL_FORMAT_OVERRIDE The name of a URL parameter that may be used to override the default content negotiation `Accept` header behavior, by using a `format=…` query parameter in the request URL. For example: `http://example.com/organizations/?format=csv` If the value of this setting is `None` then URL format overrides will be disabled. Default: `'format'` #### FORMAT_SUFFIX_KWARG The name of a parameter in the URL conf that may be used to provide a format suffix. This setting is applied when using `format_suffix_patterns` to include suffixed URL patterns. For example: `http://example.com/organizations.csv/` Default: `'format'` --- ## Date and time formatting *The following settings are used to control how date and time representations may be parsed and rendered.* #### DATETIME_FORMAT A format string that should be used by default for rendering the output of `DateTimeField` serializer fields. If `None`, then `DateTimeField` serializer fields will return Python `datetime` objects, and the datetime encoding will be determined by the renderer. May be any of `None`, `'iso-8601'` or a Python [strftime format][strftime] string. Default: `'iso-8601'` #### DATETIME_INPUT_FORMATS A list of format strings that should be used by default for parsing inputs to `DateTimeField` serializer fields. May be a list including the string `'iso-8601'` or Python [strftime format][strftime] strings. Default: `['iso-8601']` #### DATE_FORMAT A format string that should be used by default for rendering the output of `DateField` serializer fields. If `None`, then `DateField` serializer fields will return Python `date` objects, and the date encoding will be determined by the renderer. May be any of `None`, `'iso-8601'` or a Python [strftime format][strftime] string. Default: `'iso-8601'` #### DATE_INPUT_FORMATS A list of format strings that should be used by default for parsing inputs to `DateField` serializer fields. May be a list including the string `'iso-8601'` or Python [strftime format][strftime] strings. Default: `['iso-8601']` #### TIME_FORMAT A format string that should be used by default for rendering the output of `TimeField` serializer fields. If `None`, then `TimeField` serializer fields will return Python `time` objects, and the time encoding will be determined by the renderer. May be any of `None`, `'iso-8601'` or a Python [strftime format][strftime] string. Default: `'iso-8601'` #### TIME_INPUT_FORMATS A list of format strings that should be used by default for parsing inputs to `TimeField` serializer fields. May be a list including the string `'iso-8601'` or Python [strftime format][strftime] strings. Default: `['iso-8601']` --- ## Encodings #### UNICODE_JSON When set to `True`, JSON responses will allow unicode characters in responses. For example: {"unicode black star":"★"} When set to `False`, JSON responses will escape non-ascii characters, like so: {"unicode black star":"\u2605"} Both styles conform to [RFC 4627][rfc4627], and are syntactically valid JSON. The unicode style is preferred as being more user-friendly when inspecting API responses. Default: `True` #### COMPACT_JSON When set to `True`, JSON responses will return compact representations, with no spacing after `':'` and `','` characters. For example: {"is_admin":false,"email":"jane@example"} When set to `False`, JSON responses will return slightly more verbose representations, like so: {"is_admin": false, "email": "jane@example"} The default style is to return minified responses, in line with [Heroku's API design guidelines][heroku-minified-json]. Default: `True` #### COERCE_DECIMAL_TO_STRING When returning decimal objects in API representations that do not support a native decimal type, it is normally best to return the value as a string. This avoids the loss of precision that occurs with binary floating point implementations. When set to `True`, the serializer `DecimalField` class will return strings instead of `Decimal` objects. When set to `False`, serializers will return `Decimal` objects, which the default JSON encoder will return as floats. Default: `True` --- ## View names and descriptions **The following settings are used to generate the view names and descriptions, as used in responses to `OPTIONS` requests, and as used in the browsable API.** #### VIEW_NAME_FUNCTION A string representing the function that should be used when generating view names. This should be a function with the following signature: view_name(cls, suffix=None) * `cls`: The view class. Typically the name function would inspect the name of the class when generating a descriptive name, by accessing `cls.__name__`. * `suffix`: The optional suffix used when differentiating individual views in a viewset. Default: `'rest_framework.views.get_view_name'` #### VIEW_DESCRIPTION_FUNCTION A string representing the function that should be used when generating view descriptions. This setting can be changed to support markup styles other than the default markdown. For example, you can use it to support `rst` markup in your view docstrings being output in the browsable API. This should be a function with the following signature: view_description(cls, html=False) * `cls`: The view class. Typically the description function would inspect the docstring of the class when generating a description, by accessing `cls.__doc__` * `html`: A boolean indicating if HTML output is required. `True` when used in the browsable API, and `False` when used in generating `OPTIONS` responses. Default: `'rest_framework.views.get_view_description'` --- ## Miscellaneous settings #### EXCEPTION_HANDLER A string representing the function that should be used when returning a response for any given exception. If the function returns `None`, a 500 error will be raised. This setting can be changed to support error responses other than the default `{"detail": "Failure..."}` responses. For example, you can use it to provide API responses like `{"errors": [{"message": "Failure...", "code": ""} ...]}`. This should be a function with the following signature: exception_handler(exc, context) * `exc`: The exception. Default: `'rest_framework.views.exception_handler'` #### NON_FIELD_ERRORS_KEY A string representing the key that should be used for serializer errors that do not refer to a specific field, but are instead general errors. Default: `'non_field_errors'` #### URL_FIELD_NAME A string representing the key that should be used for the URL fields generated by `HyperlinkedModelSerializer`. Default: `'url'` #### NUM_PROXIES An integer of 0 or more, that may be used to specify the number of application proxies that the API runs behind. This allows throttling to more accurately identify client IP addresses. If set to `None` then less strict IP matching will be used by the throttle classes. Default: `None` [cite]: http://www.python.org/dev/peps/pep-0020/ [rfc4627]: http://www.ietf.org/rfc/rfc4627.txt [heroku-minified-json]: https://github.com/interagent/http-api-design#keep-json-minified-in-all-responses [strftime]: http://docs.python.org/2/library/time.html#time.strftime django-rest-framework-3.3.2/docs/api-guide/status-codes.md000066400000000000000000000100621263353514300234670ustar00rootroot00000000000000source: status.py # Status Codes > 418 I'm a teapot - Any attempt to brew coffee with a teapot should result in the error code "418 I'm a teapot". The resulting entity body MAY be short and stout. > > — [RFC 2324][rfc2324], Hyper Text Coffee Pot Control Protocol Using bare status codes in your responses isn't recommended. REST framework includes a set of named constants that you can use to make more code more obvious and readable. from rest_framework import status from rest_framework.response import Response def empty_view(self): content = {'please move along': 'nothing to see here'} return Response(content, status=status.HTTP_404_NOT_FOUND) The full set of HTTP status codes included in the `status` module is listed below. The module also includes a set of helper functions for testing if a status code is in a given range. from rest_framework import status from rest_framework.test import APITestCase class ExampleTestCase(APITestCase): def test_url_root(self): url = reverse('index') response = self.client.get(url) self.assertTrue(status.is_success(response.status_code)) For more information on proper usage of HTTP status codes see [RFC 2616][rfc2616] and [RFC 6585][rfc6585]. ## Informational - 1xx This class of status code indicates a provisional response. There are no 1xx status codes used in REST framework by default. HTTP_100_CONTINUE HTTP_101_SWITCHING_PROTOCOLS ## Successful - 2xx This class of status code indicates that the client's request was successfully received, understood, and accepted. HTTP_200_OK HTTP_201_CREATED HTTP_202_ACCEPTED HTTP_203_NON_AUTHORITATIVE_INFORMATION HTTP_204_NO_CONTENT HTTP_205_RESET_CONTENT HTTP_206_PARTIAL_CONTENT ## Redirection - 3xx This class of status code indicates that further action needs to be taken by the user agent in order to fulfill the request. HTTP_300_MULTIPLE_CHOICES HTTP_301_MOVED_PERMANENTLY HTTP_302_FOUND HTTP_303_SEE_OTHER HTTP_304_NOT_MODIFIED HTTP_305_USE_PROXY HTTP_306_RESERVED HTTP_307_TEMPORARY_REDIRECT ## Client Error - 4xx The 4xx class of status code is intended for cases in which the client seems to have erred. Except when responding to a HEAD request, the server SHOULD include an entity containing an explanation of the error situation, and whether it is a temporary or permanent condition. HTTP_400_BAD_REQUEST HTTP_401_UNAUTHORIZED HTTP_402_PAYMENT_REQUIRED HTTP_403_FORBIDDEN HTTP_404_NOT_FOUND HTTP_405_METHOD_NOT_ALLOWED HTTP_406_NOT_ACCEPTABLE HTTP_407_PROXY_AUTHENTICATION_REQUIRED HTTP_408_REQUEST_TIMEOUT HTTP_409_CONFLICT HTTP_410_GONE HTTP_411_LENGTH_REQUIRED HTTP_412_PRECONDITION_FAILED HTTP_413_REQUEST_ENTITY_TOO_LARGE HTTP_414_REQUEST_URI_TOO_LONG HTTP_415_UNSUPPORTED_MEDIA_TYPE HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE HTTP_417_EXPECTATION_FAILED HTTP_428_PRECONDITION_REQUIRED HTTP_429_TOO_MANY_REQUESTS HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE ## Server Error - 5xx Response status codes beginning with the digit "5" indicate cases in which the server is aware that it has erred or is incapable of performing the request. Except when responding to a HEAD request, the server SHOULD include an entity containing an explanation of the error situation, and whether it is a temporary or permanent condition. HTTP_500_INTERNAL_SERVER_ERROR HTTP_501_NOT_IMPLEMENTED HTTP_502_BAD_GATEWAY HTTP_503_SERVICE_UNAVAILABLE HTTP_504_GATEWAY_TIMEOUT HTTP_505_HTTP_VERSION_NOT_SUPPORTED HTTP_511_NETWORK_AUTHENTICATION_REQUIRED ## Helper functions The following helper functions are available for identifying the category of the response code. is_informational() # 1xx is_success() # 2xx is_redirect() # 3xx is_client_error() # 4xx is_server_error() # 5xx [rfc2324]: http://www.ietf.org/rfc/rfc2324.txt [rfc2616]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html [rfc6585]: http://tools.ietf.org/html/rfc6585 django-rest-framework-3.3.2/docs/api-guide/testing.md000066400000000000000000000272131263353514300225340ustar00rootroot00000000000000source: test.py # Testing > Code without tests is broken as designed. > > — [Jacob Kaplan-Moss][cite] REST framework includes a few helper classes that extend Django's existing test framework, and improve support for making API requests. # APIRequestFactory Extends [Django's existing `RequestFactory` class][requestfactory]. ## Creating test requests The `APIRequestFactory` class supports an almost identical API to Django's standard `RequestFactory` class. This means that the standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available. from rest_framework.test import APIRequestFactory # Using the standard RequestFactory API to create a form POST request factory = APIRequestFactory() request = factory.post('/notes/', {'title': 'new idea'}) #### Using the `format` argument Methods which create a request body, such as `post`, `put` and `patch`, include a `format` argument, which make it easy to generate requests using a content type other than multipart form data. For example: # Create a JSON POST request factory = APIRequestFactory() request = factory.post('/notes/', {'title': 'new idea'}, format='json') By default the available formats are `'multipart'` and `'json'`. For compatibility with Django's existing `RequestFactory` the default format is `'multipart'`. To support a wider set of request formats, or change the default format, [see the configuration section][configuration]. #### Explicitly encoding the request body If you need to explicitly encode the request body, you can do so by setting the `content_type` flag. For example: request = factory.post('/notes/', json.dumps({'title': 'new idea'}), content_type='application/json') #### PUT and PATCH with form data One difference worth noting between Django's `RequestFactory` and REST framework's `APIRequestFactory` is that multipart form data will be encoded for methods other than just `.post()`. For example, using `APIRequestFactory`, you can make a form PUT request like so: factory = APIRequestFactory() request = factory.put('/notes/547/', {'title': 'remember to email dave'}) Using Django's `RequestFactory`, you'd need to explicitly encode the data yourself: from django.test.client import encode_multipart, RequestFactory factory = RequestFactory() data = {'title': 'remember to email dave'} content = encode_multipart('BoUnDaRyStRiNg', data) content_type = 'multipart/form-data; boundary=BoUnDaRyStRiNg' request = factory.put('/notes/547/', content, content_type=content_type) ## Forcing authentication When testing views directly using a request factory, it's often convenient to be able to directly authenticate the request, rather than having to construct the correct authentication credentials. To forcibly authenticate a request, use the `force_authenticate()` method. from rest_framework.test import force_authenticate factory = APIRequestFactory() user = User.objects.get(username='olivia') view = AccountDetail.as_view() # Make an authenticated request to the view... request = factory.get('/accounts/django-superstars/') force_authenticate(request, user=user) response = view(request) The signature for the method is `force_authenticate(request, user=None, token=None)`. When making the call, either or both of the user and token may be set. For example, when forcibly authenticating using a token, you might do something like the following: user = User.objects.get(username='olivia') request = factory.get('/accounts/django-superstars/') force_authenticate(request, user=user, token=user.token) --- **Note**: When using `APIRequestFactory`, the object that is returned is Django's standard `HttpRequest`, and not REST framework's `Request` object, which is only generated once the view is called. This means that setting attributes directly on the request object may not always have the effect you expect. For example, setting `.token` directly will have no effect, and setting `.user` directly will only work if session authentication is being used. # Request will only authenticate if `SessionAuthentication` is in use. request = factory.get('/accounts/django-superstars/') request.user = user response = view(request) --- ## Forcing CSRF validation By default, requests created with `APIRequestFactory` will not have CSRF validation applied when passed to a REST framework view. If you need to explicitly turn CSRF validation on, you can do so by setting the `enforce_csrf_checks` flag when instantiating the factory. factory = APIRequestFactory(enforce_csrf_checks=True) --- **Note**: It's worth noting that Django's standard `RequestFactory` doesn't need to include this option, because when using regular Django the CSRF validation takes place in middleware, which is not run when testing views directly. When using REST framework, CSRF validation takes place inside the view, so the request factory needs to disable view-level CSRF checks. --- # APIClient Extends [Django's existing `Client` class][client]. ## Making requests The `APIClient` class supports the same request interface as Django's standard `Client` class. This means the that standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available. For example: from rest_framework.test import APIClient client = APIClient() client.post('/notes/', {'title': 'new idea'}, format='json') To support a wider set of request formats, or change the default format, [see the configuration section][configuration]. ## Authenticating #### .login(**kwargs) The `login` method functions exactly as it does with Django's regular `Client` class. This allows you to authenticate requests against any views which include `SessionAuthentication`. # Make all requests in the context of a logged in session. client = APIClient() client.login(username='lauren', password='secret') To logout, call the `logout` method as usual. # Log out client.logout() The `login` method is appropriate for testing APIs that use session authentication, for example web sites which include AJAX interaction with the API. #### .credentials(**kwargs) The `credentials` method can be used to set headers that will then be included on all subsequent requests by the test client. from rest_framework.authtoken.models import Token from rest_framework.test import APIClient # Include an appropriate `Authorization:` header on all requests. token = Token.objects.get(user__username='lauren') client = APIClient() client.credentials(HTTP_AUTHORIZATION='Token ' + token.key) Note that calling `credentials` a second time overwrites any existing credentials. You can unset any existing credentials by calling the method with no arguments. # Stop including any credentials client.credentials() The `credentials` method is appropriate for testing APIs that require authentication headers, such as basic authentication, OAuth1a and OAuth2 authentication, and simple token authentication schemes. #### .force_authenticate(user=None, token=None) Sometimes you may want to bypass authentication, and simple force all requests by the test client to be automatically treated as authenticated. This can be a useful shortcut if you're testing the API but don't want to have to construct valid authentication credentials in order to make test requests. user = User.objects.get(username='lauren') client = APIClient() client.force_authenticate(user=user) To unauthenticate subsequent requests, call `force_authenticate` setting the user and/or token to `None`. client.force_authenticate(user=None) ## CSRF validation By default CSRF validation is not applied when using `APIClient`. If you need to explicitly enable CSRF validation, you can do so by setting the `enforce_csrf_checks` flag when instantiating the client. client = APIClient(enforce_csrf_checks=True) As usual CSRF validation will only apply to any session authenticated views. This means CSRF validation will only occur if the client has been logged in by calling `login()`. --- # Test cases REST framework includes the following test case classes, that mirror the existing Django test case classes, but use `APIClient` instead of Django's default `Client`. * `APISimpleTestCase` * `APITransactionTestCase` * `APITestCase` * `APILiveServerTestCase` ## Example You can use any of REST framework's test case classes as you would for the regular Django test case classes. The `self.client` attribute will be an `APIClient` instance. from django.core.urlresolvers import reverse from rest_framework import status from rest_framework.test import APITestCase from myproject.apps.core.models import Account class AccountTests(APITestCase): def test_create_account(self): """ Ensure we can create a new account object. """ url = reverse('account-list') data = {'name': 'DabApps'} response = self.client.post(url, data, format='json') self.assertEqual(response.status_code, status.HTTP_201_CREATED) self.assertEqual(Account.objects.count(), 1) self.assertEqual(Account.objects.get().name, 'DabApps') --- # Testing responses ## Checking the response data When checking the validity of test responses it's often more convenient to inspect the data that the response was created with, rather than inspecting the fully rendered response. For example, it's easier to inspect `response.data`: response = self.client.get('/users/4/') self.assertEqual(response.data, {'id': 4, 'username': 'lauren'}) Instead of inspecting the result of parsing `response.content`: response = self.client.get('/users/4/') self.assertEqual(json.loads(response.content), {'id': 4, 'username': 'lauren'}) ## Rendering responses If you're testing views directly using `APIRequestFactory`, the responses that are returned will not yet be rendered, as rendering of template responses is performed by Django's internal request-response cycle. In order to access `response.content`, you'll first need to render the response. view = UserDetail.as_view() request = factory.get('/users/4') response = view(request, pk='4') response.render() # Cannot access `response.content` without this. self.assertEqual(response.content, '{"username": "lauren", "id": 4}') --- # Configuration ## Setting the default format The default format used to make test requests may be set using the `TEST_REQUEST_DEFAULT_FORMAT` setting key. For example, to always use JSON for test requests by default instead of standard multipart form requests, set the following in your `settings.py` file: REST_FRAMEWORK = { ... 'TEST_REQUEST_DEFAULT_FORMAT': 'json' } ## Setting the available formats If you need to test requests using something other than multipart or json requests, you can do so by setting the `TEST_REQUEST_RENDERER_CLASSES` setting. For example, to add support for using `format='html'` in test requests, you might have something like this in your `settings.py` file. REST_FRAMEWORK = { ... 'TEST_REQUEST_RENDERER_CLASSES': ( 'rest_framework.renderers.MultiPartRenderer', 'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.TemplateHTMLRenderer' ) } [cite]: http://jacobian.org/writing/django-apps-with-buildout/#s-create-a-test-wrapper [client]: https://docs.djangoproject.com/en/dev/topics/testing/tools/#the-test-client [requestfactory]: https://docs.djangoproject.com/en/dev/topics/testing/advanced/#django.test.client.RequestFactory [configuration]: #configuration django-rest-framework-3.3.2/docs/api-guide/throttling.md000066400000000000000000000221731263353514300232550ustar00rootroot00000000000000source: throttling.py # Throttling > HTTP/1.1 420 Enhance Your Calm > > [Twitter API rate limiting response][cite] Throttling is similar to [permissions], in that it determines if a request should be authorized. Throttles indicate a temporary state, and are used to control the rate of requests that clients can make to an API. As with permissions, multiple throttles may be used. Your API might have a restrictive throttle for unauthenticated requests, and a less restrictive throttle for authenticated requests. Another scenario where you might want to use multiple throttles would be if you need to impose different constraints on different parts of the API, due to some services being particularly resource-intensive. Multiple throttles can also be used if you want to impose both burst throttling rates, and sustained throttling rates. For example, you might want to limit a user to a maximum of 60 requests per minute, and 1000 requests per day. Throttles do not necessarily only refer to rate-limiting requests. For example a storage service might also need to throttle against bandwidth, and a paid data service might want to throttle against a certain number of a records being accessed. ## How throttling is determined As with permissions and authentication, throttling in REST framework is always defined as a list of classes. Before running the main body of the view each throttle in the list is checked. If any throttle check fails an `exceptions.Throttled` exception will be raised, and the main body of the view will not run. ## Setting the throttling policy The default throttling policy may be set globally, using the `DEFAULT_THROTTLE_CLASSES` and `DEFAULT_THROTTLE_RATES` settings. For example. REST_FRAMEWORK = { 'DEFAULT_THROTTLE_CLASSES': ( 'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.UserRateThrottle' ), 'DEFAULT_THROTTLE_RATES': { 'anon': '100/day', 'user': '1000/day' } } The rate descriptions used in `DEFAULT_THROTTLE_RATES` may include `second`, `minute`, `hour` or `day` as the throttle period. You can also set the throttling policy on a per-view or per-viewset basis, using the `APIView` class based views. from rest_framework.response import Response from rest_framework.throttling import UserRateThrottle from rest_framework.views import APIView class ExampleView(APIView): throttle_classes = (UserRateThrottle,) def get(self, request, format=None): content = { 'status': 'request was permitted' } return Response(content) Or, if you're using the `@api_view` decorator with function based views. @api_view(['GET']) @throttle_classes([UserRateThrottle]) def example_view(request, format=None): content = { 'status': 'request was permitted' } return Response(content) ## How clients are identified The `X-Forwarded-For` and `Remote-Addr` HTTP headers are used to uniquely identify client IP addresses for throttling. If the `X-Forwarded-For` header is present then it will be used, otherwise the value of the `Remote-Addr` header will be used. If you need to strictly identify unique client IP addresses, you'll need to first configure the number of application proxies that the API runs behind by setting the `NUM_PROXIES` setting. This setting should be an integer of zero or more. If set to non-zero then the client IP will be identified as being the last IP address in the `X-Forwarded-For` header, once any application proxy IP addresses have first been excluded. If set to zero, then the `Remote-Addr` header will always be used as the identifying IP address. It is important to understand that if you configure the `NUM_PROXIES` setting, then all clients behind a unique [NAT'd](http://en.wikipedia.org/wiki/Network_address_translation) gateway will be treated as a single client. Further context on how the `X-Forwarded-For` header works, and identifying a remote client IP can be [found here][identifing-clients]. ## Setting up the cache The throttle classes provided by REST framework use Django's cache backend. You should make sure that you've set appropriate [cache settings][cache-setting]. The default value of `LocMemCache` backend should be okay for simple setups. See Django's [cache documentation][cache-docs] for more details. If you need to use a cache other than `'default'`, you can do so by creating a custom throttle class and setting the `cache` attribute. For example: class CustomAnonRateThrottle(AnonRateThrottle): cache = get_cache('alternate') You'll need to remember to also set your custom throttle class in the `'DEFAULT_THROTTLE_CLASSES'` settings key, or using the `throttle_classes` view attribute. --- # API Reference ## AnonRateThrottle The `AnonRateThrottle` will only ever throttle unauthenticated users. The IP address of the incoming request is used to generate a unique key to throttle against. The allowed request rate is determined from one of the following (in order of preference). * The `rate` property on the class, which may be provided by overriding `AnonRateThrottle` and setting the property. * The `DEFAULT_THROTTLE_RATES['anon']` setting. `AnonRateThrottle` is suitable if you want to restrict the rate of requests from unknown sources. ## UserRateThrottle The `UserRateThrottle` will throttle users to a given rate of requests across the API. The user id is used to generate a unique key to throttle against. Unauthenticated requests will fall back to using the IP address of the incoming request to generate a unique key to throttle against. The allowed request rate is determined from one of the following (in order of preference). * The `rate` property on the class, which may be provided by overriding `UserRateThrottle` and setting the property. * The `DEFAULT_THROTTLE_RATES['user']` setting. An API may have multiple `UserRateThrottles` in place at the same time. To do so, override `UserRateThrottle` and set a unique "scope" for each class. For example, multiple user throttle rates could be implemented by using the following classes... class BurstRateThrottle(UserRateThrottle): scope = 'burst' class SustainedRateThrottle(UserRateThrottle): scope = 'sustained' ...and the following settings. REST_FRAMEWORK = { 'DEFAULT_THROTTLE_CLASSES': ( 'example.throttles.BurstRateThrottle', 'example.throttles.SustainedRateThrottle' ), 'DEFAULT_THROTTLE_RATES': { 'burst': '60/min', 'sustained': '1000/day' } } `UserRateThrottle` is suitable if you want simple global rate restrictions per-user. ## ScopedRateThrottle The `ScopedRateThrottle` class can be used to restrict access to specific parts of the API. This throttle will only be applied if the view that is being accessed includes a `.throttle_scope` property. The unique throttle key will then be formed by concatenating the "scope" of the request with the unique user id or IP address. The allowed request rate is determined by the `DEFAULT_THROTTLE_RATES` setting using a key from the request "scope". For example, given the following views... class ContactListView(APIView): throttle_scope = 'contacts' ... class ContactDetailView(APIView): throttle_scope = 'contacts' ... class UploadView(APIView): throttle_scope = 'uploads' ... ...and the following settings. REST_FRAMEWORK = { 'DEFAULT_THROTTLE_CLASSES': ( 'rest_framework.throttling.ScopedRateThrottle', ), 'DEFAULT_THROTTLE_RATES': { 'contacts': '1000/day', 'uploads': '20/day' } } User requests to either `ContactListView` or `ContactDetailView` would be restricted to a total of 1000 requests per-day. User requests to `UploadView` would be restricted to 20 requests per day. --- # Custom throttles To create a custom throttle, override `BaseThrottle` and implement `.allow_request(self, request, view)`. The method should return `True` if the request should be allowed, and `False` otherwise. Optionally you may also override the `.wait()` method. If implemented, `.wait()` should return a recommended number of seconds to wait before attempting the next request, or `None`. The `.wait()` method will only be called if `.allow_request()` has previously returned `False`. If the `.wait()` method is implemented and the request is throttled, then a `Retry-After` header will be included in the response. ## Example The following is an example of a rate throttle, that will randomly throttle 1 in every 10 requests. class RandomRateThrottle(throttling.BaseThrottle): def allow_request(self, request, view): return random.randint(1, 10) == 1 [cite]: https://dev.twitter.com/docs/error-codes-responses [permissions]: permissions.md [identifing-clients]: http://oxpedia.org/wiki/index.php?title=AppSuite:Grizzly#Multiple_Proxies_in_front_of_the_cluster [cache-setting]: https://docs.djangoproject.com/en/dev/ref/settings/#caches [cache-docs]: https://docs.djangoproject.com/en/dev/topics/cache/#setting-up-the-cache django-rest-framework-3.3.2/docs/api-guide/validators.md000066400000000000000000000253721263353514300232330ustar00rootroot00000000000000source: validators.py # Validators > Validators can be useful for re-using validation logic between different types of fields. > > — [Django documentation][cite] Most of the time you're dealing with validation in REST framework you'll simply be relying on the default field validation, or writing explicit validation methods on serializer or field classes. However, sometimes you'll want to place your validation logic into reusable components, so that it can easily be reused throughout your codebase. This can be achieved by using validator functions and validator classes. ## Validation in REST framework Validation in Django REST framework serializers is handled a little differently to how validation works in Django's `ModelForm` class. With `ModelForm` the validation is performed partially on the form, and partially on the model instance. With REST framework the validation is performed entirely on the serializer class. This is advantageous for the following reasons: * It introduces a proper separation of concerns, making your code behavior more obvious. * It is easy to switch between using shortcut `ModelSerializer` classes and using explicit `Serializer` classes. Any validation behavior being used for `ModelSerializer` is simple to replicate. * Printing the `repr` of a serializer instance will show you exactly what validation rules it applies. There's no extra hidden validation behavior being called on the model instance. When you're using `ModelSerializer` all of this is handled automatically for you. If you want to drop down to using a `Serializer` classes instead, then you need to define the validation rules explicitly. #### Example As an example of how REST framework uses explicit validation, we'll take a simple model class that has a field with a uniqueness constraint. class CustomerReportRecord(models.Model): time_raised = models.DateTimeField(default=timezone.now, editable=False) reference = models.CharField(unique=True, max_length=20) description = models.TextField() Here's a basic `ModelSerializer` that we can use for creating or updating instances of `CustomerReportRecord`: class CustomerReportSerializer(serializers.ModelSerializer): class Meta: model = CustomerReportRecord If we open up the Django shell using `manage.py shell` we can now >>> from project.example.serializers import CustomerReportSerializer >>> serializer = CustomerReportSerializer() >>> print(repr(serializer)) CustomerReportSerializer(): id = IntegerField(label='ID', read_only=True) time_raised = DateTimeField(read_only=True) reference = CharField(max_length=20, validators=[]) description = CharField(style={'type': 'textarea'}) The interesting bit here is the `reference` field. We can see that the uniqueness constraint is being explicitly enforced by a validator on the serializer field. Because of this more explicit style REST framework includes a few validator classes that are not available in core Django. These classes are detailed below. --- ## UniqueValidator This validator can be used to enforce the `unique=True` constraint on model fields. It takes a single required argument, and an optional `messages` argument: * `queryset` *required* - This is the queryset against which uniqueness should be enforced. * `message` - The error message that should be used when validation fails. This validator should be applied to *serializer fields*, like so: slug = SlugField( max_length=100, validators=[UniqueValidator(queryset=BlogPost.objects.all())] ) ## UniqueTogetherValidator This validator can be used to enforce `unique_together` constraints on model instances. It has two required arguments, and a single optional `messages` argument: * `queryset` *required* - This is the queryset against which uniqueness should be enforced. * `fields` *required* - A list or tuple of field names which should make a unique set. These must exist as fields on the serializer class. * `message` - The error message that should be used when validation fails. The validator should be applied to *serializer classes*, like so: class ExampleSerializer(serializers.Serializer): # ... class Meta: # ToDo items belong to a parent list, and have an ordering defined # by the 'position' field. No two items in a given list may share # the same position. validators = [ UniqueTogetherValidator( queryset=ToDoItem.objects.all(), fields=('list', 'position') ) ] --- **Note**: The `UniqueTogetherValidation` class always imposes an implicit constraint that all the fields it applies to are always treated as required. Fields with `default` values are an exception to this as they always supply a value even when omitted from user input. --- ## UniqueForDateValidator ## UniqueForMonthValidator ## UniqueForYearValidator These validators can be used to enforce the `unique_for_date`, `unique_for_month` and `unique_for_year` constraints on model instances. They take the following arguments: * `queryset` *required* - This is the queryset against which uniqueness should be enforced. * `field` *required* - A field name against which uniqueness in the given date range will be validated. This must exist as a field on the serializer class. * `date_field` *required* - A field name which will be used to determine date range for the uniqueness constrain. This must exist as a field on the serializer class. * `message` - The error message that should be used when validation fails. The validator should be applied to *serializer classes*, like so: class ExampleSerializer(serializers.Serializer): # ... class Meta: # Blog posts should have a slug that is unique for the current year. validators = [ UniqueForYearValidator( queryset=BlogPostItem.objects.all(), field='slug', date_field='published' ) ] The date field that is used for the validation is always required to be present on the serializer class. You can't simply rely on a model class `default=...`, because the value being used for the default wouldn't be generated until after the validation has run. There are a couple of styles you may want to use for this depending on how you want your API to behave. If you're using `ModelSerializer` you'll probably simply rely on the defaults that REST framework generates for you, but if you are using `Serializer` or simply want more explicit control, use on of the styles demonstrated below. #### Using with a writable date field. If you want the date field to be writable the only thing worth noting is that you should ensure that it is always available in the input data, either by setting a `default` argument, or by setting `required=True`. published = serializers.DateTimeField(required=True) #### Using with a read-only date field. If you want the date field to be visible, but not editable by the user, then set `read_only=True` and additionally set a `default=...` argument. published = serializers.DateTimeField(read_only=True, default=timezone.now) The field will not be writable to the user, but the default value will still be passed through to the `validated_data`. #### Using with a hidden date field. If you want the date field to be entirely hidden from the user, then use `HiddenField`. This field type does not accept user input, but instead always returns it's default value to the `validated_data` in the serializer. published = serializers.HiddenField(default=timezone.now) --- **Note**: The `UniqueForValidation` classes always imposes an implicit constraint that the fields they are applied to are always treated as required. Fields with `default` values are an exception to this as they always supply a value even when omitted from user input. --- # Advanced 'default' argument usage Validators that are applied across multiple fields in the serializer can sometimes require a field input that should not be provided by the API client, but that *is* available as input to the validator. Two patterns that you may want to use for this sort of validation include: * Using `HiddenField`. This field will be present in `validated_data` but *will not* be used in the serializer output representation. * Using a standard field with `read_only=True`, but that also includes a `default=…` argument. This field *will* be used in the serializer output representation, but cannot be set directly by the user. REST framework includes a couple of defaults that may be useful in this context. #### CurrentUserDefault A default class that can be used to represent the current user. In order to use this, the 'request' must have been provided as part of the context dictionary when instantiating the serializer. owner = serializers.HiddenField( default=serializers.CurrentUserDefault() ) #### CreateOnlyDefault A default class that can be used to *only set a default argument during create operations*. During updates the field is omitted. It takes a single argument, which is the default value or callable that should be used during create operations. created_at = serializers.DateTimeField( read_only=True, default=CreateOnlyDefault(timezone.now) ) --- # Writing custom validators You can use any of Django's existing validators, or write your own custom validators. ## Function based A validator may be any callable that raises a `serializers.ValidationError` on failure. def even_number(value): if value % 2 != 0: raise serializers.ValidationError('This field must be an even number.') ## Class based To write a class based validator, use the `__call__` method. Class based validators are useful as they allow you to parameterize and reuse behavior. class MultipleOf(object): def __init__(self, base): self.base = base def __call__(self, value): if value % self.base != 0: message = 'This field must be a multiple of %d.' % self.base raise serializers.ValidationError(message) #### Using `set_context()` In some advanced cases you might want a validator to be passed the serializer field it is being used with as additional context. You can do so by declaring a `set_context` method on a class based validator. def set_context(self, serializer_field): # Determine if this is an update or a create operation. # In `__call__` we can then use that information to modify the validation behavior. self.is_update = serializer_field.parent.instance is not None [cite]: https://docs.djangoproject.com/en/dev/ref/validators/ django-rest-framework-3.3.2/docs/api-guide/versioning.md000066400000000000000000000243661263353514300232500ustar00rootroot00000000000000source: versioning.py # Versioning > Versioning an interface is just a "polite" way to kill deployed clients. > > — [Roy Fielding][cite]. API versioning allows you to alter behavior between different clients. REST framework provides for a number of different versioning schemes. Versioning is determined by the incoming client request, and may either be based on the request URL, or based on the request headers. There are a number of valid approaches to approaching versioning. [Non-versioned systems can also be appropriate][roy-fielding-on-versioning], particularly if you're engineering for very long-term systems with multiple clients outside of your control. ## Versioning with REST framework When API versioning is enabled, the `request.version` attribute will contain a string that corresponds to the version requested in the incoming client request. By default, versioning is not enabled, and `request.version` will always return `None`. #### Varying behavior based on the version How you vary the API behavior is up to you, but one example you might typically want is to switch to a different serialization style in a newer version. For example: def get_serializer_class(self): if self.request.version == 'v1': return AccountSerializerVersion1 return AccountSerializer #### Reversing URLs for versioned APIs The `reverse` function included by REST framework ties in with the versioning scheme. You need to make sure to include the current `request` as a keyword argument, like so. from rest_framework.reverse import reverse reverse('bookings-list', request=request) The above function will apply any URL transformations appropriate to the request version. For example: * If `NamespacedVersioning` was being used, and the API version was 'v1', then the URL lookup used would be `'v1:bookings-list'`, which might resolve to a URL like `http://example.org/v1/bookings/`. * If `QueryParameterVersioning` was being used, and the API version was `1.0`, then the returned URL might be something like `http://example.org/bookings/?version=1.0` #### Versioned APIs and hyperlinked serializers When using hyperlinked serialization styles together with a URL based versioning scheme make sure to include the request as context to the serializer. def get(self, request): queryset = Booking.objects.all() serializer = BookingsSerializer(queryset, many=True, context={'request': request}) return Response({'all_bookings': serializer.data}) Doing so will allow any returned URLs to include the appropriate versioning. ## Configuring the versioning scheme The versioning scheme is defined by the `DEFAULT_VERSIONING_CLASS` settings key. REST_FRAMEWORK = { 'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.NamespaceVersioning' } Unless it is explicitly set, the value for `DEFAULT_VERSIONING_CLASS` will be `None`. In this case the `request.version` attribute will always return `None`. You can also set the versioning scheme on an individual view. Typically you won't need to do this, as it makes more sense to have a single versioning scheme used globally. If you do need to do so, use the `versioning_class` attribute. class ProfileList(APIView): versioning_class = versioning.QueryParameterVersioning #### Other versioning settings The following settings keys are also used to control versioning: * `DEFAULT_VERSION`. The value that should be used for `request.version` when no versioning information is present. Defaults to `None`. * `ALLOWED_VERSIONS`. If set, this value will restrict the set of versions that may be returned by the versioning scheme, and will raise an error if the provided version if not in this set. Note that the value used for the `DEFAULT_VERSION` setting is always considered to be part of the `ALLOWED_VERSIONS` set. Defaults to `None`. * `VERSION_PARAM`. The string that should used for any versioning parameters, such as in the media type or URL query parameters. Defaults to `'version'`. You can also set your versioning class plus those three values on a per-view or a per-viewset basis by defining your own versioning scheme and using the `default_version`, `allowed_versions` and `version_param` class variables. For example, if you want to use `URLPathVersioning`: from rest_framework.versioning import URLPathVersioning from rest_framework.views import APIView class ExampleVersioning(URLPathVersioning): default_version = ... allowed_versions = ... version_param = ... class ExampleView(APIVIew): versioning_class = ExampleVersioning --- # API Reference ## AcceptHeaderVersioning This scheme requires the client to specify the version as part of the media type in the `Accept` header. The version is included as a media type parameter, that supplements the main media type. Here's an example HTTP request using the accept header versioning style. GET /bookings/ HTTP/1.1 Host: example.com Accept: application/json; version=1.0 In the example request above `request.version` attribute would return the string `'1.0'`. Versioning based on accept headers is [generally considered][klabnik-guidelines] as [best practice][heroku-guidelines], although other styles may be suitable depending on your client requirements. #### Using accept headers with vendor media types Strictly speaking the `json` media type is not specified as [including additional parameters][json-parameters]. If you are building a well-specified public API you might consider using a [vendor media type][vendor-media-type]. To do so, configure your renderers to use a JSON based renderer with a custom media type: class BookingsAPIRenderer(JSONRenderer): media_type = 'application/vnd.megacorp.bookings+json' Your client requests would now look like this: GET /bookings/ HTTP/1.1 Host: example.com Accept: application/vnd.megacorp.bookings+json; version=1.0 ## URLPathVersioning This scheme requires the client to specify the version as part of the URL path. GET /v1/bookings/ HTTP/1.1 Host: example.com Accept: application/json Your URL conf must include a pattern that matches the version with a `'version'` keyword argument, so that this information is available to the versioning scheme. urlpatterns = [ url( r'^(?P(v1|v2))/bookings/$', bookings_list, name='bookings-list' ), url( r'^(?P(v1|v2))/bookings/(?P[0-9]+)/$', bookings_detail, name='bookings-detail' ) ] ## NamespaceVersioning To the client, this scheme is the same as `URLParameterVersioning`. The only difference is how it is configured in your Django application, as it uses URL namespacing, instead of URL keyword arguments. GET /v1/something/ HTTP/1.1 Host: example.com Accept: application/json With this scheme the `request.version` attribute is determined based on the `namespace` that matches the incoming request path. In the following example we're giving a set of views two different possible URL prefixes, each under a different namespace: # bookings/urls.py urlpatterns = [ url(r'^$', bookings_list, name='bookings-list'), url(r'^(?P[0-9]+)/$', bookings_detail, name='bookings-detail') ] # urls.py urlpatterns = [ url(r'^v1/bookings/', include('bookings.urls', namespace='v1')), url(r'^v2/bookings/', include('bookings.urls', namespace='v2')) ] Both `URLParameterVersioning` and `NamespaceVersioning` are reasonable if you just need a simple versioning scheme. The `URLParameterVersioning` approach might be better suitable for small ad-hoc projects, and the `NamespaceVersioning` is probably easier to manage for larger projects. ## HostNameVersioning The hostname versioning scheme requires the client to specify the requested version as part of the hostname in the URL. For example the following is an HTTP request to the `http://v1.example.com/bookings/` URL: GET /bookings/ HTTP/1.1 Host: v1.example.com Accept: application/json By default this implementation expects the hostname to match this simple regular expression: ^([a-zA-Z0-9]+)\.[a-zA-Z0-9]+\.[a-zA-Z0-9]+$ Note that the first group is enclosed in brackets, indicating that this is the matched portion of the hostname. The `HostNameVersioning` scheme can be awkward to use in debug mode as you will typically be accessing a raw IP address such as `127.0.0.1`. There are various online services which you to [access localhost with a custom subdomain][lvh] which you may find helpful in this case. Hostname based versioning can be particularly useful if you have requirements to route incoming requests to different servers based on the version, as you can configure different DNS records for different API versions. ## QueryParameterVersioning This scheme is a simple style that includes the version as a query parameter in the URL. For example: GET /something/?version=0.1 HTTP/1.1 Host: example.com Accept: application/json --- # Custom versioning schemes To implement a custom versioning scheme, subclass `BaseVersioning` and override the `.determine_version` method. ## Example The following example uses a custom `X-API-Version` header to determine the requested version. class XAPIVersionScheme(versioning.BaseVersioning): def determine_version(self, request, *args, **kwargs): return request.META.get('HTTP_X_API_VERSION', None) If your versioning scheme is based on the request URL, you will also want to alter how versioned URLs are determined. In order to do so you should override the `.reverse()` method on the class. See the source code for examples. [cite]: http://www.slideshare.net/evolve_conference/201308-fielding-evolve/31 [roy-fielding-on-versioning]: http://www.infoq.com/articles/roy-fielding-on-versioning [klabnik-guidelines]: http://blog.steveklabnik.com/posts/2011-07-03-nobody-understands-rest-or-http#i_want_my_api_to_be_versioned [heroku-guidelines]: https://github.com/interagent/http-api-design#version-with-accepts-header [json-parameters]: http://tools.ietf.org/html/rfc4627#section-6 [vendor-media-type]: http://en.wikipedia.org/wiki/Internet_media_type#Vendor_tree [lvh]: https://reinteractive.net/posts/199-developing-and-testing-rails-applications-with-subdomains django-rest-framework-3.3.2/docs/api-guide/views.md000066400000000000000000000160361263353514300222150ustar00rootroot00000000000000source: decorators.py views.py # Class Based Views > Django's class based views are a welcome departure from the old-style views. > > — [Reinout van Rees][cite] REST framework provides an `APIView` class, which subclasses Django's `View` class. `APIView` classes are different from regular `View` classes in the following ways: * Requests passed to the handler methods will be REST framework's `Request` instances, not Django's `HttpRequest` instances. * Handler methods may return REST framework's `Response`, instead of Django's `HttpResponse`. The view will manage content negotiation and setting the correct renderer on the response. * Any `APIException` exceptions will be caught and mediated into appropriate responses. * Incoming requests will be authenticated and appropriate permission and/or throttle checks will be run before dispatching the request to the handler method. Using the `APIView` class is pretty much the same as using a regular `View` class, as usual, the incoming request is dispatched to an appropriate handler method such as `.get()` or `.post()`. Additionally, a number of attributes may be set on the class that control various aspects of the API policy. For example: from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import authentication, permissions class ListUsers(APIView): """ View to list all users in the system. * Requires token authentication. * Only admin users are able to access this view. """ authentication_classes = (authentication.TokenAuthentication,) permission_classes = (permissions.IsAdminUser,) def get(self, request, format=None): """ Return a list of all users. """ usernames = [user.username for user in User.objects.all()] return Response(usernames) ## API policy attributes The following attributes control the pluggable aspects of API views. ### .renderer_classes ### .parser_classes ### .authentication_classes ### .throttle_classes ### .permission_classes ### .content_negotiation_class ## API policy instantiation methods The following methods are used by REST framework to instantiate the various pluggable API policies. You won't typically need to override these methods. ### .get_renderers(self) ### .get_parsers(self) ### .get_authenticators(self) ### .get_throttles(self) ### .get_permissions(self) ### .get_content_negotiator(self) ## API policy implementation methods The following methods are called before dispatching to the handler method. ### .check_permissions(self, request) ### .check_throttles(self, request) ### .perform_content_negotiation(self, request, force=False) ## Dispatch methods The following methods are called directly by the view's `.dispatch()` method. These perform any actions that need to occur before or after calling the handler methods such as `.get()`, `.post()`, `put()`, `patch()` and `.delete()`. ### .initial(self, request, \*args, **kwargs) Performs any actions that need to occur before the handler method gets called. This method is used to enforce permissions and throttling, and perform content negotiation. You won't typically need to override this method. ### .handle_exception(self, exc) Any exception thrown by the handler method will be passed to this method, which either returns a `Response` instance, or re-raises the exception. The default implementation handles any subclass of `rest_framework.exceptions.APIException`, as well as Django's `Http404` and `PermissionDenied` exceptions, and returns an appropriate error response. If you need to customize the error responses your API returns you should subclass this method. ### .initialize_request(self, request, \*args, **kwargs) Ensures that the request object that is passed to the handler method is an instance of `Request`, rather than the usual Django `HttpRequest`. You won't typically need to override this method. ### .finalize_response(self, request, response, \*args, **kwargs) Ensures that any `Response` object returned from the handler method will be rendered into the correct content type, as determined by the content negotiation. You won't typically need to override this method. --- # Function Based Views > Saying [that Class based views] is always the superior solution is a mistake. > > — [Nick Coghlan][cite2] REST framework also allows you to work with regular function based views. It provides a set of simple decorators that wrap your function based views to ensure they receive an instance of `Request` (rather than the usual Django `HttpRequest`) and allows them to return a `Response` (instead of a Django `HttpResponse`), and allow you to configure how the request is processed. ## @api_view() **Signature:** `@api_view(http_method_names=['GET'])` The core of this functionality is the `api_view` decorator, which takes a list of HTTP methods that your view should respond to. For example, this is how you would write a very simple view that just manually returns some data: from rest_framework.decorators import api_view @api_view() def hello_world(request): return Response({"message": "Hello, world!"}) This view will use the default renderers, parsers, authentication classes etc specified in the [settings]. By default only `GET` methods will be accepted. Other methods will respond with "405 Method Not Allowed". To alter this behavior, specify which methods the view allows, like so: @api_view(['GET', 'POST']) def hello_world(request): if request.method == 'POST': return Response({"message": "Got some data!", "data": request.data}) return Response({"message": "Hello, world!"}) ## API policy decorators To override the default settings, REST framework provides a set of additional decorators which can be added to your views. These must come *after* (below) the `@api_view` decorator. For example, to create a view that uses a [throttle][throttling] to ensure it can only be called once per day by a particular user, use the `@throttle_classes` decorator, passing a list of throttle classes: from rest_framework.decorators import api_view, throttle_classes from rest_framework.throttling import UserRateThrottle class OncePerDayUserThrottle(UserRateThrottle): rate = '1/day' @api_view(['GET']) @throttle_classes([OncePerDayUserThrottle]) def view(request): return Response({"message": "Hello for today! See you tomorrow!"}) These decorators correspond to the attributes set on `APIView` subclasses, described above. The available decorators are: * `@renderer_classes(...)` * `@parser_classes(...)` * `@authentication_classes(...)` * `@throttle_classes(...)` * `@permission_classes(...)` Each of these decorators takes a single argument which must be a list or tuple of classes. [cite]: http://reinout.vanrees.org/weblog/2011/08/24/class-based-views-usage.html [cite2]: http://www.boredomandlaziness.org/2012/05/djangos-cbvs-are-not-mistake-but.html [settings]: settings.md [throttling]: throttling.md django-rest-framework-3.3.2/docs/api-guide/viewsets.md000066400000000000000000000257121263353514300227320ustar00rootroot00000000000000source: viewsets.py # ViewSets > After routing has determined which controller to use for a request, your controller is responsible for making sense of the request and producing the appropriate output. > > — [Ruby on Rails Documentation][cite] Django REST framework allows you to combine the logic for a set of related views in a single class, called a `ViewSet`. In other frameworks you may also find conceptually similar implementations named something like 'Resources' or 'Controllers'. A `ViewSet` class is simply **a type of class-based View, that does not provide any method handlers** such as `.get()` or `.post()`, and instead provides actions such as `.list()` and `.create()`. The method handlers for a `ViewSet` are only bound to the corresponding actions at the point of finalizing the view, using the `.as_view()` method. Typically, rather than explicitly registering the views in a viewset in the urlconf, you'll register the viewset with a router class, that automatically determines the urlconf for you. ## Example Let's define a simple viewset that can be used to list or retrieve all the users in the system. from django.contrib.auth.models import User from django.shortcuts import get_object_or_404 from myapps.serializers import UserSerializer from rest_framework import viewsets from rest_framework.response import Response class UserViewSet(viewsets.ViewSet): """ A simple ViewSet for listing or retrieving users. """ def list(self, request): queryset = User.objects.all() serializer = UserSerializer(queryset, many=True) return Response(serializer.data) def retrieve(self, request, pk=None): queryset = User.objects.all() user = get_object_or_404(queryset, pk=pk) serializer = UserSerializer(user) return Response(serializer.data) If we need to, we can bind this viewset into two separate views, like so: user_list = UserViewSet.as_view({'get': 'list'}) user_detail = UserViewSet.as_view({'get': 'retrieve'}) Typically we wouldn't do this, but would instead register the viewset with a router, and allow the urlconf to be automatically generated. from myapp.views import UserViewSet from rest_framework.routers import DefaultRouter router = DefaultRouter() router.register(r'users', UserViewSet) urlpatterns = router.urls Rather than writing your own viewsets, you'll often want to use the existing base classes that provide a default set of behavior. For example: class UserViewSet(viewsets.ModelViewSet): """ A viewset for viewing and editing user instances. """ serializer_class = UserSerializer queryset = User.objects.all() There are two main advantages of using a `ViewSet` class over using a `View` class. * Repeated logic can be combined into a single class. In the above example, we only need to specify the `queryset` once, and it'll be used across multiple views. * By using routers, we no longer need to deal with wiring up the URL conf ourselves. Both of these come with a trade-off. Using regular views and URL confs is more explicit and gives you more control. ViewSets are helpful if you want to get up and running quickly, or when you have a large API and you want to enforce a consistent URL configuration throughout. ## Marking extra actions for routing The default routers included with REST framework will provide routes for a standard set of create/retrieve/update/destroy style operations, as shown below: class UserViewSet(viewsets.ViewSet): """ Example empty viewset demonstrating the standard actions that will be handled by a router class. If you're using format suffixes, make sure to also include the `format=None` keyword argument for each action. """ def list(self, request): pass def create(self, request): pass def retrieve(self, request, pk=None): pass def update(self, request, pk=None): pass def partial_update(self, request, pk=None): pass def destroy(self, request, pk=None): pass If you have ad-hoc methods that you need to be routed to, you can mark them as requiring routing using the `@detail_route` or `@list_route` decorators. The `@detail_route` decorator contains `pk` in its URL pattern and is intended for methods which require a single instance. The `@list_route` decorator is intended for methods which operate on a list of objects. For example: from django.contrib.auth.models import User from rest_framework import status from rest_framework import viewsets from rest_framework.decorators import detail_route, list_route from rest_framework.response import Response from myapp.serializers import UserSerializer, PasswordSerializer class UserViewSet(viewsets.ModelViewSet): """ A viewset that provides the standard actions """ queryset = User.objects.all() serializer_class = UserSerializer @detail_route(methods=['post']) def set_password(self, request, pk=None): user = self.get_object() serializer = PasswordSerializer(data=request.data) if serializer.is_valid(): user.set_password(serializer.data['password']) user.save() return Response({'status': 'password set'}) else: return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) @list_route() def recent_users(self, request): recent_users = User.objects.all().order('-last_login') page = self.paginate_queryset(recent_users) if page is not None: serializer = self.get_serializer(page, many=True) return self.get_paginated_response(serializer.data) serializer = self.get_serializer(recent_users, many=True) return Response(serializer.data) The decorators can additionally take extra arguments that will be set for the routed view only. For example... @detail_route(methods=['post'], permission_classes=[IsAdminOrIsSelf]) def set_password(self, request, pk=None): ... These decorators will route `GET` requests by default, but may also accept other HTTP methods, by using the `methods` argument. For example: @detail_route(methods=['post', 'delete']) def unset_password(self, request, pk=None): ... The two new actions will then be available at the urls `^users/{pk}/set_password/$` and `^users/{pk}/unset_password/$` --- # API Reference ## ViewSet The `ViewSet` class inherits from `APIView`. You can use any of the standard attributes such as `permission_classes`, `authentication_classes` in order to control the API policy on the viewset. The `ViewSet` class does not provide any implementations of actions. In order to use a `ViewSet` class you'll override the class and define the action implementations explicitly. ## GenericViewSet The `GenericViewSet` class inherits from `GenericAPIView`, and provides the default set of `get_object`, `get_queryset` methods and other generic view base behavior, but does not include any actions by default. In order to use a `GenericViewSet` class you'll override the class and either mixin the required mixin classes, or define the action implementations explicitly. ## ModelViewSet The `ModelViewSet` class inherits from `GenericAPIView` and includes implementations for various actions, by mixing in the behavior of the various mixin classes. The actions provided by the `ModelViewSet` class are `.list()`, `.retrieve()`, `.create()`, `.update()`, and `.destroy()`. #### Example Because `ModelViewSet` extends `GenericAPIView`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes. For example: class AccountViewSet(viewsets.ModelViewSet): """ A simple ViewSet for viewing and editing accounts. """ queryset = Account.objects.all() serializer_class = AccountSerializer permission_classes = [IsAccountAdminOrReadOnly] Note that you can use any of the standard attributes or method overrides provided by `GenericAPIView`. For example, to use a `ViewSet` that dynamically determines the queryset it should operate on, you might do something like this: class AccountViewSet(viewsets.ModelViewSet): """ A simple ViewSet for viewing and editing the accounts associated with the user. """ serializer_class = AccountSerializer permission_classes = [IsAccountAdminOrReadOnly] def get_queryset(self): return self.request.user.accounts.all() Note however that upon removal of the `queryset` property from your `ViewSet`, any associated [router][routers] will be unable to derive the base_name of your Model automatically, and so you will have to specify the `base_name` kwarg as part of your [router registration][routers]. Also note that although this class provides the complete set of create/list/retrieve/update/destroy actions by default, you can restrict the available operations by using the standard permission classes. ## ReadOnlyModelViewSet The `ReadOnlyModelViewSet` class also inherits from `GenericAPIView`. As with `ModelViewSet` it also includes implementations for various actions, but unlike `ModelViewSet` only provides the 'read-only' actions, `.list()` and `.retrieve()`. #### Example As with `ModelViewSet`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes. For example: class AccountViewSet(viewsets.ReadOnlyModelViewSet): """ A simple ViewSet for viewing accounts. """ queryset = Account.objects.all() serializer_class = AccountSerializer Again, as with `ModelViewSet`, you can use any of the standard attributes and method overrides available to `GenericAPIView`. # Custom ViewSet base classes You may need to provide custom `ViewSet` classes that do not have the full set of `ModelViewSet` actions, or that customize the behavior in some other way. ## Example To create a base viewset class that provides `create`, `list` and `retrieve` operations, inherit from `GenericViewSet`, and mixin the required actions: class CreateListRetrieveViewSet(mixins.CreateModelMixin, mixins.ListModelMixin, mixins.RetrieveModelMixin, viewsets.GenericViewSet): """ A viewset that provides `retrieve`, `create`, and `list` actions. To use it, override the class and set the `.queryset` and `.serializer_class` attributes. """ pass By creating your own base `ViewSet` classes, you can provide common behavior that can be reused in multiple viewsets across your API. [cite]: http://guides.rubyonrails.org/routing.html [routers]: routers.md django-rest-framework-3.3.2/docs/img/000077500000000000000000000000001263353514300174405ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/img/admin.png000066400000000000000000001551401263353514300212440ustar00rootroot00000000000000PNG  IHDRK3 iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 996 528 ڭ:@IDATx @Tu?/ 3< O0( ڈbS.YUov]-ww+wҺv7ReHHb 039w`f|m{>?wAߞ $ ̦>S D$8B,A$I%,4>"L`@L&KP1 DY4s!(M$HdHw(N3X}A$X,D'0 ,BfLLh$X$hGLfK@hIPG h08Wm!F4@kƐ{vl @@ w = @  @@` X^A @3 @ Y+~A \Ayyy= @ Yī>A @ Xm@ @݂ @u @Pza-@  X=@ @݂ @u @Pza-@  X=@ @݂ @u @Pza-@  X=@ @݂ @u @PakvK*I^*EfdqM @  n_!qx\͹^{)H\d#[㞫s1w^\}X4'-K t关Gγ_P ?pJ$Z7=;bnЩl偐U'iK @. $eݶxۘ1!"ѸS਄yzYAtsS}L ^HiN >R7t'_3\'@ p#goxwIt_>dj?|XGˎT3G @׏@mKn$ϼh :eޒۖ+||ԪI}5vN2/ʌJʛڠ%ԩ9je7 "͚.b6jjNնJn΍T7*H cZOr“ GFĨU֨BUm!V!™ڦn)Ow54P&dW su750wo *o rѝhxnٌ$e^9W})%/'5Qyi8s5)t ŢVUF\xηW3 DBK"RdQD/&*z2xAB0l4Ӏ]56U]Y̞849ZHy|Qb4ITBAQͩ'i,Dɲn\(Tys:of0)!.kLʟ=y nU;"M"zł(I]UÉ, &n6RQTBmwq9X"%eξ|:3k%Ks쫏;C¢2ST5\Ef$7n..Ꞓ5;%g&zѢc$1E m# m#Ay53^=w0gY1:O~Vb)[0'iG @@` 3軪>OK* 94S{NY].|w鳿/h=NL]]f" &\g!t%5&Ec΅Ϳ5; nk'?~>U?91ѡW8ԍO>sne78uN <;3&&svꅲ7#z:LELYmN/7IҌly>vd9<ƚa3iȫR66645яzO_%N]t[x ZVմ̉<i$1D%G꺳sӢ f})H KX4FO'\.HIV"G=gLci ʚzDvٚ -]z?& 丯|U~z,ԯ|utSwⴹ3 ϕydS9l⎜H@ 09U]ߝk4df,ym%KiAn.͢H-GSh/qDVu-07sxs1csU}v5qJss]U ӨO`z*LZt4~EiܚM_;G4ojgm,5r>RIKKN05֖iЗgmӳH\=Ik9z-,,,A=YTe=sGT$IJ~cw%jmbѭ̶OٓWtЙ{OQkrT%n+}Mj2NEtt>QM/Z,5^FsÌM2p'VA|"]cnm颗%[ris=LǍH{s /ϳFJwԼH[b^''QatTk\j /6|q؃ @`r{Կ,ޝ޻|&/}@;'瞞'?}g޹q?Yt'[OҦސs Ȉ0cЦklT-%(Bk}^:ZZIJ+Es7rcS b-sLŦəܢ@ 0)ܼ89?غ?d r)sj=^g]K2Es+}E`]st{0vL~\kꎮЌ n5492\LAU\bjUMmk5ŷ$Iӎ3E 0ڣhys¢joV\\$ ~ p?g.Ɏ@7?&mٟ=4(oFQ$S]ADJ; -$Ydw42\74g Mͬ7Y#I*zG-ZY,w "cnrS#cNnዻ- ]4ZGzT9tvӏ6#e?⏯fqfu 3Rj.4V}r6KMe2.D#O Y{$Jʞ'Ir~HV.X@CJG}4DmlIDdPV֢DFEGp tK{cYf[oH2pPv]ZǧItr:Vs; $+*>77eh!ŜSC>4>%uZ#NI&Ͷ6nKմ fܾ8M"qO:gwS3e^L@@(>ۡ:rHE?Zk&3ۻkkq7⮪1@FU@o  \6'wOJs =>'<99*W5EҸ`\ܾ82;v6:ŹL1#zNSzQu 4Azq!,u2Z-%a9l*ɥ ׈:WDYcw)nϿq*ii|E2))N7sj$$t LWJc+hoĉ0 Ml:5N?eqK'ć: /9VywcD)xO @7.>koڷ~-o葹\yC'b*3?:ڋXqi9;ΆlM?lF5Zw$i(ͯgi>{1R!P1-I3}$^cSO5哓|ݧ1%,ƻRvfms_dj0ROֺXN3#4,1ЗϾ3-k߂uW9qW\e=]z02:JgaK0W:̽/3J60 Zf5ɔEK%3+kZ^j׷iR4β\R{_{PiQ~t]|@؅ @`| g2/t3}/w=ܙ,ś4|E,{4ok3LiGFgo8߂uKW/}9:tu˥s5-ݶsvMN6/$ qfs YI/bƩMZN}YӣD"ڦYG2輯u=}䨩pN&},0_R W[F~vw)cIXJjhu5M:F)cLfȍEٟ<+5'OWQovY,f.b3+4 1*;f0CF_wc}1^R:Z:Ifl#nl%|r{ej:u䤾pVf(,ꮻvEip$z}v: wԜxGZ$//en"gu1 Y?t4}4GID17("B&&]!@/Pq|7>sg-ZD |y۾{˹v.v[˷Nx'(//ozajs#lӱtŰX$ϟ b92Y,_Pѷi ;gZ#\i8 z:Q>!#hHcۨF|t/G(&Ĩn(JS}1yjT +?- Bv~ݽoy؄'I%&Mf:ggli2C mys'PU]٪+\*>YhHO+/xvonP78T@ޘ2cFʔ)ߋv}|^ؗ Dŝu2Vt MqۍiQ\;1 v!@ 84N'+uUiFdҶ\h ͍'OյZ @?hfݟF[ @| @ O @q@ @ @A @ ` @Tz^t  @q@ @ @A @ ` @Tz^t  @q@ @ @A @ ` @Tz^t  @A}}}*zXȥ4T*  hl4X6{ƽ VM⽁ui@   @X @ t1@ Y !@ @b+ @`HC @ @W @ Xg5 @@ X@ @@j @ @@] @+`@ @$`=.@ V $b'9<mb @$Aohh@ݴۻ*|v4"uQ @`tQ }0l4@ ag gEq@ L,0;<`<%rB @V?Y7 @ uoŐ @~@'h4@ o{+ @u?A@ x+`[1 @ @ @[߬>)Ξ-ā9kO 6lsgе]lgDC֞."kfjS:]̬r䚐@[QT@ ¢P7<Ƣ۶c/=)z5'7l/?,3#]ӵV} M!"sn3 ZRrHzwU'ܾ"{_pGO[p1](26W{m4wݞ%{_<%!͟y?|{*=y]o(YGޕkMq%]? osa+B@ ycW5᫴֊-4}/b}K9z%9/_!x:<~c:r|Թ-z$G8?:[,D#0nv]YM3يWf޴8/h{LB.!gUZ!E\pz.[#VΘ// @3XoXum'dǫl%3ӿGјX̾5`-zm'?||o(Jԟ["Y@\I-E&ؚtΟ4q2-#LWO?U]8oj7qlu'J)#B˧ஸle#z @ & =+ToU@{J}}݋qM-^=]Orϛk~NYIV-mӭ#bB~q'Ϥvp oD\MѓCom>&ynJ\~K]dфu, >Swwn ^=Z~*A>\B`-V4 @̃ aρx[n;g@ei1I-4:֣tˢ+sf|΅=pe/nZ`ݣrh i)֟%{[(*Nr|=t |rH\.feŸwV |T(7]ٳ/hyI#~$̕UKCKmnWj sa¿x_e*YJ(Μ#a0#mvn&qSCrՊ-Sܜiv@ /]؁ FW߾,MqHg5\^Z{O SՍN;Db"c _2caG[Ҳh uWgq㒌^l[%'Cz{SWS[/8ӏ<%+;[{Zk=NJUeoTqgĉ+`ݪ]oU hpbOKRn6v]E|obKBTV83/+ @@P__mě!kCvcl FI`tN3yu;>ds&mg0śIDA/4t\hh1zk?] @`@XXC]؁7~3F%(D: :W y]sennϻf@ H$ Ǯk|p#z^,gYF#Jom~)h`4 hl4X6{ƨDN?ͬG @D Hyob1 Hhb]o@ƽ VMހ+qo@`ӣxo}Xd ?(Фo& VMހ+qo@`ӣxo` 4 @Hz] t @uVi@   @X @ t1@ Y !@ @b+ @`HC @ @W @ Xg5 @@ X@ @@j @ @@] @+`@ @$`=.@ V G @s6a͟}mԄ&%;vIq!^ :%fP__Cbx .OFJ.1AПmAЀ+qo@`Ӹ7 izoBVD`$Nf$ zcH[L8ߔ.ubǓe|e0! @p!ڧ4RON`5W?U@qs AN!@0\sd?]oVDN!@0׺ ՜:A#C7+o}!Xw' @gFiTkRR<*WF]q&ؼ}!8OGסil䵼8!@&?u}{w|V]% xrDVW{6ln.%DA!@ 3X'!rBS;9Cy^,r7q9.Do `Hsaѷv=b ?j !@$`Oc,О fPRVM$ @p* ѩzvmg?p' @ly[[ηMu?!./{:@O!Pkau˞%nj8X=re_/4qs/2/#o.UJ!X.7,د+B:'{-QxB U_\w[Lxql>][M3wU5!;jO]QvlFUFUy 9y)a>ǩiT9s|yeOWd'K]]F-Jҷ16j!9[! pVjjG,dZ`Psm6V";d=?!@$\niϊd=|SLVs*߻NNkbw c@w b j[7D,xpړ3/l޴O,_yz)dXzma5RJʶcKW-ƽE&cwMm7/4'w\H;jϵs򝶽/; @`42dGuq!%7`A Bղcu$*\qbf$/5_, #j/oqZ(Wޙsndtӗ~vgWF=}g\]ή?qJt_8vگ޺xn{hZVa+]i+ uu;Ih]]{7Nܘ$~U?-I K۝T l|'jܳnNMN!J[{'?xpk WleECye=ȦG6:J稙اeҐƣ/,ߴnwY=:J nֵW}W۹goXs<%G#&|5H]-Èm)^*}aR.߷鑅Rqs h>'gw̗ZW$c { @d]BUe]᪽$>ED}p7\-|wE̽Nm9KFtC:![;^ZS[ɿ7F5G{ieֲY㺜}̴qw߹=_?Wxb:ԝȧ|@t=yN?VH&c_Q)GVе$+ۋ.{3>ؔ|C]ibǗdGhٶ\ppv'dxʱ>Б>8{az~GĶCx:.bá]iOq)S~*v8}vy3|nں}Kzd+_ڵq WT^" 7s/|Kaj4њ"Cd\օ4 @ :L+皭FkFhyk-Q` +d݋^/δlW !;I"ˬTeiK-m /Ac⺝$JZBL|6% z]u:~?+L+br<@[t_>w 6en=ȶ"X;~ہw3+K+݌5 Ii¥dG)>P_c2?,tk[W;$o:M)0WNWwwnEw뙚7S&X nLR8]ƅQҟI[:+m=޹ٜ%^l@$c. MuBHzbUlGqyآ49}Q -/ |zV K5*?Nuk/)_F hȾyًZU1?)>dse7F'mC){UUE#c)}gܱ!ھk^=)kU!FΡ!@FYc΋_w$t~^BL.Rת;|;u6[UmEܔEkʂ4YB.46I|xQF(3jg&pkFy ^Tgf]lt"$<ZЭ;ΑSUSut5|T2ELXR5]6, +_&:tMΖuέ֏җ1/[83;^UV,瑺R_þ<8ͳ{TgzaZjyq[*r~P# @~Poȣ+\mP߾[ݩG*ݭe;{޳ƇFNїΛ.n>KWP,.ԩtS㣷7NumVyb}}{w !k?џˉHuq9lL:^% TSl T%8e'+Tʣ_V]_og%=9o8,-)+saAG+NYbW/A]_o'~{^^E@tl|鉋'>Bk/?[q֚VԹ;58QuY20&ĸf؁ONEVI?w\@\z"Wlm46W՞}_i޹ig?Xw@ LTUDF=<yoeӫ>*>ĉοg(n_3n b) s\lƒ"D/ @ SqޭυV<ӿfC[vMv[F'?Ys+\5z|~ջ)ÍБV6l.N>w'ms.  @DgNd9Vͯ<זekr,̶u_GĴXmVz<`E~7?U1oG'm #Q @)V l[gmGYW8%K]-dժ:s+e~mg8}Ht+~ޠ@)ߓwCժaD @g~ #+w}-bꅒAdVX7obE)4 143,smصemرW\7u/=RlTOQW6ۋ?t?띲uJZm}-\'\X+O(zE/=_=s늧4d2 jhe MmV'?gW>҆b[Omi}F!E.d>I]Dh};m޿^Nodp /bCfsppe&KV,b!f孏u.hx`u۬rV%}7-c]w 8+YwK| ]fɈڲV>eTW-ćʭVlJqrEvmk Jl먇-#y) \=wˢմtSn{t6?#؟f٣+}P5$| @mZ{UW`,ieѴxGOfz7:>oo⻌ f@Wq)r߀_ Hq.`H{o,bzZ,(F>\Rpp 4 ?Ksns8p9gq\tzСV?.z?? , @ U HMNB_\8ՈrAƽ VMހ+qo@`ӣxo'*m`41`oh@`Ӹ7 i`4 hlz ,aa @@ X@ @@j @ @@] @+`@ @$`=.@ V:4 @Hz] t @uVi@   @X @ t1@ Y !@ @ @ p htf Sg$"Tyω`h @1w]:么d 5,& RChy? @@@s]Gjzf/o"x[,% LK/V t:] gtb0BBBF_ 4k hl4X6{c4jFJlUHCHvc㨱 S\ H V7D"QttBXmz}X4{Cƽ VMFwwkd2YxxSlӃ/^2exM 4Jv[5FM.TMd2[kAPP/F9FV$/&]ƇX3Z@ 0P3>>FO`4R7szX}T*񵷷8=^ @ 50#V`A @Kz`] @ $ @ Xz7 @p XwP @ @X @CYwP @|N1][28i^mnqXVq6헮­ӨPgHTTȀC;cNO*LǚOIvN@ 0F_|ᅇfN4Iao\1PAc=^|G32W#߿BqfqɔLQl#X~ᡩ3m Fݔt_o7F @?\Җ4QWzO oip%W]Z{L=KG8}c q®;!1Iyi_ѝ׏|K$cDLV!?ˍX` :`}B_>t ߐ04/95W $RjKmyId =qS QjUȠ]}\Yy}ù)nOJG$H'Ͽ"β87'=\4 V`}|: @ʅ/uohV~ͽ!+|Y7k>Սb\0\XaF'ڧYɿK&CVnBLWҶ( ?)sqrD)Z;^B'Å=] OI'{t#>4?Et.4Hс1Mi  !^]o'N.h"NiGPG u f-QVB_5 u至:k*,H37?r[GvOގG 9loT|*/ pbv_+O?:+9hj˃i"6oXJTҌfC%P%4X6{ƽ VMO{t.\ִr⒆ά6_̄NeŤ[瞅i?PRoe ߶%pzMX(:l_jߡl&kdiYAe=xZy~@ 8ۿу bû CП`oh@`Ӹ7 i#`kpXq2x_*3 )S-J?Yq_O֝ " |)?XGo+%3}b[̸{sWc"R񡧏CÓAA/$ Bƽ VMޘli#I"VnyFqƳio~7;}Qߩ^ӷi;fR0]6dqѮL%QnJOCg Oͧk5޴:!;~!%>h~O#uNޜ÷o}}~|o-hЀ+qo@`Ӹ7&FXaJط# H{#uBs5$f<O_iҬ[ ѿ՗3]LS`TYVB+H(sNȷֹɳ ZBƽ VMހ+a:"7HyOODӟ{K'3SqN՛IX>HlIddMPت;6t -*3f_>i0@ Iq{nRV_Psğm 5fC~CgPcvΟ=g[G<Пm 5fC~CgPcv.{8)oeR`T @@H@ @>h @ X Y @ 0CmB @ !  @X,(DxϺ7 @7;<<ܛB{ hDq͍F`}䆨 QQQ4jYFPq]hjuRRG`}䆨 9k׮F*uxJ{TM Ǹ4Jv{p7PHۣjӈFm]$H>:Z9`g: @`xŇ!Kiڈ s|oh)5xm9R`DhJgQ齃`/ @%EHtyf98xhbaPJ(,.^ A^}}}.h@`Ӹ7 i`4 hlz H$b$MR!!!3!<4^eh@!&po@`Ӹ7 i`(,mڷR3۸|+l|ov3۸|+l|ov3۸|+l|ov3۸|+l|ov3۸|+l|ov%K>.E @_oW @0'̥BG!@7@'1Bƽ VMހ+qo@`~oތGZS< e˥k4i v>&ם0eTOn̶owNbN#wntUa˫N@`BuR9!j"0uS55lLQ"iF-O=j,)";BYn,KO{cSH=V~LJuu/ڨc;3!zhXЀ+G`/Jg߿2vS㊕7ɏ#ƣmO/?JXZΎi+_xn/{뼊V@k.Zqƣ/lݧ.^*WȊ?Qv;ʴt[6.Ҩ|o+{*m_Dƪ7YC6F>rܩn}-~KHzD¦ ]--Ae0JeuȩR@߮7qo%wN,/Y{rejqT6({rEIWwf];B{N}>On\,'Dϕ;/ ܺ@HvQ6~LI ݿ4gOSgTQ<{KҲ @`/7S:*oTVS8bWy=e;ז)V,7+JVmTR[Vu'[x+6qG3E,Uhz?+Q`v*mޜk۰|Cͫ//s( =,9DoUX` g m_! 蹙o]E'e)iVۉ7O>fb(`Bƹ>o]=i =;ԖDB3(JTAdά+w(Wp|9@$8#T?0}#[};[Wȹ't1"Ȋpo,5e3.9*Зp2W,G3\Q?,jK f32jSɎjc"vnޔGp S=RߣN]M0zK h:d'CPw="Y{w]^ ,TR[+^IJa(P~|܇%U׭\|> h.@wiwmWn77&0_ psۣ)CO7Ih<)5c͹\FM=(F(tr}XbȄLiY,"S3}^i>ހPFZ| 4 1Շ&kI|*3Izm5g{c[gσ‚SfxlU g)d}>c;UnS S兂b&6/ݡ1;VAJ[?wl}dzB5oͦ_Z/-;N;oV;xɹ72UݗS]pYURI()L_Dn5V3(cەUoמ0yLo}V 1đ\w !!+б˒Ȅh"fM`YCU4U|=9Ŋcͪ>]e[$\Сtz~߾ɵ }컂bͧx#Ѧ6$бYIUBgq@!/{}>9[8Qg]Fk{JX#Nڶ?7c]X( ͸PI}_ n ?w(1Dz)p)λQKV/n̑yYm5s'5?@*%»Q+f2@ ~?C G1hc\G(cgM@Sba/pV҇>$ix!U
    ]     =$g@@@@C kՍ@@@@SZax:Ic?t碖nP`%!f     O;1띭h` "q1}@@@@pp}@@@@Ho޼}*g>q0@@@@5;``ׇ477~&wB [. ܔ˥U.40JI3=w[Sw-WT`+=brLTnS]4,ܭmm\3*T@sܼl))05Xo3'wyxp ~r޼_o|}=tiť [m|ðKv]ױu滷Ա!wN坧5ݽ&]Z$K-1']%iV錷rx@#~>αݒ.q];Li7gl=C%7*H+A|7úOqN}?;Yz׋:`89}jxԟ1jwvTv3' ƛk7:wh(}0yn(1ddz<==Fxx?{zpĀpΌ M=7jwZ [tlw=LPoWU]1WL/gk]Xmw7V*۷?@/xw(_oh)~u֭^{yǏͥKVg(}mVD\rLk+ y-9uа6;m'ʳm;Vzk\tmG8M[ 3`XצQ16gu3+۬uJ6Z ia患at0C8gr:eu^n2 (̻kfaeYPٰ+mkFIF~SyN& 8`?tPs|Äz'*_:)g>v"'9[Nq%G3 NiDM&0aJfФOԧPj-%n5OF&La0w}@6gL}Yg.IXfmN ]q*V ;|Vlvzc?v v)WĮ>}|{h*j˳Ol]}}M@"BA3eRVnؚ owIlğ n잠JYUX5ZKA5ij(Mt9=~Zr+Nk'ߌ N@қLDqw*n-YM74\3Ca3ѡIOh1B~r 5];Y$Tʴ 8p)w /hvSSQr.Z4.2s$K`n0FsޝJMژsnQ-`a7TuU^+ic6+IɱV?^h&z27-cjiv4$Dq[}{\gt3JU.]u!+jqpik7kLZy|ʊ}ݵRTn'ي8#b̍pJިlH)Vzצj]4U:Zt&K5x$|cJM-kSĸ݌dΠ_j* TcOzq,x.Uf7#5j [+F# N_rKrʷJam:N5y9ێ'Ǽ ˍR>wƓs>C/7G? )te5[N"ߞLA,棚u,J_g\U?L2C[cRʞ>$^ݦ!W&V$=Sj2-Ni)(enW )Lec.ZW1Dw3=X1i#3wdbgq'5%&6F!~.tg)CWx(T q =P%$ӗu|YX_7Ycl&gp _Wy-Ukzw|˖Pn̤ekǼG AC@HMbdow> & Th_G,H;YŮ cW84ҙ|Agwf}]+?gw.XVO)BkLpIŸ>L 4 9/-ȳl X]ꉕǞgF`8Rj*V/lݒ4FdZޙ\Mpԍ4Z{|Ṟ$ƾ ShO uîYtX\<!1V/&bXlndž5L/*Q; }m:=WTQml}2rl8c)Y#(&P<'qW~Ho1&y6 tbF\bM ҄3pV7l~j(Szx\{8&*P`^T4Hݥ:gB2F7(tQ\Íu @MHQx:/g-4 t&Xj M@hn>n]N'~|wg7Ãal#ԉ'7f9}Cv+}ƴ$ם>lŤ?dY!Զ #w?02kU13;B62(?W;d_\0ʋatMrfڪ@ (ѭqV~^TqU2--:1/|I& Rnt4qît,7zh];~Թ:B1o3n9]k^*U3ZkC;_2@#gu}eO}SnL anJAR>E֙"uv[ Q-q.6?(ne/F6vym iRTᏊ&IsE9zNWyE^3.A8%1M S=[!jϝKW;VtS%lטt J7ǻShZ(Zpu U.T[Eyޮ^Q;@@s+VAoFo)3[Cp d,c=u=Mb#ǏjԮO)Cu8u")l$6t{=Uyec@]%t l -Jg .ҧ9\MQ1F)ǧ!pUbE)\jr+U*W5qQ7U0Bn(-ɗZcrx^[d[ϴgR;zkz_ŞoZQjb[r(2qYJ=FJ_nѻ{(Xx^ܾ C-X7t3 )H1 s%V3JD-s_$-:mn8:ɜ|UwGZsE;_tlǦlЭN eOhwFy﷩]P}9GG+2OFjѡca)EyU[,g_4$.ڛw5¾i,[\nĪw5jz|@_SN_8Dͺ6;d쳵#lŴ)Q듳˳6GmOWe9-lNq^MlX?gXJThrvIyyIGR[oc06vo~ snJulCVN17 Gm~ +n|K]))Ǩ7ТTxiK2&U;w͞gMcԖ&8ZؤFsF^P۬+5ifG!$D2LbP+%EzEcά³sM"um8I!IƩXB)9D(%x`4]+K9"zFٹ'&X\7Ͳ4qT唘 K<踕ьSh9{PpO%g)فZ]^޼tYoמ ؅0HZC~jB^Xw&]'U-qeFk%MlJT\wȽLzmR1~Od:lW5SHrG1)ζ `ɜ}j!k.r'DŽoWTTfğaC5u5B؄@]dzs\![0NFv{Ğ S{gzs.Ƌ&e>o/iFNtJ|V.gvlXuv׉O.zoS W΋?5>%M7l]uDPV?Cwl`wR׶ڍYaz,95BC|܇uW4eQTTUK"5 #֫}GU CvOb~2p)])p!9KNܱïh-c}ηYybLh3W'h+e/py|%:ŚiW+1}8`>rUJz\v;jz2UfUԫh T:bz:XmEԕpHo6YQW?TS 艺:CT]7!@L֢(VqEC<Ƥ_QA u>ߙJdFGjR:JnQGS]Xk9h^ PykiR;o.pS늙j)q\&=xB)(=Y9Lvxqg#t/Кx>SUL ~jx3=䖸5̌|WzxaԚ{,ۥ3Boq? ;P^o T>eydлcBw˶CEWB^MZ?`*𧤖d-l3$AݴkF? tYoI\ GQ%am [joŸ!M#˭}{KgR\JQ.R'&7i(N:kJŕD*w0;Էfk[AmL9О` c#:V @' 9mi+Sq784]:P"hO,hҵ(5nYˏ/N} \&"C{@:p+0y]%OZy^΂Gƴ?]?۞zYk) @=wVNgne @#g2U? bUDA=iJ/6N+@@@#pSA@@@,=w"Bт@{@'w     @     8띀A178?tBz'`P     Mz     @xO?ݛ  'N%C{b6olltrr[Ő!C }H1c4 8ql#< p$ca0`D`p 0@@@@K+%v     1`]rh    }Lzz.8%v     1`]rh    }Lzz$7oezG    =!P[ٳ;w/֖JdӟГW]Y&Mv(lvOL>bT ӽ @@@WN/I YY7g|pcUXeD7 +-E"4\1 Ň>2,Vb\1]zm崯 2BTUgNkmQww4eo%zꤷ23^|YgOf]D`aeي/xzxucS:qqas$/HϿdMY 4d7޵~!NA@@5TqddY5gn\i>=Ds-Qfl\Ϣ>˳/מ샅 m0yRV/ eIЅ/eBeo}^fol>26f =_NE/9^]pA0˱!Ɍe'sk'C|6bd_M T%mȰ!u@IDATܩӊ=vdذs^\r\ t̤93-2/mgf$){ܙYRyP,Wgx^~iWmVvd$gNV,6ܹRhu01_   p1vk"^9rÖ-Va]qtl$ ɕ~:^PX:i[?m- f? 3xכ5qNS?ZN>=/FbTL)I"5/$mJӅ\8*}3֖&X0٤m(Ӥ"Z>ݑeƴ/vR^YC5gQ+}Qb*cGnU{H$-|5^/i+;(tf3bka,V찹\TՉ7E+D%g.jmc @@@)ѵɿՒ(~ͬ Mo1Oa;` VkmUFϵȞJRU=Ҏ6H͓ Xv[kKh[atzsm~~3Ԫ(MB8 㺥z4fkvZZ[eX0)R)>ӦHs"7N8Fr\6col|ZnS?mvl_/@W4G!fZlU$y9 {ճ5?EϓĭFQ.>SJl: kZ\i#6lי~v֭?K5QK|ĖuTc;%%btǬY ?y֬2333mT x;dTnY)l/Yr.SYd}/{u +䭅RwHD9ʦȇruk7;0RlyS/$;hn};ZS8qB߷י~Y/or~WG<7k,շT?_9=Wh S펐HHużd \D_ Pٿ\x7nQq.H%;I<C#?ZqcG2+xCC}Yb#g Ɩ'?,P-u7۝77n۰χmڙv1|t@zfԉI?;VQ}f֙2?bLzyKa{% 7=>6<9/1:0Х~pz><[v)^^5*i[*++;e&]췀|1ݡ/#06jlN)Wwu颀k,MB\5mCqfnڽm ٖS\]ίi~J#z8ߒ|U+?b**No+~ 1΍$ݹ%M@uS4~Q[籠WШ'$̛cgṗ~v6fYB2r)$&tǫ ?ۇ{B3^RaKKʿm)+ÿ?+5g&03e淑$g|u2QGz>wg匹_;tԟjM yTqU^y?8=\sɯ>J|Ս~+p :LxzQgIyo$=#-tdR=m@@@N`bxqTG :O5?VDZ%aE|ؠ#ەsۅܮ=@Ǒw":ą&uV.UϡJG۷e0\5 2*[\3)q1HGAA@@Dd:?䡇8.8]jJJ89 JO g C@@@@@`>v u     0@ Y;fu     0@ Y;fu     0@ Y;fu     0@ Y;fC MG@@@@'В!=Tѕ]  ...= `zA@@@@Y+     =$g@@@@"     Cp{A@@@@Y+     =$g@@@@"     Cp{A@@@@Y+     pzz͛~z`G    @8o ~8gKʻ?k˿?[n4{Tصqs]M_?c@@L>|xp~HMbo)]^zl}Ć'ozoORls?6yѦM˟y|ǪЈUϭ~<#|K՜*]?wi_[_?BN?CR`TinVt х)g|^LPtg}K1 /hvSSQr.Z4.N1c9RWXA 7ąDʴ:"j|!p~hxAP^-MKddz4ޠrw+>ZDj!QM S{d( N+@׳#2B &1cd^ g %AĂ&}4>j5%0=GŕJ7Q/7R4ʴUC\hO*,tg[eQfP+ Ja$[Y T9szXV c135ǂ5iIKZj`%I[ơKy*mkNTG圉Xi 8:>6_\|=\UWv>x^k׬cQ<χԹ~ԙStٰ~C{9O~,hU<5T?{lxs޺EhuͨQpHrL2Ks|b_7 G韬W_o߀gF.Xp9Ƕ}2;89h^\Sjc,5s[r@atbxOU8|H`^M+d5xL\;JAyRj0E^¹]:#4t PdA!%x饋qd!2*Zc &@$P{:tzz? @`@.,  lҤfR/ڃ^ U     J+6֡      Ж<    +`%g-l!g}     m Yo[     0`Y0@[p p̮!     ЖCm7j맟~+     ĉ{hא@s 0     D g/B'8*@@@@@/Y     @z/@  p*t@/ @@@@     D/^xfYk    Wjk1{WsV}Hsss_^p,lbd:KlsgN-Ȁ l~1Ǥi&i56B6˘IEtn'MJ2)#η+zq.7|{lZY͜Xm K+2<c7[N;ro7Zʨwh*@Ƕ`GnI{/s~z~Κ`k[ɵ>^y)}^Tsp)myӉ?Ҹj)S?ZlkAG@>M*ul5"e+Lub K^-c/ Uwԓ}_LexaOvLKUu_/&i͌oflQGsI/:+>G 47,J4_dRuEd`X @]|#q^SlQҏdb}yM"de8z6EYϞr)sc!KuAO#qٌi{i#묜*X4V ًX1q0϶=j 5%_eB‡ A! U^?i_zxu} hkOoRAa)r_L4чw$;ÁDʈOMkiar>I$W1|aSF0V,-eH @skW Ws_{d-y'N~{{+>~<$Mb:y-xP[Ȍ]K*Qɘ};K`<褒XE/2 }DCO=3sxm@8륟%f:S+QD>0M;\56tR= )O]Ķ9̝/`}w׫?b5={n{-v~MjήE:m^Y ٖS\]ίd;TS䝔[)W@ڕ8~sL1}S֞{M1ltl<Өj&j)> `!=IIhM\̵ΚIUve:_J" g׭kNY`$VG%o>/qq[`hIY[z:}3taeB҉wT/?۵.sZD5νt:toJ}v<Ѿ5=2Wb4z--zwJyEj̔\sBO>J|vZuR1/|)r wy2"WR":Э'YtUp&H&`?mw8i|_x:z Ћy^4~%wŨ3k̔dSMNߙ>uODww/$Pc2C|ZS Hgw(T *5%%CN :X1D`@<`:b,     [I^&gB8Ez@@@@@ YeP    Ezoep{(ԁ@o[$@@@@z^ u     [I^&P/D݅ :A1 N'N477PEWwE 2     0hp,!@4"gB/Ds+p,@ Y!@4"gB/Ds+p,@ Y!@4"gB/= 7oރ 8Zy',^t'wOz&plT r J礙㥭-M#wUR*:A.rJ L [&1 Oyde>{=S˭]\\zA_Y/?jiRDAJBVLvlҥH\ϨMr}UϩՙRNMUAe1J_A @`p8DJ}%<Ҳ;J&g:6c.dž@@]^Igo}Aw%#G1#{zӵ R'Yخ1ddz<==Fxx?{zpㄉa/;ILeƻjZ&Σ uai\fJ;w;\Mn[*[znՌ ;i,޸R22Ym~>]5ܵgׇP{o!sCgcB vak鶐ҲO~/XZjԮ$g 'omy۶!Byȶ/zRfo~MxMk,{w0 3]"HfvEn@@Faxs`4qIƮaрKY&s֮6:^ ְ)BЁl8& &¨ -̬R⚧>`@l G?-d2nc~I:/?c̠I!I XrpǎHV^Ӆg 5LU{DY&S><~w˷n=r.xM`;ֆnɞ3+~z'xHj׆nQ5yѦ6- =RB܏m f?_vGM'W"%]?w'7S,]e[w*{a#WĮ 8-Ru4t)+q2vf%9((Wl|J!`W~`t*r^'W&wX1F}5]nj TKt2OEjچԆBowNi NOqeCRs1F)S- d'=TqDrC534VF I{T.iz\v8) T})jY9c䷤IՍlX͒Uq:ݸxuCBt!o-W >Q#$LGTL n ϛg֩= 75]RfDЦ6$Du3JA\ZBy{a! Z*3 s_+׎CM0lv*TF ~&DMBHCr${rnc8k(Ȼ) }=`Аf(ò{<}dXnɦT&"dR⟧5h_ZÒ̑ IsٶsbۘR춄1]ԔMnԸtˆH*N@,YXoJ^#WBE[$yBJ/Cc}r hHolu2"X ',\WVVh<(Ngks,AVBkefөvؐD67.&%IO*zXbԁm(g Krv-c Gr笂*GKn5k5*lstT݉|-I5.2e%Z1''VhZ%'NZe2ēߎ.M:_::"-Iyw;'NT5X~kiQVsƥr1 Rm97_TdYxPUC̸#vOy1Qr"X]wJh xBԤxcΝvox upnnd[XgWsy9<]:5l]%)7OBeΫ+r%|ξe,]Ei"p`_ ؛Yxs|/LReL+4Ж0!%Wf"Zי9NcU{3}~ [9;uPف}eLT3]d**UZ^s-qbiqs&LЇ?42T >%0oH֙Սg4|}B3VqML11@Rs'W"f>c5ZzIO0ZZ-42i{zBYשecm¯*t'ա[ysL#uJS#u~p\KKfۣťq 5nh(RhWw{ʢkrѡb:d‰kt%閻"uZMRr\5ȨK}VWij8I}B6   0<g"ug?qTnZ p?aGf[:D|ĭTuWL>+޲"ck{w2>f+O7n,F9"Ξ'e~}Q&<>!EX'i(X4r3Y7&' p C| + P9p&qM+c.0fU'+\S\W)Mg#7l[1`(ҙIC8ݬ;¯%T$%;&$wH% B3")[%X/+$d ^@ R3=,( dWBb]h]h]nXawLbܐ5m̀S|1k\ ڶEBuZr-K*[7O! zͫK_/<|X4eJ_S?qpuϽBK?y3m[),_u"3s՗KLOiE?)3 9==Iͫ `q'˜"49O2"9п$ĬхMIEbv#;%#a4XSURSXuGt/f͍6+^k(uN n͖^d&V2ϖiiR7iDS]lʻ-}_B:`ZtC# E4N۪hXJL?MvDZ gxfxB$Fɧ*VYϦP/ *0&"zuލJaPٍB:EgљzIrwZZig`-2tfx/"uZ|+]B\[#}}Hqvm+%9mߥgXX)`6R/*Mle#gs`&b-)+=q-o?e+JXП6[xƶȬcBh]~\]\K(7>u ?Nɧ I3|~&cxwjR>??B#'.? VzP(,|DCsRϥO&{5:“UʹzDs+x5*j,ºk(N-CEduU+&O$kMc+n|a ikOaЮoPOMd9 مcW+YP}1RYSUx\F9aX1GY^uM(ݰ4 W3oH*cWHӘ$7*r/-tGGK RXuU))i$+&.`rB**rŪCdtD-=yOcGn2&%e~5Xv ȅH<ѕc.5h597o5&V]fd<8Z:9xdy|wVd?Aڷ?97yGURM{WedYATS0+o[  ><$c J2y԰"#А7weGGpOW~+IPJrT$%Rȯb\ApebI]gr $ތͻIno Hze}dqb=C$d6}VMH}jY!3T~^t!uE,4Ku ߨ̦_|% -5+zIjh\=]WT+iB[ ͷGѕNPV LN]$>#K>niys6-q(I*Y}۴G@&*JV11ǸkO7_V.M-VR|?y :i+X#bKIIgE+U@#_]۹SԉqToo0hvv2Jnt[(.Vf"ѐ6ꢽ޳,BUӷ1Ck`-z X1?änp¼m &4T_ؿ9Y yPnsb /4wrs-'p<, vSgZJgS }ߩьv/kvF[=P=k= A2l-ʟ7n@.rz?U MUqqC#C2.!ԗ/+穏/^OZY7}yE BSμ Jcr&CS[YOk=v8 7g=8nd834vԇl}zl9^C.\c _ Z1߿~B[  #DS>]\F`#w|oR_eoخp% @;UB @`(և< @p03T @ 'Ⱥ@4 @uŞA 8u'?h> @ Xwc= @prN~|@ @{@ ֝ @+`u-  @;D!@\W[ @ XwC u=3@ '@͇ @p]{lg @N.` @ ]b @\@4 @uŞA 8u'?h> @ Xwc= @prN~|@ @{@ ֝ @+`u-  @ @#ZgD7s@͎l9 GKFn!J @EMMMnn6>vҤI+Q0T1zG8jJ >^qx! GVǎ+l?qsQ[ZZo-u Q @4 _T4]Dn!J @}d4 @Fs,@  X7 @ #X% @0@n @9Gα@K @ `"Ԅ/ @p]/5Mb 쉨nj\[ Iq럷\)uez{=dcx6d?Ovg.v:@ `'Uܶvbk?]h2oumt8g[5ZdcϗQT9_D>hWOZgվ`=`1 #/ƅǙZ_ψ(AF@ 0-Q-1]?TWe̻TeW(RzF[ƵT]Qͻ [fU]]w@}%M=/Ϻuz7+=ظG^W&N˅rTKO_zg70FcDq{>vzh$~r]@ @!-.,R\J[[ՊUYV175 4\߱)`{뽲n%_//blAK 5m9 (f\8>z_N~}6n?>p|`ݞ( w~7]sCcm9>x.]7^]7;J ط'U~@vVu1o%<~/7L۝}elF2cDV߆_`ǿR۲`^/ye,YQ @.&{+ͯÓNT0Vg4vxjDo>n荎 lY7jp `T7)7)F)u/vgɜti kmWԩ$0GT^@  N4 %ڵp]8Tޮf?6ܟ!+'Ly-YФ=7707O]Avd%$ }%nf73[.$&2<$.Hsz(T\~d9,oނ(` l-RA67W|?W O˦{ 7kJgtkK+   =9*|EpLZ8T}`9Tet!0Cfg; !Xրm`Ap'A 8:Up!c% A8Q!eH҃L kB>b($5&*P=+tꀮC}hBaLauX$8· p%\ &/)@P4 @yQDU@բQmn]0h33f3Х*t3 }=DP0j$aVa0:L?f ҰX?6]-6a۱QSƙ\p8.Wۃ;Í>IxM5 >8~ C#8 BpFM#eDb81XIl$^!>"#H$GRR2itt4BD#qdy+0|BS)lVJ=2 U\)őZ/U-,'Z '!B:_BmW2}/:j22STY+`tR٣e|8rr.ˍRQTMD=DB3SKO*)*D**T+\Ph4&-VF;I}VTWP*nQlTSVRUrW*+5)+}V+(*oWnQ~V1VYJeWΪlbՓ`5cPjnMk _VApHةqQcB骙S ݃Fw'ԴDZzf # u::;u:u&u5ut6>#1xz 7?7P2`4<2f31R1yƷM`{d&SGSi,ǬlĜfؼEvnovi,ZYXXY6f[W[߳ڬiyckb˵g;dG li^hh?P0Ȑg0J1;~rwv:sQ qZ4r92JwwuMˍV]ǝ^>aq㵧紗ZvowwOO_m$I?;~@Lu&YϜ pXH |xpq[#%%- #qAHfȹإ!K> ]F [v4CgxYQDgtd\d}twTypE1*11غةe>v-+Xn*hV05LId{w_r9;9\n9w<%1>u<> KWm=M9/BZ81 ^b}=vQH h^@;ml$KV@ĚTξC!3-_Z@~+7K^g7 @IDATxUڇ/q媨(`ckw-U"""HIwwj]l6gM]o׮]KD@D@D@D@D $cdn" " " " "q$3 L# qDdd;%2HD@D@D@D@$5D@D@D@D@D Hg)A" " " " " 9 " " " " G@2=N t8wJdHk@LϸS"D@D@D@D@D@2]s@D@D@D@D@2@H@رsΔ? okSy}]rrr6lذ~-[$QE)]t% *5p>K|M6UT N#+Vغuk i.+W5mO˼j3۷/Yd޼yW.SLr5j{o9.;9K N2Lùn6uW@C6TRVI2q eժUF\EJMUCmC MZ&4XbŵkՁ7x/JsT#r\C0`Q$`gv5hf*!" " " ݹyfTPe:̥'O?4Xb(?ܜ{^8>?xݺuK jE!oNO?QjQ4zYlٲ_>+K.eg\K/^G_葯!O0=+򪫮5ԑJ+Cr gO_jwߝy%EҥKNt]wuQKRǼW_})X/%" " " H [H٧FKo'<G,ZvzM4sRMZjW-ңGuw%3(0s=hL/D۷m۶NNEevy睤~+W&֋j@HJO2ʗ/6dlUT/R2%L9c:vs=mE駟G63׿^n{` uy|01WQuJ+K}" K+'y\ 4v8 މ S3cƌ.]>yxR;*{›:蠃( NIGE@D@D@.IŦh6 x?:uiΝӽZjw _W_qC!^ %S$غuO>H !?7wڕeeW_s%фplVsǵ) `֚5kּyW/UVeXdO*,òz 4 .DLH^3cNblSTw|%D@D@D@D`%LgSFnqHXB89j M1D0-b_lժ#{7kŒ&%y^R] R5]gBP5i*B8mڴATƎWU|dEL_s5ƗOEv$(]$p?䓄O3!1({t̙3q{E>crD{zt?ChouoqoLjYTu'71(g3<\7pf&fQAE$DBqu֐83V;1!]rGb]X=!{T9" " " "r֭#Xт%`{۶m)!xapZ8p .L:N:ޒoZD}>T/[zǕS4h"o1؂x!܄f]-MHX0[qy7zw@x-C#ʝ;v@y6_硸\:ׯU7&WQ4`>M6}Oɻ2&:&EԙLK>M?CA-`2Y׉ ){Ea*@H:Rd&P'ʅ8il6=tuG֚Ho|+D!Ӈ'N7Wr|U2l$V7[Hm8JqBM'6109̠m[l#lbbm長mش7aZ% unK%^Dnjf< fڣFey"q{'|WCZÊ)Y2(4row~ÉQ4FDa vH4:1#٪۶q${mʙH7q_|1ʵb߾}5jg?70#:ʄ4 ̈P"๵<-Sk9OHeyCܼm1GuSXs/ S´*=cbiPf̘T@D@D@D@RB`$^׹yR2%FrC;>m4fE,tf:H =QE6=tWi~'eB^g#Y1͝&zGS|;p^/KI" " " #\Gb\&EM>+Ms{\A"Ӊ=s+=SN?F^I9~}6iaJijN ? 7 Ob&@R#F-bG}DGi!wMQ#&*Qb؃i4T !'į#ӽTW;f;$d3uPuWkOٓEbIit"}$.K/Jk,f ÙLc.ٝ śo믿TqK T".?D1|ClS6ByԖ'pWX׾3?8щDǛ,9B::WR" " " "ZtyD_:tWC G29R$K&Ƚ{6N.Cס}DXk>~b]&֭[-xbZƒI68x [~POQ6Ao߾=lDo\nl,o޼y7_an[sZu$" " " yB nݺA0oٲeKBYʖ-˭xg͚2(>Q[hq 7E:ܗɝbcƌѣG.?8nCU: ndtI_dq 'wHG,T w3lCNJ966uΝ;u%+"=GlנSpf4fw7aTn|W- M6<7-2[ 9%ewhSgMs; 7$&CI`˖-A'WC@2[oӧYg5|pqƍZ?=j999s ѣGgggGȖ}#pxӳgC=t…9GyQ{^]tѤIQWZ,L曯3'oa _oܶm[PɸHI–LN+iușw6x7IQVb܉OLwM.p%̠j\GQe X^&瞛2eJHHPql˖-|?~|*UjժV#63Ϭ\2J%u4dR_~k9rСC;tp 7N(VXN *䂐 WU,2 %:OsDt9 ot1L pS߯(V,i<~g*_D@M e|'N4Z_7"׭[wwr)]v駟\#Yf G?nݺOիoc=s(}/'t9ՋD7 rԧ0ғIgqZߏّox=3w\/Vڵ駟f~?CZh .m۶\r ɉI7ڷo'$BXbƍ_0`;uMH"-%gΜ9^z){ݼy)K5Bp;LS.]z1fN;do=&Ro xB,@;4'߹jٷ ۂI 697 2&k裏0{a=Q;39"gF4ش^og}v'zv8 wٔteR1hzQ_}ΟA·{c_^U?q݉L\Sk]GǦM_[ѩM?%؊cwrV?.ymذKlu~[Kkޙ?r&e &}Uygo2}2fm&7cRj2O L 3d~3z)?ԯ_߱Sƕ\%O^bΝ;5w߸qgK,#iB+OwIřg&QG}{/2)3g|WW^! \<Dpe'@7k׮ꪫ=5x{1GgY۾oI)tuVJt۸s Vz2;0 ͛ckڰa|AJ1i{ٳ9A_}ӌ!_>h Fa(a>V$b+1cǎe %{ftMk۴i9|: 8>6|mYECA6|5!h;|$㝫!r6bg5VyY/V\*wqL89"gڷ6Ë?h)2_W&U|ҥK?7>fΦz7%gsC]ߛЗȏӕoΝl RL2'˶կO 93ג޾cW&=;dY#o<ඉА'qzlxgnCkcm޼mgSt؀%5mגb^́C&Lϗpk~GVkhf͚E!ӶD@D $Mg%a^pYxU3f )g̘AiC:_|իWo_|ax>PިE⮸뮻&O+i֬_~#J,ٮ]F*]4]^*UT`+/^<}cSpڵkWZQx N(wAPdL&9ht#J('+-WLpAխ[!>r!nHviE-B8qR~m6L`,\h˖-9Lg_8 `q%‡4(j1Carb__9mVq&‘:KڴL !_ L:\ ܗ1uvl#u]S?, β_@w.0 I8h޼o\;AEÖW/W_ ui;D?9Xj]iǎ#\Ͷ?ۄ]gβ59WMߤZQk?Zil^V5Zd g-2io'?nz/!/*"Šܿ{lu:849ɥ}"^PNseE@D rD-ZgEhtQ`(/ ;;]9+V(W\̑[+mS5uUBHd]vDh>B/A؃a!ےb,N!2޴ Ӷ曠;qe*q9fΒ4qP8-M_1:MiWr6M$;WlbwIft^LӉIk eаaCbx։q(t2f|)?w}M&Ӆ=ҷ;' /tiiwc.rԿbM}֝Mk-[-.Nf,Cr,\&bwNhQI-ҼFѓ.3C'w*! ^QRJT~qD_*^/HlߖL#qa0I84G$"pwȚO-IG$A~xۣpDu9)Ep<`[=J.p;qˆ/iI%IS}G] 3pR/lL$욫#Ams!;c㜛M1Z\B]۾tkQHr3[z|73Y`Z:oG[ Խ)R8#gT}A36ri ([rv -XI}w˺ZtǃgВ'ZYY.J^`>D(|''Kknḃ~{lB#3d2)SD`&7.80Ber$HT(r=#8{Pl[7%9?Ͻb'p~/|nU0uᄑ8]ȸf4x;% wtxGf8.HX9+j֬!P'&5DxKמ*"_z%ܠygK㓿aoL{epC~BZy8YxxeoqMQ^rLwj׸D EKq&+Cj=jkf WRa~/{uߜWhks:*{ޞ%AF%V~.ZRCHvi_v[LGM3>(JUqIEzT$C ?ԏY&D֩1g4oEWfH/BjiUՅ*fB NAkh t^.)SF`!'|UD"H@*jyPLxA9O/^gg; 'UEQl3't޹e9Ʀ)`jl9*!ivڎ !bk~}3çkVx`5B<(qlB+/ޕG/^x/ w'7DsrS壏>ެ@:]hK=L<$@:U]͌>_Bvid7[!-ɥꪊ$OדoE-d-|X2 "$U# ]tvߦjUb`m_@8y@u)" " " " k" " " " O@2=O H\#xdG@2};@LS$E@D@D@D@?9׈E@D@D@D@2dzƟ"(" " " "LιF," " " "$3@dw5b' H$sd<?E2PD@D@D@D`# sXD@D@D@D L;vdggk׮QEO˗@Ŋ=%&Qׯٺ *U*RO0?3}B NPo߾=*#" " " " ""@d+1AmH9" " " " " QD ;LBReD@D@D@D@D W H*nu&" " " " QHG2" " " " "$s:($ӣPRU鹊[@Q(*\ŭD@D@D@D@D (TFD@D@D@D@rdzVg" " " " "dzJ*#" " " " J@2=Wq3B@2= %\% ՙD! ʈ@(;mٲe˗/RJ͚5 (=xœu͜9*TVZBRA͙mF3D9" " " 3fۣFu=蠃."E|/:34IѢE3qȐ!fZb5Dڵ;*Ud35#" " " {#>sYYYguցXbO6mѣzYpA^v[`oI}'Nd 4׬Y /e˖E6Z~Nȑ#|Me˖H8#W 3:vX|y[%ҥKϷz믿ufQ%D@D@D@D` Fݻ7쥗^BfرcΝSO=G!7x#<)97o޺u+CNIk)idܸq?0s7pC…9X/_N8`cǎ;o"'%Ypa>}(Mux5r6E f?#<+*UY@i QW@TDR>37oNEʕ]2ٰaCb2Doܸ߾}>۪U+N k9#8_[o:0w[ U SŽAczȯ{W{ (GD@D@D@^bŤIp׮]ʹm۶BLш6H0:b3DUV!9drZ>dSĻeG {\2eJX%KD@D@D@D %(nC QV}A[|M1f̘ӧϛ7 b$ZlN1/e<ǿ;ʵaÆ۴i&Y وkhGqA&~M~!jr^\g}V\9ަX;-ph-:uC=$]x$ʥQqQGs1^dc M/Xrzif{b: #Ϟ=佱wyԩs&M0+B8gߛ/ C=;FS+)Ѥ:t&`t`<*f>oH@x &|Ŝѣ G%hI+1YͶ0Ħg3˙ЖaL]̦=*ۗuӊ@ Qc]cH8ÇA| +Ζ馛՝2,O<KM6wq 3D$PHt⋹6.bnӾCC#jq;e:9D62Hg8`$/:ظmA 4Z"=\Z0+( X| AS1b2x$©'ߞA-;AY 9z#[ Q9%hѢ7|K.vf;o~r6y8Sĭhq)ĕTOMEa_&֙t|e vV%D@D@D@A D qF< o1z^rxv\r ,+blىiEF|R{ԗ=z qO; "O;4zAIez5254Jvn%9faLHn pLa[0Q" @ fQ2yN zF?FMSI;}&bq t:mdž}xT\ΣƀWҊi" " "  h{tOx)`|~%}י80Ks[*ۯ73*F9xvxTgfivdAODlqJ9Ȋ)gM 0wl 5+T{Gܼe/aYQ{eN4j,p :p-[j$989}WZjwa&MWCStp|WDk&/W( l6Kw+WdrN1=z;-5M %]NSIy'h. SLp{)V" " "  VLL7]"J@!PuJk\9tyյ@ns[ *nNPύO N`L{ąhI ңfD˭m02KM(16$}(KD@D@D@D@dzW" " " " "C@2D@D@D@D@D o H-." " " " >$}(KD@D@D@D@dzW" " " " "C@2D@D@D@D@D o H-." " " " >$}(KD@D@D@D@dzW" " " " "C`/;wܸqJ3O3`5/" " " "_~N{^'pBǎM:''N 4$Iw}smڄL̜ 6{۶mY[ ;vlvv6aF8xMʹ1'e>v^ݖitJq52qW"o֭/tbX pW+K-BPB1Kz $SZ9}Yz5aF.wY޲i ,,zs3n3 _GE@D@D % < 4e˖Z۷o9 תUҥK&?Vڃ>د_?7mڔ?ao*UTF >?O8q׮]5Zf %{wf:uLݺu z=%Kq>%JR gyL2˗ꩧN>d̾/~h&MPlΜ9=zxgϞl21|^kb!~A-_ET7ex_ sb=[їڵk6lXٲe_z3f2ծ]ۘA"oJvsG۸i{ |8aN֪Uķ:'y睖-KMo2on L1O3fUV qWq%Ip:nV!f8XqiӶq<ٮ2vgi-{vl}?%N7tдm:pz__Fl$7~Sr. nlfڡy'|A8۳_T)Ķ(!" "  ͅa#v酐q㽾ꪫLq< #}ҥKׯoˤS*!JgժUy睇P&Gi+ڄq⃮W\I_&yْ|'"agy J F;x]-x+2Yx1÷fؠ#:/;]Vq%IaNޱ6lЙ{;|ڒg9| 1,R)ٶNYT H ;;e guWu/Tq{MGT  Lw!/KK޽M>Z}[UʕC+V}m·* E+8aGuzi[1(A/e8Ą zo1Ə4aa5ފLuق3;|go:*4k$'!qFpkmSAnnʄDwf ܔN8H}2_社 վ>~K W^-N8A/ogyN &/(m: tP1^o֬ʦe˖CeIBh 򍅮# k)@68 U[ї 7rg1mvCˮ1*T5; 4B!NN{H{;W;o][2XY[ Cfg4 [ݗ-̴iQ/p{șc,'/8èl͕/Tw6YRi؇ 7ƽOCH4q#΍P,zS„}{\"¾г Dы=07/>$G9lI"70i"2[{!LC6$0vne֭k׮]}m5Kio9xӾFuh[n/oywow ;Oݹ1}MLAgDz袋]3Ey2&K\sUKjKړh5~A"ಁYA88޾} jsqEo$W: =\q :-໺Gsɋ#g(%BX sY_z| ir nZ$2mΛZۦMZ 8C4Ksf!ZH hNnYm`AģS˾8D O󡪾}qs#f,cb09.co'y; 9^#ohAN=f3 j8vh*mwt=;NޮyDRk2|d8v:aX;%IɷwSw5ⲁk2!C`no&}6mi!/N/pgN&fz}"'|P};:ΜtĒgj'g/HԶM)i߁[ѷ+i7Ԕ3[ zs6v۠-{ȕhf^ZLW M;1=9j}3mD/4m9fo刀E`陌G)NG<3Z&Q00y]Z1[$&"/t/Dro 91#GYϾ1m$&"2=o!uj&cMa"͌`bb6" " "? gL"|3y^@ 2<# gձL"|3y^@ 2<# gձL"|3y^@ 2<# gձL"|3y^@ 2<# gձL"|3y^@AxiMuE@D@D@D@D ˗#ydlNL߹s-[fΜ9k֬4:W]uU2FuE@D@D@D@:۷oG o޼9W89L>})SmFO* ,XDbŊ *I7t\&qbf .\xƍQ‰o s !Z" " " " {5|MǏcǎփzW-/" " " " T1[H7a|z@g$#BH}l:F˛n|ρ-m˙`-[Vrre,KO›bn6Ӧ|Ysx27/ZD˕ T 0-2Q,2r}r$sbTWD@D@D@D l9{kը^t)'-YVLs `Zd:B/_Eٺuk J,>3g.Tvdž8,xq-vʹ^D@D@D@D`!kk .E|֩UTBR+VtmupS"6sǏf͚s=nݺ<)++뫯B.]_^v3w.קgӦMrӳ}Ǯ/~Anz])V @#o=km+'܂*֯_{ 6thΜ9W>Cm7u>jԨ+V8:uq= 4ȅ"{ժ._b%4j~Ƶ+Z$"q$_rZqw 7oH-z1|wt`~9O?Pk맟~2i.LN\o&mذeSZ^_[{)UXH8ɚmSoNz+){㛖LyjPD@D@D oܸiӼ2=9:|pڶm 6o,##+WTXǐ[Aժ^}emts3rMy>Kfޤٛdzj5BotΝDɓ'O8UjUcZ&iޡCmW4 uDVZ7nR ܲeK񨢭9nݺCCD5pSQN˖-#裏F9hРSN9nDQ5:Ξ;]W^|94z׭9@."C :] O;ezi83yZp)ft[h }_iǜ[Y9:uɖ>_jE t9G3cn~nȜ%]zl:T"sƲ׿3򭥊xkvw{O~fi-˾ʥC[Ny3go߹ *y_uM/3.U{|Ѳu9w}hm+YŞ?uG/lѢN^,_{+tc'(E_cljVuxٚiXYrG?hgP6%KJ*EH3f8CPSL93p}1ͱZJ ?f̘SO=a֣,P}ivG&29Qht79r< Sp´C$'駟FD>1nEZhjU+RDjUTJYFZd:ar\2'eʔy뭷80oLU¤=s^c[3'KO9̅!g-bsq}/o[HVszϼʗM9fYe]?dzNM f~}fˬ%?Q"{}%/߯\yGH ]_u*0n]»tP@5ܜOG|GԯR: 7}\fbRBD@D@D &_L_xqF͠ )m)vA;ָ@x@1•^|y̼y5kFEH|!+@M}]j Э}ǎM6 E&Z:/_ݥKZ#m„ ֌UckFzz6{|p.w\`J 6YlMhv[ݰxſS^bn[iw&p;;I&{GGYSd7f,4>]lԪOoiXuc k.4wD@D@D@*<܋-[qx7-XkD؏&,#hqW(S5Vbg+Vfƚի.UHU%KjV#jEǚ:9)U#1;͘Yf#M9"q0,ZZJҾYv|>v/(?_#ĝ"YǶo!ݽ"",`Ӧ#>k?J-Y]Pf`˳"c%\>_xM\{|ʼn1TZϺ3Git t&MLG) oM&wϮk2BS8'pBҩ믿xЅ7*VO.yc-}{9Bjm *Zȼ 0Ej3"ӣJr0;vسgO:U 0cآLY\"!*l ڻ?>n} ᰺̝;ߴn߳լZm9; >IEkrFNYټ-FA羙|w|z +&<0Ojݬs,k ,\\r |9z/5Ť\/@j 5ިEw֭K߿? 'lWӌvڱ!'|B8ȇ~8Qn /^. p`q,p i{[ޱ qE u~?:v1NF*Eӭ6{tIkNtBӒ#gn9K\bC$ݔI̸'SYuE@D@D@D@D@A@2=Tզ$E@2=)|," " " "  jSD@D@D@D@" >UtLOU)" " " " ILO *@:HH'OE@D@D@D@D $AUm@R$ӓ§" " " " "頪6E@D@D@D@D )ISeHtPU" " " " "dz:MHdzRTY| lٲ7_"MFjjժUN|ׯm̴ѣGgggۏJ曯jReoJTkL\999sL\Ub9-$P ƍoͅ*^}Oofyi{()X˝z+ JGKT{nʔ) >C od_b:uTP!!ry晕+W 15ptCev>~:r>x㍎;:gN:̱iISiy̙s̱|g%K3-qg?쳙fH7Lw}׮]O?I't?8p C 8o~wguVqSd/>W^}m{{.%M]6_zd{{7o&Բ-s=s5k?[nÇw5V'1r .m۶\riLoA֭SN9k׮?iٷ9ĻAgvSO94LL;t4W_}… }qțF(ag7%z=LZ>Gds{O?tj]'|t2 i[۱cO$rHϜ?s8zZ&<3FL!(3Vd66l_%l 'Ll- jm /R2}OoSl;X:tMŵk)_Xێp8%{GǏoѣof=ĉ}O\:uP Z*{|_˖-V;0b} L߄ڰam"cF,By.Rݛ?gܹW_}E&-s޼y;wbԤI̟F"a[߼c")`6_tE9$ݽ{_~ꈉ{iHk>@7[7W\qRv yg"JNkF\oӦ ٔ21o? X$ݙN搗5'qںukP/7CNCɓH1w׉=.];!mk5u棫e2}!f'7|ìꪫL(34\iJ6S&CCܓiLkh<5СCM-i7f(b13WMӏ`g8sq6K=|p@?niwܠ1"^" " {T|}531At*"e*\0D*U*X`Ŋ/\9-ZWqҥ֭LoG~wԪUPNdW^If͚Aׯ* .RH˖-ri85MH%ʺ뮻fxww~ɒ%x=7sڴi0ک^: ߒGgkqd2C9bHaT/[OF]!4h+IXXns\|,dqrk׮]jUXAP{~}3%<0iӦ6 =\4 .X-FEv5j'Y}G̚5˴B *zi8'iٶui:u 8;4Sɺ m/RS[ٔwPΣ6X*U4i„ nuVn vP®~I}!GE sǍ׼ys}`G̴+S +XFS2(4h`~Mիg3)i  AGCDb<h'6}DXBK6m"ķ55(n 2G˗/r矽 myW’!L.ˤpLI{~m$|3m3|fNSEGٲe]' R;@W#=$M;b4++˶  sV1 dp;4 &n8mk&tf?FTP1G}҅Ek9~I}1!Yr9qĈ|Ӂ:Bvh6agRM>+!" "?y;ld^ve\R'l`M|cľ1zg1D+V+W2L?LWu# ַo_*&o*Thܸ1:#}ή&MBz-.H HEPP@Q E+iJGҤ$6mdt~wιw޻Is;gwsn;ydRʩI&Ɏ䇄H*%ݺu+>+i$ƣPh؀BL gJa")y2 ,eFR Rd1[P5-ҥ!W)5s2XgCH\/H4L*cdtHKұ_~Sg%[mÆ #9 NdL"cD." <$ H@VBV7%WbR="JѧJ%Y~ol"0aZJZ"7~!"ŝh*RlNG%bcSI\)xF6 ޣP%'̸!r[Q-Ds$#Yn#Fbئ(ʤTH9G~F4`B^ /R': Fԇ)6 *l63vlt#{<ꫯW)KIJqr*#S2iedN!R|N6KK.(bPZn,R~$ ՛@E-$aP&3K/%ɣTd0;<6#C7RE_ox0!xG G.kKf .&]v$BTrȐ!!d_tEt:Wt8\0: .*I;Ύ[ɸ!Y\I#{*Xt[Me \HK8$))h=_׳g0e9"e=ù&܉ІDIѻY\BYĤ@|d5sFS_%]w <GL$l:Ӟg1Ip';&~)rOMnL >t'-Cd_\zݪ)S2q =Fr@Cҏ$zhSF6 {J17 &EG#g}@ r[테9LE?](!F7Fd/G:P7&tLB! n&$vkPcMnBBTW72e$n,5;fN4g0+"E4цV ڧ,Sifk&`Ett[C2w[n/y vi\% и?7Im[Ycrf$ps90z]j 8:]+ H@H'2Z^h6#ٗMOMÏ$  H@hUMou;*:# H@$ !Lo* H@$ bxL$  H@-B@"T$  H@(Ӌ$  H@Z2E;$  H@P1 H@$  ez`wP H@$  #L/Fc$  H@h$  H@(F@^$  H@$"-A%  H@$P2I@$  HE([J@$  H26+_$  H@MeeNQ$  H@\[f s-J@$  H`u#0&FӫʋoڶmԩSuuuykM$  H@%KõUUUhFZ7͛={/>1v$  H@X n(-_rx_)$  H@J$bt^{}Mg< H@$  6L=2t 5-J@$  H`M&P^d]$  H@"L/IH@$  HleC! H@$  2\$# H@$ P $  H@$P.eNyQ7d,Ҏ$  H@@%nwc me:Bz H@$ U%KF͞={t]0~$JճRo+"C,u"pq?ڵkfO)'ƾ$  H@%u?tiڃލ>8g~b^`E>cݿvdɓ'kNP߾})3x-}С3̽U][:# H@*D<`v¤IhuҭkAItZ4k1zaYvoxvy=zg͚w|3gtIq8׿Ν;d[o:x[oj.#*o=]^gnmOTٷ=jjg>y߯( H@A`Μ9ȡw}ذa9rƌHXASNE\~s[gubf(s=lA3   8`ԩ&L̙;o5:VB3\Ed:—+`رwy' |W^y'8nܸzJt(u]Z+_k|=s4Jlw?ܹ WJk#oYj30aA#.Z&]nY$  'oF~aV>S}u]H^#Ue)}[o(ӧMr"JǏE 2{\&A&Mю:njWUU=tȐ"}r"20[80ʻ{G8. Be?N;!輳!v>}Y| ?17??g}O+^s}u>LoN% H@Fz<**{wyߺ0` 5/ H}7|ڵ+QyʣFB!Ոo|M孶ڊwBhk͞=!7ޠ0x`4Fcfj{h|igۗʏ'/cFOYԭs+8xVDCM~+Yr+sj-:Q6wO4y?vɳZК_X\T&m>u:_}ܐ]`ޕLğڟO>Ӎ^9ln0ykO\gX'ni9zyTw H@*G`ĉݺuԩoh'3Ϡ5b$/ď6{W>;>Dk({CaȌ@y\ht7 ƌ*tСvpw}w)=籐r>EO13hҵKNu)NJeY?]pTrqpIIl99M63d ڄUDE*#L:=c/) c'= Ut ;e>}w.}^>k?M9ie˟`O.OڥOϚv"Q662b{^kǶW?6ú|r6{"9~̴EކWVdm#Y}>) |g\j|j7 :WuHʂ$  H@&.Ķyd 6p0(+$)dk{E"64b-^WΝ{Z!֣(sJ'ߴ!馛RCcz!cr^% tl$G F8ҥ6Am\9{aԭkXcmv?au*Y 2b-N{\"w|@^E*[O_/|׸Sc/m?o~VGGΙNza?nޛ՝V"8rV7{svhґgRɐ |#XPa8dݺv؁ڍ8qȠדse CpIz?AY [ׅ:QU&0x%-k%!ܵS=.>vmsnۮm@IDAT;\!|un[Swl6"CfI݊+Ep#/^=u8s/ ؞&V=:s=ֱf.AswU2gѣ ̈zƲ$  H@&@9 BR\'N8qk*~NDǐdŐB9DH]}W6l3j"/׏oN3G*| .[[GHVeEC:v=v,ns(oeEdz1!RCrAnlH~- RȂBS޽;Ћ{%IYh'fx|=m֭ Ovn \{N6qe}q3< "ɋ97cFI繕}8o7o͋4f)]蔫8x.ҫ}}yKoKcg,6{I m/(ƣ$  1MB0FPw}%lN$@}!]w݅<#$ۓ³{/ {UJaVm%{@L&Ց,<{G&@%CK鏐D6}ƨ11y:CcYeY+0 7M5RISTril%\hOmwwji^lû'͆p2/ 6FR¯G|s{mOqdnU.!;omE^݅螭WM܁n~aO6~ H;{)sQo߫M_[w^Az$_!~W?ȏO/ZvoGN͜I, H@@ zMlM$ P걒P4!=V6erQ ]BMSN4ejN}](Dt Cv-TDgyv5K/_;u:un1% mXtnA%;L)Rfe {vZd/|st- vDj/\,z]̃^vKT,MXO0( H@@]0sl-}zd9D^,A~$`wҍYYd? Rm+s+8w&^2Gq3?ܽ7^ƪJj4nA$  4@MM'kDǦwLo\"M'JXc8y`neM$uk~rĠ-ZC%  H@M"2hz3_4S;/1-R$  H*"Ӎ7|Q$  H@L7% H@$ L7ޔSb_ H@$  TDM’$  H@@STDMo)$  H@*"Ӎ{aI@$  H)*"Ӎ7W$  H@m'gΜnWMMMQ+%  H@$^ʝoϞ=sceE  H@$ Ւ2)j۔$  H@*A@^ ڔ$  H@@(ӛ$  H@ez%jS$  H@M"Lo>;K@$  H镠M H@$  42I, H@$ JPW6%  H@$$&ᳳ$  H@*A@^ ڔ$  H@@(ӛ$  H@ez%jS$  H@M"Lo>;K@$  H镠M H@$  42I, H@$ JPW6%  H@$$-)gϞ]WW$, H@$ Ց@xQG^{r)Ç_?x/\[[[՜9s:ŋo G,Y;w]);GI@$ "Z@Ϝ9?O~G}'8c>".iӦxMMAԾ}Vѣ?R0u[$ U@ ׯڵk{#7u]կ5QO?cǒ-C=/~=\;#vzp?k_|;ʼ?G>_|y|饗=؅ Θ1s}Yr29rI'D~ DS0G-Lg=җSOqcƌ~~_~_-vp7G)Yƍ:fR G ~8[o - 3U I{-}y )d/츮"$  HB&O gN;!H~ٲeGESG]qo|ꩧ"hXGqb74$wFx]v%vܹsȗ_~9e4{Aߔkf֬Y|ɡ36lC oISyww_?uc_gEAz1h6O<믿Hϟ0Dl7o|0!ӟ{Vhʡ%LdaC}h- Qf8u)8'9\hQQ8;YU8r꜁{=pqƃ{=4JnҤIyҎe H@$h(Ut]f^-MgE '^;eʔ|;D?#*۴iC2 NO89N48ĘE~g~!ڗ- \tԉ|;nk1 *_#G}t曛o9}Spw}uE#9J^GOk_cM7ݔwމ5pgS[mr&6c{avit_?}VUUyΝ1FGDvЁv%vLSGSYfkB&á\p289t)4 -0s+'ٱ_2l&16E{i2Ύ{;yҔe H@$RZdmے5^_H=lr]t) L?'|$cif Bz.4 .vP.B3` Y%*Sʕ$]6pÇzazJZƱ&&<=z`C7v,TSG{fO?4_xᅬñ}u ˚$K4 f>26oE{ia3;8 H@$вZFcOdbP&̓n2XrE("~Sg?K>}lF7pʃ%G6l1u"d1:}t|H6@':u*K p[ ,ɾHU"O>dR8Ha1C|MЌܒnݺF s4[K- ld/={TeBVbA$  6-+@@4 M9QNJF49ܷvrf$?>>Iz 8B]U"fD)k,S@~olH0a2JZ%H&T? /IjgT2:(}A%kLQ1~İ|bd::[(%; saV*ZY.dKėUFkstG Qk(`uH8JwH8$w*/EBB^{-x6 p!ߒBṱ̎- /d ǣ6)|,~i%LQ$  4^Iͭ-Mcpr )Q:H4=r#D\^c,d$2 )PdW?)S#ro|,ݥ(aXd+COsNejl$Qk$  H@@sh^BjbZ'H_5h\~ƽ:;W7|׮]b H@$ hɤUJ@$  HAb4Am, H@$ Loʎ! H@$ P7%  H@$A1$  H@$ Ჱ$  H@29(;$  H@D@ \6$  H@@sP7eǐ$  H@@($  H@h$  H@hezpX$  H@A@C$  H@ "Lo.K@$  H9(ӛcH@$  HA,۬|5K@$  H`#Da\f.[l$  H@$P"[jVf s-4$  H@X ̟?2›m:uT]]]^Z$  H@@k&dpmmmUUڸѮVDͼyfϞmKO%  H@VEĬۭ|hzg˗/WE, H@$  92^bl2G :=gǶF$  H@ yL2ogMq˾$  H@X y5s$  H@@(ER;$  H@(ezPjH$  H@ EflYiH@$  H@YlؘL4RԤ Q$  H@(@)Z?[b.fҥ"G H@$  d B^J42=;5$  H@@Y42,ckD$  H@%Lb$  H@Z2%;$  H@r (sX) H@$ $LoI- H@$ \\,VJ@$  H% ([cK@$  H 2=$  H@hI$  H@%Lb$  H@Z2%;$  H@r (sX) H@$ $LoI- H@$ \\,VJ@$  H% T5zK|F$  H@mڴi׮]MM NMD6|Μ9Z$  H@$"Э[zz#^$  H@$P Rt#ez]]])F$  H@H 3%UH5d$  H@$P RΕ饐$  H@2Yq;$  H@J!L/m$  H@$Ь͊$  H@$P ez)l# H@$ f%LoV& H@$ R(Kd H@$  4+ezv0 H@$  B@^ %H@$  HY (ӛI@$  HR(F$  H@J@ެL$  H@PB6$  H@hVf`$  H@(2J$  H@@hW۶um97=%  H@@k%PA?oNG뭷ަnzGw)(yub-:ꨎ;6Ȧ%  H@Z@ezv߻w8IB&Mo<oZɓ}vaРA)O#<uQ)l# H@$TPynar$i}饗w33nܸna%9֭[r $  H@@ė,Y,XP[[{衇xD׿Z:-Xg%Ӡыp>餓NAm, H@$Ђ*. m#IzBmo:8s1UUU~ӭiA$  HyT<4ڟ|I_y#F >|ٲe ?;'?ǎo߾}{sύ5ҥ˫wq}1ct};蠃3g΃>oϞ=>z78mڴ-ܒo_znO篾jz1/&5dȐw}+d8Ŀ/ M믿NC.̛7^AN8enmMM я~جo8YP!?OgJ Əb_o~dYkE6z7r7 (c~$  H@hh:Nr(G/}o:t@L%Bw_O9vOD \1!"c(~o}~=H:]!j$E'=CZH&8N;#;Qa+3D`CˬF&N6ۤ:6h"+bM6KxeBsWY"ٜqJ,Pb?h̍.(֒SepJV\/ɉ((bNmF{tŲ'_bl\Qq $  Ht-) (;6Fwwe6Ez{g>쳃\Co|EC=B3  y2ڱA%?c(r4P(<"S꣑&s3:z-ˌ~QNI)~Iv~varBxS n4Љ;w.ZDAnJzSG{gf¤q^Ö\K -"%r'? $|,6>*"bA$  4@f M0!^zhk$f6QZ#[ Jrg<ĚX@&"9d2?DplI2Ecra Z1b8y)d2!v;&Pf2jB(afB!=VXpJZnD3g@T: ?I/ lSz<dǥo~󛜔@Q*"bA$  4u+dDuU]Ni&_ Nbk׮aQ맞zk_Z8zB=քr?UC: 0dz{2dgl{#Qij9q c. * XH 9EA%G1'97b"Fh0x@)F?-M 85~8N14ՠ2ڎ}q7n:l(K$  H@@C T\:4}M2%:@eǂ|w :x3hqAoQgHGA?~D)#y =!\[R( {}Z8=m2_dHlr?>;k,YI3֤87b":x0_b{3NaS8lzS;JM١CMpE}+"bA$  4@e: =n!Rڑ6˳:o߾_~9*l c"7lP&H,Fw.,S&?e,wT(H@$ \-KTda<7>lfK!x<;񥚕#W^oά\>|N,nb,lXNr-:6}"̜:{n,%w3bj :Y17~(d:В\ -xطfEQQ,H@$ hE2=Xܠi" \8gk% 3 c~Ғ߮/ԦԣI}!e_:׸^V,8Mxq~\$̼ d+%-'7܌}l?[$B89J H@$P V$yglՒrߢS#y {UEł$  H@hV$m2~N_>bCF̄Gbm0;=9_޹ޛMmUW_|1_ӼI`C+SO?tL1. μO5~i77A0'پat Y4<4)؟JW^I>  @0'VX~eO'#Qy2?!oTўwyg~74ٸ2g1_wkS.$`}8 U4RQq $  HAZ#M.5!Xv<HF k$  H@@XU!-۷/evơ/m׮СC=%6$  H@(NYf &9Y{H+t&JӢY˲Oq\vGݻ_fZNmof~i̙'tB9o9뭷FGh_j.#*xmE\[#5' H@"9s v}aÆP9r3R>[:N|>ϭ:}34@ Q`L:nOof͞]өc%4:UDW4cyxO(O+OHJc9\7 G^V_!;1co3_~'Lһw P "ʌKGN]ݺCzif,ƾ |`"5{?k~}I7nۧth^w<N{eƵ'՝s۸w]:pn:t؀5~'}ߍ7m1GzyJcﺑaw H@L`ĉݺuԩY[nvz?p< ;[%!~ >Ӄ>cǎ0hb5=s!dF.td4:Ou;V4{Cpwуo1| )SQ43F8I/]tؿT2~LOJa|cY 2 .&]wEJ:8ʂ Tr26d3<7tB\J/Ik Gl+9ie˟`O.OڥOϚvm,䈁ۮ z~3;q 6܉zl}0 ?+:nR#Oou]nwܡ툉 yu6vwʮ}7 :WڣK$  H@X C mCO0a 7 BB8F[l믇55:wLCDy9t!MѣGoИ^?bܠW(#þ.1x q+"+Mg9u뭷Cܚ5vmwN 5t< ЌqB!FXrSrۋo=}d#]oQ ֘ڟ=Oԧ3NVͺ5`ڜ%D_`חgҠwޞMʄۯh\G9P|I@<dNǏg^RЦ($lM<& %~ d{L-jSG:L* qjw>d[)Ff8dݺv؁ڍ8qȠf$7(`j .{9 ~ ',r-lƄI"=f^8e-9$X&:޵S=,[ޱjŕw֭c'\ZC>{'L[w3SOޭsX|GMV:c ZL:V[m>E8?yԲ$  H@72QM0M$5u$;TMĂL'+2Ω$B+fQ٬ؽx_~D7|s`>R]gkP z4hŮ]V(wh߾Sǎǎōc~k*"ìk0S܈I A )PiL1NCS`G*C/JYfŒcw:W_#<㥋7rf/ ӧWMp"W;Os-:ά]JMjGRkn{iFƲ$  H@7D9b0M47;#y)wb@' TM Qb+Bo=).<{zs=O*0+ya3TGⳌ裏| .?BJ}ƌnj͟z f헽fŃ0 7܀Y5; %?o7xȠKl.vOzk>76zG/уNuEO~=GNYt՗tg̽VHޛguz '%==>e)5s^{tġ3?O/z7M/ZvoGNKv+3p[# H@@57G5IH/c%PB{lD;hˤ_.! )SM25tGdK%^2rn"2ʛ_/,tT=ϼzF"WkCynmDbY$  *"uY=i9+ H@$  4 DoD$  H@!t$  H@@Edf<% H@$L7^)NI$  H TDMo3P$  H@! iMMj)I@$  Hd+_=z[++Mw8 H@$  M-$  H@$P.rԎ$  H@F@^6$  H@@(ER;$  H@(ezPjH$  H@"L/IH@$  HleC! H@$  2\$# H@$ P $  H@$P.rԎ$  H@F@^6$  H@@(ER;$  H@(ezPjH$  H@"L/IH@$  HleC! H@$  2\$# H@$ P $  H@$P.rԎ@`ٲek@J@$h~UW}~k뭷>K,yS̙sYg-^8U~ӌ9_~\5nɳ_^5`'[ܱz/\#FmU+)l <>w7[ kBR7Yp H@ELw׺{ 7r555tPsZY9,MV9XNO!%=uwvi_M^L񱢝ִƍݻw.]8q;C:w\FEL-]~UUUlT< H@-Hdz>c~8[o nf ˗/~} _Mt6;^zc=v…goρ/~+wƌ{~1<4 vFJ9s&s/}KO=E XwqWU%%Yg.2͏c^|;Eh޿hOGOdN6:3ƌoe֓"|#2ſ/N˿o/}{|Ν?Mh'WPTű,H@@/}MW'@^;v,޴/`%0i$=g 42&+`D&D IDAT^P,rp$  @+wԉ:t:t^q`18ԽfZ{?#$6m 4߳}׾ƈn)PIBc 8?ɈHz_?0;\IL8=4JrAW4㝠t,i6|;fg K{'݆|k?-ۗ[kߋw/I2<ݻ:h@%}-L:fTRs*4V|N1vRCq".zS,[Ȟz=}6f*^xo;o. p?IK&NKjȿH.YM6$tAjӟ6ڨm۶\iףG#C!~рAuu5XP\f[?2n-,{.9AɁ,K@@qX]3E&ˆ#-c!  ScK<5"1UWMbw2]腾'4Jrm%Dt=w(fm_h/7q8w>h'r݋Gxd 뭷Kd="~L&z ,<$i-wg6tg S&'.ƫ.=)'{rb YRt1N${ߩeCgOwhUag;<-6,ɲCF#J4e<%|DF_s+Y ВE,߱ +Yc<~51)z35 5}">e~RPw!,r d$  d Rrq_l@4pV[mjG"Ck:ի]/šBÅ^$rM7;zOFg bxÆ #NdLSh!VM2Cn />dAZ˭8DY ӧOf!)&z{{8.BSN5cjPp:>vOU><0_lM.uSįXj4ȗqv`1N,$n׮ Xq08Y j7}!0E>VZB0?G=mC%'̑L~ ҈3t&ۅ bR"V}H8?<i#b=,_"틔$^#JU&&O8tN4 DɺAR.U,Б9Z2(w1;8P_n>گw S{.I!X{W E#?Cf!L2I-?.{v 5έ/4W+ک{t$^w*{ekcNwЅ.ԤP& ?><- .`6 iș sɍ!Yi{[Rq4!Cp8ȸUyʤDW 5a2iF ۠ Qs،CP҂KRGk{ HY$ Vh:ɼ<#IOg?YRQ*Z;dvU/͸MT//(i*DQB/ ҋ wqbVdzx+(a8Fad%55g=)dzZ}K/2ȳ>M1e$v)T(rf]R%X. S.UCJ^tNeߩecЅ.h'\bMnx&GQ,MQ0d!z[k-V'hD}yw% rJ/ H@$ 0H5( H@$ P7%  H@$Pv#ՠ$  H@J@T$  H@@ (ˎT$  H@h*ezS _$  H@e'L/;R J@$  HM%h H@$  2H5( H@$ P7%  H@$Pv#ՠ$  H@J@T$  H@@ YY*$  H@E¸2=[l٪Qo%  H@$PFuuuMVf sm[v$  H@K`MWwxӶmVNk_k$  H@h,YB7Պt7oٳ~i􉱣$  H@HuM@lHY%  H@$P";GKmVh:DPAH@$  H`!d:Ք_M)nW$  H@k22&t$  H@(ezHjG$  H@e#L/J I@$  H۬2m 5m H@$  H K F!?J@$  H@(EKgkR̥,]_WSd( H@$ ,r]K7^gF$  H@( F&elH@$  H@X$  H@@KP$}ǖ$  H@@.ez.+%  H@$В-I߱%  H@$K@J H@$  $ezKwl H@$  PbR$  H@-I@ޒ[$  H@X$  H@@KP$}ǖ$  H@@.Or$IENDB`django-rest-framework-3.3.2/docs/img/cerulean.png000066400000000000000000001721361263353514300217560ustar00rootroot00000000000000PNG  IHDRSCr iCCPICC ProfileH wTYLzB{o׀ATB-@#+"  mQPuAu],N#η}{o;9@yңcb0Kbg +'Ly-YФ=7707O]Avd%$ }%nf73[.$&2<$.Hsz(T\~d9,oނ(` l-RA67W|?W O˦{ 7kJgtkK+   =9*|EpLZ8T}`9Tet!0Cfg; !Xրm`Ap'A 8:Up!c% A8Q!eH҃L kB>b($5&*P=+tꀮC}hBaLauX$8· p%\ &/)@P4 @yQDU@բQmn]0h33f3Х*t3 }=DP0j$aVa0:L?f ҰX?6]-6a۱QSƙ\p8.Wۃ;Í>IxM5 >8~ C#8 BpFM#eDb81XIl$^!>"#H$GRR2itt4BD#qdy+0|BS)lVJ=2 U\)őZ/U-,'Z '!B:_BmW2}/:j22STY+`tR٣e|8rr.ˍRQTMD=DB3SKO*)*D**T+\Ph4&-VF;I}VTWP*nQlTSVRUrW*+5)+}V+(*oWnQ~V1VYJeWΪlbՓ`5cPjnMk _VApHةqQcB骙S ݃Fw'ԴDZzf # u::;u:u&u5ut6>#1xz 7?7P2`4<2f31R1yƷM`{d&SGSi,ǬlĜfؼEvnovi,ZYXXY6f[W[߳ڬiyckb˵g;dG li^hh?P0Ȑg0J1;~rwv:sQ qZ4r92JwwuMˍV]ǝ^>aq㵧紗ZvowwOO_m$I?;~@Lu&YϜ pXH |xpq[#%%- #qAHfȹإ!K> ]F [v4CgxYQDgtd\d}twTypE1*11غةe>v-+Xn*hV05LId{w_r9;9\n9w<%1>u<> KWm=M9/BZ81 ^b}=vQH h^@;ml$KV@ĚTξC!3-_Z@~+7K^g7 pHYs  niTXtXML:com.adobe.xmp ? A@IDATx#eLz˕pwTMT " ((W^Lv6fI.峄ɓgHeu#z{/Q{DY9xq͙0OR 0/0\fT+mx/FRn3J {z|?^ =7[Wmec3,I1[ $#l3Wz<Տ[; Ͷ 7]eN(ZfR@]MGG[2ch;@R"lNɵB*!gmolt*vj锊o.2.g~Μ`^7rM><k< uWWM=B;7Kq;^&{mÝ}i;VtZ:(snۇznҬ6U܊v=-RΙU4#u=v)eGs7i-%/WQ~oQYr(Ro "c7!϶t!~co@H6 ScGr'KD2Lq.-_V}ejFXڋ2n;SLx.N\Yav F4dL*mRVӦטrCıN>b-La@@"Fh"5Q(h;3g9 R5K>MR943综.W\.oP =9 ~ڋR ,e3.g`OnC0s{_nRVYJVGDF0rK)- 4 1n֍QT\I)[[rnm jJKG~yUY4y~k#e0VI2r-O dV7)gPlQI[(IBeR5]JfUV]~~Aب$"B-rTt&`Pq. n:VbEMJ4K1fg*-bN+0,)WUV̬pjmN\=:BGmA*3;rРxC%YSӁ &lT134{ԺUe&՞nO8@0rlQG03sHK4fU=>ISßf*1uV5Nx'Ku>bwO{M6( 0!r67z}*%oB;Pz^R ;?msni-)̯Ρ.}wUV7^nX15g<߼PSEY(,ZԶv6:}%\Zi*Xb[iq{_?âU^t%KԌﻟYN #Z.oFJs+ 5 - C<9FB:R"=ڝ4DM; .7f0urDA#\ZĶgZ2Fcno<~a[_4}H{-ZOo52/ ovq*q'Gٟ|oZZ@trm pnniz^n20 [*`n~/ۮ+{A_zGOH6 mLf6mX4+Fp,}=bN UukShsTpgfo .fKc/btF=N)ņJkwT_cOnj|5O]}zbT4P|$#`<ԥ)՛>o_Zj<_ o-s,O Ӭ܊" UTܫ̩Mˣ?RM󦙯]w|fwg}Kt 7`!RNNGy]N R:w Jl렫wP =C=Y97 l˓uw[Ԗuyei湭J x>3VP{n8)7=i5)ώ7##>g3~qבVW-e9[I3uS4zȪ%Aèh"M43LbQҪgV*|u_K*M/^sUvCŝB} @Otx:Vq%\?StMޣxET>n5+F |OR k<m2('ŽP0~59yo(d y4=}WRlJN P ^10gqtbnw7!'8[D)*6: ` `,{4: BJAMףi.,>Tf⥋b7G}C*5,F/CϵBo;ڼoUVO]?haԐCI9%aO1SAn(P "#zqhءo,Ga&yā]07:o ~7e9״/P(%R5ߣ`܉&omU喫D(YrKt /SBR5=9VD :YΘ-#ZrmR0ɿ[X:'M`Λӆ/pɕ+]-<4j^T#?`x +#iWN# N.ȓ|V0Q*xt'u9{m9<e)*=^&1;baɳ6,ϼJWTb5l"9gbx@-@W@ll+ Hch.4gAmn1  f}Eb Rߓ#`B>\; }]a*A!֥WUj5\V+CCRJ1.h6!G 4%ޠEM*N)=hYCls2}(9,:w [ۜY|o 2OzTI+wrNi%N >KyowQ)·TSp);oKoE5?WMOܽN!Wx[ő򍵝@slQP(jAC[2 n}7 }25}[ڧYw;, }w\4׶J"ޥJ@=wC )Sgi.G<×g=-45ht9H LH`~¤m7_4;[>֖hk.2E?䖬k2{"dp+,B*!P4|=4ƪa~Jz*pN|nE#Dc3sH2{^TDS_AprfE8J9<m'} GQ^d"G*d~diCODҊ}C% hn{畭{Q9#[uF(5uľd;:E0^`AITr<A'i }tO-Htoi]@ sg8;M]Rg8mS(P~FF%3jxܥCoQV ,_c{S>Rm/5r(Mb+ ?EG1A}&3 tC+J-d=i/ZUG,!m[2,-@8aZťo&WL~ҟEwuKf^yM3C47] LK6 ‚am{]kԴ]o1&uN@W23#޲fek[mbڒ 2C)R'זo[=pOS@.G`BŊg:*S_([/kpNb<5w.KLgTSqIEϖ.Ng~Zjf.˩/-;t*meM45 "=mbM=3'}O?sҶGC93i%~;M7iʹԯ>jݸr kj~9RCKHpz&}-V'R9_urU#`9#>1att|t"Eӊ=JIymjGMFuv]0 KIw{B@ _MIF_ڔ]KG~u:|kwK#9BtD()ɧ[+fKOQ򒩑?&࣡W[R?A?oE\7zDW\%P\#eDz}~#K\+-_MMq =JCQIӃZqgܒ!P)~becx.!x@֞DH XDX(`eT1__`<~?gr3ЬDڠW1EzU-iEN W zu#H]Y:%5qpJdFTJQr ߔ{*QX;VO۟o7 @`Ldpqi17&S?wyΐSº>;x</]f̙: ܳ"N oN:+ GM _n @@,dX5~/M|V&./g4_6TזiO+4hm]JP $[8S\MYͨ/ؿx D^XDʸ~D.)4. hth@ r̘\тz'nCT*s.~&-Fq^CӅ!@ $;#E 7|H%HO$; @ĻÇt3 @= @ $SxR܁p@ ]ƾ H: On^Jp0@ oA @Qxrc<#@z $  @ 4-;FoylhҮ4g@ =# p .r.H!pJ+ ﴸ]-@@¿ ngUV`c4FyFRsdS; @SF=^n¨QP845(>ܾ=wonu{i @@ Yˊ?ZUqlqlpp)gڦGڪa @HF@"dN-Ip^8IuS DT @ R.ɇgL8p @' Eԯb9Iy @ I 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\Qx 4 @ gAE @\@dxzd9 @,Z4R!BQr E%`G@ /9tI4 xР @I PKpH'4@ @HL줢p 4 @ ӭ3h @ DaB#!@2JQxFNt @@~\&4 @ gDg @ DaB#!@2JQxFNt @P<z<|*ƣ @-p }?uIfbw`־2cnҾ䞔ͭ)V]V2 yvJżl.vc|n0C}*)X[cxn#r~sSۀJ / @8QUE'jV̯W[t|d/tA`jnd]d8^ɗRx9/2Y]~q\ ("Cr{Aߢf/(WY %NGr:sn7_azfero @Dn' s+zwnťhfo3 ]iQݶISiBvm 9r>h,-Mkk֟لlxX|DMjʪX!zCATZl-P}fû4M ߹eJ5W;6>:gB>0V:-N7kg:b ~zv"s.}& @ Gu,&l/Tfu(<J}Pz 3G`3ݯ5;fڙG4 s ~z,ڳ˯QӗjԳ9:nm«nll,--ƙSVGUf9Bl s YA௜# z9*q{t"nWOKjƯ0ɦ_j4<6Eba6cQn1pi% @@Q7~@g_**VGԠsY_ iԙHyxsrԋ4 [;|/8.(eJ ,7( *-A^)/#oUJ ħO.!4K}\}y=ݠįf,@#ͣK atz_n #@[գUӗ o,T.W^>EUPc,mtH @Q zhXyR 5c)du[;$OϕԿ>lTo5#xAAUKYi* %ܢrz{{UquI/yiiW(=7;3:1+MFT;t*u*ب#mNDcԳpE~aH @HF荅;\yf;Fd`PjOM &r韗pwkFiB WWi5,5=N;M#4Nv]{畫tJL?KP_(%0:b@I>Mshu!])C3185+XZ-г4+4:h: @1H* *ƣr@ UyyJK;SrP @@ PKpJڙzj p<%@ BQpZM)i^QxJB @ pB $5#儒Bg!@ *DᩒD9 @WQxR@ T O$ʁ @@B>@ JQx$Q @@A @ US%r @ x @@*I@ x+| @HTI@ +(<^) @@J@ @ ^DJ! @R%(C.G LMwcSMנ\Y2X_yN{ gRVrKE5:mjןվIvmRӡI`w@8~K'tyX>I|>VR&0aBIH,I԰D@߇'ЉhUE⑚(v!xIsۙs/_ASPx;;*pТ{SX`9:-Tt1F @X Р)=G1@E`S-©r;ph ˩*Kh?IGJY1XSmJ Jc2O>m,{U(;PSSo~/.&M!&gAd;;o)5.Βxv86| P*ޕд*NC)M?h@IDATvBASU`w2ZsU9HK.rԓn[v+als\s&:riʶ~^Urʲ:Q#:6lC &@ڱyxfkF: MD9\wWZyӏؖ AjTݗnFicU#v$7=4uZJL4XX["7E`-5¤ Q8zCáq{Jys\VG9Q1 MwYtCk뤔ϝ튪wiKOwM싧-_ewoC~o="OI!r4Wo ="q2^kN)ֿᇒҩ*)>R.tHup2P& S9,4->l߹"?`91{l^if!4e{CRF,L_BC{Νuӫ "dzu[=?toY{Ik/S֎!3ֻ9eU}2{:|1<{a5:]^T0u5UY h1 )#Vj"6^wݿuxݑw$(<<<k]Mg%ڋ:?6&,7w_F6)FV8J,ZZ[ӕTssمtkgӏ\kuΟm/ŁbaoGlҙZGo4 nE-dD^ aU6l딾5g^XV5[L:_%S&TrxoB#s, eMMΖA8%~ݟ}3gF$S݋'J3yď}0M35`O;9O}|%rsKr LbPh;5hюE7]q~_[UsA.Bv㫃UCd /x~K#~9l|4NWGKPTzǺ'ҥZ](16,dhřR Nm> .epcTEf>-ן:Eq("Kp7L@6nsiC;{2PR:QʤAݩ!8\l84V<}O8Nz'$<㍧ΤYCY@@ H>\97;Т&nzEe6b'4l*HcFq;e 7!_;/iKg_`zxg ~2x.s+ublHbVݿ}W[$Fm:kVap:$-BF;z;8<:ko>:%~9SS髪 첈+{{{xo=wb޺t^-NGqgwٺ=ۜ[/T[ [-(FNhqYxǩŒ}̳GLS!&ToeH̼YYO|p=49ꎁ_.?{Fo+(X%0ǑC?۠>}vhY{)4YK,{x) "Sb sWt14"'t7)9Coʏr#_ѐr!؀ 5eF3cQw{WMXG]C> N4xa:3R$p&S>Bhͺ7O-/T4O9ws*Fnߍ{Ok:y$?g̦6N{C^nXx(F"ʛMKSS)S6uGSwx8NuĦ}𰎮9izU»^(b_j@…ҔXul Lpc>dxxUULO.؀ .^;S&[`(5ܗB+L{6E}H.iYo'nEsv/O巎>蕊B=dP\1KU2 Art{Ņmn>ZZŕ (X`^cH@Q ցSMNZ0ɟ&yh=*磚v+?oA\ < @)@1Ѣw&W)#%圐@lbbP;0VM?Զ=b D25Ki7U+s۲лgԉ36MQ81E-m@gk1g[qEd叼'ާöj@@ qqGDb)lބXb~,<2Ad;D4]˧GLvZ jaBR9 KϜ:ԈOx+_ZeӟT~_3wIn=_f+#r* @X HbӤ^B%i-\&U-K I¥/} l趥sKen"QQ )^Myz͵+Nn~Dkuwyq[=-d)} oZ\{f d O`$8/uhB,&-U-˘S9 `!_@g5 E-(2н9MCiCjF^~%ݷH~RϞںP @ IT&ٌc}YfrK͛POI!T$ hSrMZy;66CBW'<UM}A}u(n k jN3MbB{P @ B&ĕPO,}sO(1lxy-Ë a{D߮ /:iec3F!KJҼ&z_9P C%t_?ʒ{ p 1<'3uQqu<.B@ 4q wyjooZPUsG3׿Mb$r؅|abkh 6ШyJE2[OobuߢӌwxMz(Q>.:( y4{yG>E@qb>w`,c Hpsxtwy_P"n .]\~_/^!03L74!#VY17'? ۥr&Sg^EF+v5.y ”\ʪkW̠ |!W2uGwg=51K*/]2ef̟ǿfe^Ghjղ=/K o~*ȃRK NSXmKlC@0Xlwӂ_RN/ݤ,@3Wuϱ|\,k{]4g_#F+SRBƆ(,})t9m<Q Dp: @"G5 @&[Qd |@ D k@ LF @@) @lD-!@ )(( @#E @-(|Q> @"G5 @&[Qd |@ D $_s5ڼ^/FO|;~DK{9|DK>:f!C0n!&KDx @ (ƙ @׿z<|+ҎцVxQJo OѵSQ<-|V3)(9mKLx\xDd8,U% @*T+j)&˓^_x>}׾5z7_2eN{7_y⫯zs߶nj4׬Ys饗R_O~rmnll:uT2eٞx TRfJt\?*j WTT\ӦMzjǎ p z^nZO)ݻ%#=ƪw㏛f:Q/*$*Hc!D-jCt:q׮]<ϟ|$CUң KG)JnX؍EMrM%؆ @${e߿j*(^{+h)b^|9X_977|_N.p>-կ~Ea" bh_r8>lCC%\zjdڑ:Br--z(Bݻw_ve\pO?ڵk43sM7-[lÆ 7n<3,"@{wyrQ+?|}}=bŊ 5Xm# ΂nƅ t.]JQe(=0DmdxEQ{G_DE%It:Q[2Qc L7uP.Eu{.`J;w. S6h.9Omm?[R"EJ4Q2eHwY[6$^B(iREQQPD;+WPDzmW` v]EUQ@tPZ=ټ)3g<3{ٵF^wuV[~w&i$->`B=>fpl#ͽ^|ZⅣ6\ƀH4? ⫂vL7o?qF+-Əi-dEY %k6MH9򈙌\O?HM+;2zk\@L`>:͡ Bvof\P®jLϞ=2 i>nKX\f^D@D@D@ @!cOdH&瘬<9 >yw[/{)@1^ųLo`ްab?E!WUƫm?L $ ]|po#k\@\>Mk[B$0IWC ""\+cX+g֦ ڵ+^|8J{O=uRnݺ\!O=\ImexooƉG5dM ӜOz}wW gMA߮`Gď2qq {ֶѣG&ow 1/i(: %A,$TLXBiPKT)" " " H +QL$2y&ޯ#ջ6 5Qm~F ?oW苗}u \ #ڑOO\@B} C7] 1δmQڌs+k" " " "P W(_٦k,w ǧ'?8]4$Tا0tӥ+""(x eRW}YbMRAD@D@D@I`y-J'Yd-.BC(yfFJɣ@%<dD@D@D@D@D /bND@D@D@D@E " " " " EM@^xQW" " " " " /\k@D@D@D@D@&D@D@D@D@D@^ր5yEM\p(j‹yZ" " " " "P5q'" " " " I AvvNZږ]w7'!LJjԨ_s(yv]Fnݦ]UXyejժ(a]Fʎ;K rv/aKG@IYaDt+:0E@bȗ~[v-[lq]I Wh宙 c m뇹;Ͽ }ӓx/^\+Wt5t x㍓&Mr5܋3g\`AAV+*U-sa^9X 6W] Jl'6W`}R;vWxڴi,l)++ꫯ߿?)oC @[5{rebXnerJ첧+Vx1VWʡ+-}UK,I^!Ç_~yΝW\qCbb"8|dz)O N{1c%+?r} vs2vfoڞ>|t捒Syǭ%;>} ] &4lGAnHIIqIƨ/(1o_|Qz-Z?C8`C3f VV f#Pb/vO?_V&5D2e={k  #D@|y5k4#)_o~WB\lݺ_$Joǎwqg |7 СCUriӦzs9tv ,5oڴ￟@8WYf=C dx+,\2]yʕ rpE=s}qơ .%L(|d.b ˮ]Bi_5jbǁ9X:tpE Za ^o W)Ҷm6rHR*U [o4^Qװ{/m,pr]!{k\g'#sG|WgqFBB)r^%1ʾe:zy󞑂up.xMso߾3/өS'N@ \+͵2'7{*Z*ȇZ%qJe ?" h:릛n oa?c\̮>O?i ujQWt^v]kn룣]s;oۜ[O~lnx IbnWl{}Cgx={?O ʇ3/ UҪU|#F[oœ뮻/•'|Cq믿r=@?\\،^xᤓN‡}q6oإК͕jԨqm{q'cz  T&M\ $cyq ˃ @l%/6RBopc*AyjC2t>Um؋6l '6\E7WAis 'ץnV6o1_eΞ=ӊ\6qƈ]Oh_>luu{{ 0q/pq?>( ] ksX%ᪧPKļ," XxgzpO(;w.KBq-q?ކ\ 3LIuۮogowd>{uk>ƞ5\v:}/i>xlQ~tm_φT*'T,ڋ$:eΝ;/h*]|gnݺ]w-ׯ{Ԑ}cW`/um/gMxKZęM47|CF yxb%tԺukHe˖-W^mz usp|ɒ%M tKNkaܩ~ޒz[y9p3WSf ZiS)ѕ<&iI l2"{ݦD>ͳj%[32w}75WoƻL7{CfBtv'M/WvҥKSb6zʸf\}k׎G8۷o߻wogT'ԛ ,QcB|mWA~NCFJ~ϣi$@JQX2;_!ػxg]@ kԮ]۸rz&l;uM\ QBB; 5K{c9ZE3b7c٤$}I\~ovYP.8Ix5Dii !s|V>2h6 \o':).abe PE ;$D')PUb vK/D zc^aC5 ܒuj7 m%1\ayז !ְ+۽4(̓m^w< (hhs 'RgYZc-q, M:0b;v.aW]6^{x~ayETOA`MPlFh>=ٌW47@wIXSM \v  o!w>ACl9s6m-SJ?eK'/]jL9rh\C]|H<+C@;I`IkȌV_ĕ'Oˎ歲І<`L||N8PQh܅1x <Dɏ6p/v% E %]5vٸŒ6\>9tg槭 W)m.l~!ГjBgw=kIXE" Ŝ@!9wxCωP+gϠ5 ʗ=նo~C*wD?`!:˶/&3W>xD_ @\f^{5Լۼ{G& ' א78y yBx]>M|pABz%3fpcf:b2vڕ7D>`cł#S?3.Or8!lX.q_>RBwCwbmD_. >.aN劣 #.Z+-6hW!(_9};$pq(}ΎfצkIcX%H;ՋOE KiO=/kR%!>-I9wgeg~;-S\7^жWap j=^IW_$| }eyw4GT&>q. iWQƅ3f̥^ `oA-?oG̷Y郓M*wJVr:d^=Tc* w%71[@ dƽ&v&V Xqۛm` tF\>cLq#"+6ēgY@ĈW:_un)fPQٌ5 ?| ÞЕ{BCϖ|42$C`= ]K8)"IVf)"Pl $RBPL[tMk*'geZG2|\vcFu"ZwE *TSŭ-%%MMh_DiKc&ȇ 4{] \"]J\e>s5s%(\oeG(@MTo7oːn$\6pb,Pczo Ff ) nqgmxSeN),o=k_k7]KUojTADB*FG;F޲#Fm^=0tjU|$ӓc%1z ަ{ۆ {\eB#}}ˍ.8-7|=HG]꽑<5 sw}7J}V^LET/cks 'RaXr ĵ}6w>>8, oj ܵr\s5;.mkIsjVADB`xD'YcfoߓjЙW$/ŇB3I_B9Q YK;<X~;oEI-syb>AEokIB("PdNFJᑑZ-1H_aOJKKoN)(vn*6oކe곜ʕ hSD@D@D@D(vp&`|dL+U*Ϯ@8z(]FJƭщk@Q^՟ & /?5 " " " " EM@^xQW" " " " " /\k@D@D@D@D@&D@D@D@D@D@^ր5yEM\p(j‹yq8[@&xϏB _^{foڵToٲ@0/_>p/|Ŋ=3g\`5iii{q7xIH933A\@%X,lU-A6)( Cg!Oj(J/15X$̴>|ݻ);w+L}bb"Ԕ&Lhذ#k֬iz-_<@Z&` syw7kk1{322^}rݺu;Svgee{SNݴiS&M9眖-["O~袋tg̘[o5nظ?8?СCrrرc>S o]ڷoWTi/5jxw!C+V6lB[nyO e֬Y7|3qF_rrr:ut/ C~֭/"'F5>c8׫WtO0\}7m]vv6~wqg3ƙ,wZo,NC=J `!p饗>LDժUDcv.\Ƚ5ȗ+Wcר7nbJ;dv[ ]xC *NYiCe;vkwyٮХu%k0A\ZPb У8eQyɫ," "` $u]v#´iptb4pOx{Ygjuܙ?0. 7y}>S9'>߼yx8ʸڴi3~xxr guQ|}VVmݺusmݺuڵxo~e˖ŃGGV ۸q#)q߀;찯zʔ)s իq? Xaw}OMM^K.Q CP{g!@Lǎ?#s9 sۊG7ӧO8K,,<{Kz v 'kqHh} B-ܶm॑s3A'[jZ˧~zI'qh s1cȑ#aSOdl2|xyjoP7ٿӺyfn B ԭ[S55L ;*UړWJ't+G{pJNp1dA:PX^A;@(;*T8pr",L_x~Īm˖-]%.W_a۷zLքϟ5ߋp5I1bqz"?;N^Gq1~تqŸqa6%{8@ksv57l±MF Q@|ǁqQIt)6_ ynN뮻B=I۶mb-BXۿ޽;Q^_{1QPsX%^u|MA]P #`}K|}^(ͬ{#*Ȝ!v o@IDATND>UM{AYfxc`2ӊ{seuRpkw <^hfW躲7ĦT:(\j@lntmH {B_B!ãGe(mryn*_qMR65Dp%pr@qM|+O2i&y$o ڄcp(疀 i}S^te;K1qb ^f D(2nOaРA{3pCb4ESG$J^ݼC3w, 4zS0x&++47Va( ~P2՝KL!W>x Gg) e1^ )G" "P [{=T3bҸJ_{L aw/_MM*I6oX;CMG ڼF={C]ۜhBTNWĠWg)q_az[2|EH &Xy@"=8Fo$7 /+|I-27l؀ɰL#aI\60R& ds/g}MFѵkW>} }bpƲL3p. A]xc`cS״Z`eRȓA|5ue{Aϧl ׈\Xq`[%k .{k:0_9x `}Q{q|hSD@DHc᜗yǚ5)C_p99B. ߗ$o}<J8g1/!.eč_2do= V!y[af&ym9>rѢ;~s {'\ :(/)AqVi,XcxId"Ѐ|Jפ[b\cE~ĉ|DܥHF8 $<^eԼYCXxckje|ȓ>{ 1 HwP51P.8[ut{zNG7Ow " "E#M 3vxu$W-|ڂpuS\ ; UA A\ ۆ` Aw^%l\VIX(%o61 I1V`y%WxcL9]S d]m,^Wy56מr1>I@\=Q xmsz6ʨ " " @}On+CBɶ5/C"]8df=.\iD)\dEvjOOMrޗIB;78"j_2>76ei Uh*&E.=QdbƮ*:=o/yrl8{ -GA|}E: ׁՒ^T)" @慗r%cxs\E9jB;qo'OdE0W}a " "Pz$/=HE@D@D@D@D8P,8̂l(]䅗hE@D@D@D@yad@" /tͷF+" " " "P / D@D@D@D@Jyk5Z@@^xq " " " "P /]ъ‹,E@^xoVD@D@D@D8^fA6.K|k" " " " Ł0 AD@D@D@Dt^[(Y " " " " 8;===ΖjW +ViQ" " "P ?s eee dff&jV\I3g.X O͋@kx嗯Xv}vvZ[IlQX JbY{C'3KKKclR)E~%Ѷ4Yd oΫ=<";^jsax㍓&M* 1tS {fWuѰU/ō@R~ >|ݻ/ܹ+0ڒn!%%_|E[h 6l#){B2 3. DIܽRCY҅dU2 P-[JNN.VVΫ yj<ޢ9^jsaSa˓9s222^yӧ{.袊+?qwV\syo6U0v؏?xӦM;s: ꫯ~4֭۩j͠PH[ny(mb7n|.} fpصm۶#GR\[o~h}j ]vꫯ5j޴ikQhC;hg$P&b…ܙ+,W Clf0سc4tMo 2.qf͚Yb~Cjpelպ Έ?ml!oS~O?C]jՓO>ٺuk}gRd,[z #|׮]mO<իY 4f 5З_~ƆgySM79"~dNcB j]Mdg//^x v=GqwaF7O>;Ip~iVm?7 )oPvaQt"2k׮\O~;wr"GC0b9|{~kҥSĉ7MeN&pAbrovٿ+7#Vkt4N0ߚ5k 1{2۬WsrūӜa;adY0'O6}YgPș%"4h!.a6SӝBps=Q5)f-4MMM%3jJFsƻ㵶F]C wUu 3WP^h*u +c\"B=#zW.o˅+Wj FsAݺuokq]mdV )s۶mP^sDæ1(5;.|~uޝ2g+.؟'j\3ݳ>ygCzN- (zC^B3%`M\4w `SbgqtMwa0zX >b~CZB^#Ƹ cd'zr=LDŠW<dÐ4j~89Aʭ3f{ャdtW_qӧ5x05NIX"|=lуp8M(~oƋ}ݗQ6pph +N]+;#^ ]<{9 x{]~x3xdd;vs)Y)©={vv8#E̩D*suQ{ZsiGYK)?g'PͲp erl-@bPc jf 4m ^\53N/TW$PX^8,:(CDĿ[p. +Tm<6 8.~ kgdpbDӻwo|#4wcѣu >;6 PƘP˭ppl0.#ϓeӊ+DhW'e/#6 *E3?񥸴Pކ! v塳c(0]:vHo.#.c*W9Ov% m/2K e_U 5uaȋ9~ S/ ,$_r3IvO|z-1zd"# 7~sGNVGӄCS _CZ xl1F w2P mCS F܌~ 3O'di1S BL!"gk\pZ]k1Uvz6X5-F1e(7ꀚ?*B pM;kf3hkF>>v1(Ǟ$3iӦyq j$[mlRi7M:fZMD/oq8v+`~ĴbGn=͠V[p zv8zN^̮ zJ{ 2K %m vevb*G7tQv`;玲]^UmVh[_Gv㈗/y<{-XU}'Dqz*r$s_S͛744l 60 S]48ubmqnkQ`gS1:fcL\ېr>yצ+5'=r>4:볁0N5şջڈyp""8 j"ͅ˛CN8!CM/ &ܖNJ4Z ;#^\GuKNj)*lu5Oy:p)a s87ـyA{xS "Ḡr}`\hȭgGp ctJAnޚ(zBmHy۫UҩC1^NQ (o5XKruCcAMAΏ/u9\M(.0iKÕHΛJc[e=*~B* 'sldj$}F%\ot5[wCo[pq@%!L[MK(aoCא2rɫNo]V282js5ɏmwxw;esЄfTֆO,&n9*m:Jh_1xwLڸq#.:߲GVݑ?{+wO=={R9_{5hkwY1~NVWBy@uȌ$0.^~eP޶.\U*G?';y I(j_"W-G1! dԅq>i7]L9H*}DkKW$au;|j7 n9#w.X|Q6B'?r-\ˈKlUo q7t)bo]ߐBQf':C;U`Ow3ث$?vz5eV\k @xw?d?y-դ`w2W`18xNCVm~YWIb&s)c''̼L/N#rf6v1f JA5 ڜ';Ci AcBZ0Ԫ V@SM1!}+ GfE:"vTb~>E)-8ɸsB s,Yhi&Msg }tm;^#ÛVyc7(81XE6Q1ɹ$g *y^ y rH* ggiW}0W KKNj7$M7=!Uݼ$\>. 7_Qh" @Qxᥙ." " " " AE`ǪRK@^xz \D@D@D@D`ЫcRK@^xz \D@D@D@D`ЫcRK@^xz \D@D@D@D`ЫcRK@^xz \D@D@D@D`ЫcRK@^xz \D@D@D@D`ЫcRK )#JKۚOUj." " " " œ@2ejԨ_ 0aq| ʗ/_6111n=j(" " " " ř@vv۷gԫZ xk7|WT8#m" " " " "P m];%YBr(H!@̗R"" " " " Ŝi 2|b>2OD@D@D@D^'UC( y" " " " %8@1' /O(䅗IՐD@D@D@D@9y|d@ $ /N$" " " "P ~y\rբE D@h;}SڕUzni=|K23wCt-C5w>oޕ*V ]߮Zk-})SnһwMc|.$&" " " "P >rInP~c3gΆ aQGuҼy3gڵ'~ѡC֭_^-Azqh>Ss՟'+W_>zI[內W7|G˔)m6C^g}0k,׻+3_{ݴi/2cL?3{;w>l̘1T{\n]6qj1g_REܼy˗mg=5k~Ϳ;3=sZنdgddhŊ۴ic>[ݺaz^W\)99ʘBn݈J* ⦯8?s_f׫WE!nw.3g6E@D@D@D@J«WO߲eK۵kGH~Vj^)/]2Lu O9唜_|-6w\[߰axf 725\`)*˖MZෟ~;N\9geR1( +#e}Ŀڙ3gZe$ؘ^1^ ӰVZ߰}'1ڌ$myI}ժUc/v ݙV/#6nRp4JeRBbd ׿'n7/|͞=G)ݰakzzӆM_{nQ'3mw;wDϪU[li* /N0_klؐf$6mpovjCM 56QAD@D@D@DgH/&>߽gIL慏1ڵx3sL,mO#'VRRRvf)UW]e˖3<郕|Ǝj*;v[SSkМ!ԫWꫮ++O>9 &Z("=KԮ';Ə3*LHH!em˖Xf͚5}Q6 b!uƹ'nV]ɛ|n%|&0>(֮بQ[Rpcr]\ӏtŧִ mZY=yLa|l=+" " " "P^ PQu'q<PHauG(D@D@D@D@DTFJa}#)=" " " " "P /ysw‹ >G@^xɛSHD@D@D@D^gH<KޜjD" " " " ŝ>COD@D@D@DȯShD" " " " "$]LB>|y'o߾3^DD@D@D@D@rvLN.[ f OM}{ƶm5R"" " " " Őnz\_1/_{,R 3"%" " " " Ŏ@bb5jTILL,R"" " " " @2RJ) VD@D@D@D@ ")=" " " " "$'" " " " E@^xAJ@^xTR" /HJD% /<*)ɉ@A^P$GD@D@D@D@D@D@D@D@D /(#" " " " Q JJr" " " " "PPIG%%9(( @T£yERzD@D@D@D@D *yQIIND@D@D@D@ ")=" " " " "$'" " " " E )ҶfffS@$PL5$%6Lؽ{wC_:B˗MLL[@q&cG#//|ڍ8ߕ*/dm2pkNɿ|gddV#AD@D@D@D@?@.;c)2b@1'@HA )ϵ(䅗IՐD@D@D@D@9y|d@ $ /N$" " " "P /$D@D@D@D@J y%pR5$bN@^x1 '" " " "P /!s% ߴi͛7lzhe-5%CRD@D@D@D@B $r\r_pW}7|ӠA7رgFxwڵ];[gH&%%լY{mkׯ+W\кu .Zdɐ!7-_J*rQG fٷvۚ+V8p>}N4iСCnqi6Av{P "o~hSC(+Ҙ۬YK.fѣ|睷CǐձcLJv]fdz|^/INNddd*j q֟yʕVZi֬Y}w5n^.Ţ@tEw->㱯SN=g!f 4‹9CGUξrk.]vw|8A˗(7HOO6mZheNqƙoi'N4n,J*6W&AN2k橕WٳR>X޾}_n/\uƍi׭[nݺ`eP5W/nwժU|H+^j(X8_|By5O1?d \x뭷セ**[ Y1o]PeR,R\^zLo" " " " "@5F YtM)I5kpVzl[QAD@D@D@DXvcFu?޿|FJlu0 ]2*E@D@D@D@D _>#%tTL@^xq&" " " "P2 /Qg‹6I@^xɜWJD@D@D@D8^gGLKjT" " " " ř<;MD@D@D@Dd^2U( 't9|… ~={ˋ+\̈~*~?iћfv//" " " "Pbޮ]{͛7K.ݾ}{v튘wnQo%5f/PؽH@!TH#i۶-͛w '_}Gvɧ~׳g:׍7>۶m+[:`[&דZjչlg'?ݰuGj Fo0՛eըL}2mG=e>;9}ܵU7&'a[঳čY9B*$U3(Xxjjj ϟ ㅛXeKgȐ7Ԩ3f/~'˞tIv:NԌ7SNp  SL1nNKԬ!rR#6%>6C~v +;J|e?yߤgd"dq,z}O9d_dn0#P@ayA{YYYskԨQJJ C Vf-6qa^[nqmڴ4+WIIIH֨Qcǃo`3#Z-w&ӱ鉝+xDkU>X2mWsѪ>u}>}pa-]ZT0{zN.[&) ECB" " " " >;AOgm;v}=w윲eoH?Viɉ?/Yk$hPBܲ~? uS/^ݾɞ{ D@D@D@D@D O 1n^; o̘.R )ܲetKp=xb8{m6m4{UVښ`a[匥KmN,0=Vx2XZbfv:}VWAMM/o56'/!!;S" " " " ""P^x&MxX6fx6%K|.L}ʕ:ʕ+TB, G5¤ת:^ڃǶk=I)=;7 WonvV6]eԷ&ړ8|Ö՛Q7E;2H}ݖk*69s麝'" " " " S9W< !&>ydOm6mz?~QG޽0a|U+09Mmgt9ֿ coޖ'֪V1r}7R¶̑לoJ(LJL~3s?ys[|;e]m5@W*ҥkj#+ë4vX8zJ{ؿ_~ϡ<̳&[8ތ]6oSRrRmZ~ )1ݰfUR\TۍH.k76jT'b,e&]~Μ9w}˻uV.8]/'m2ʚUʸWzrME@D@D@D@D 5R9nݺG/=:ԮVhR/" " " " %^H)454M2R )%{4:ѩI@^xLD@D@D@D@& /M*(3g}~Y?+Mv#(a yz:oS;O+ѣ߼֡ymh4׺t9oȐuwOZمA/ܸ͒D=#3k]k{eR()8L_+j~3>16dʲ¾+Ny;FUSM4Bg~/4*%%s]t֭y%5{/sGi޾}.[r姟9v_ApԨk׮M!+kO6y֫W磌p*/֭ۤo5kYgͿ)S,ҋCi#Νztyj׾}ӏ;w㍃㮻z 5 % .IZ2ck6g-]?3s-\ECUHN"_OjO9NLrو._j;2.zrо'% mnܕ3G5C_*;'g)_hxgKڬά,"/9yW nwx6||o}3?޴U'/UFe|&Qo|=&MkW;o/g[}V[v) Vd6ם a٨17ԟ9G.:fPLu[v:=KziXӧlLK߯N5 kVّkCARD@D@Jp_$-[VVィ0)) G|׮]ӻq'3dMo9~-ZdI^yfĩVfMWdzWBjʠAwM>}>P~:8b:Nƍ :u n7&egg-^{vZbwyWPk/|~[7L~nϫ6uvWZvJUi9 kT.Q 5fuRܯvݡH?E;}sWޟ{zε[psH7l ,XK_ h]ߏ W6z|&Qٸvwn8VJc~\8`ib/ZO߭-wWQ׳&~s|QD:̑f<ُۥU'/pfnrLo6ff6G+[qka ,ă;쮭Ոht" " " %@ay[n%/Q?ewr^b91쫯fҤICӽKܠAn}Ԩ#GJ|EW⊫ʗ/ɓvMӄ #6Vzݽ5ܸq6mNՠA7|W?sL=o%~/|W͘1#--eR5:v<{~[S&!;l6:O՜e]ԃ .6S޲o_\zوOmH-$Q[/3ؾ(ܲISh'\j`5oJU+Рfvn^%1ԩ^C=;bޙO_ދdgNl:ܸ;no2{ׁ%d[_s[-nm5o޹E]jT)?.\#/QAD@D@J-? )(0RRI>K>HB?{Yfi{L0~YbERYBm9y{ w5\QGu[r{Py'iغu&FGwuD}F5g.]˔FI-륾5y,߰empw~l_aSĞOos]wn^˙K%[,> Wob׺&+{wƮs2aޜ4'&!WqgRBQm&%Y.t ZUulRg=7Z89Mۨf5ߑ#'?G#ꑘ@ #PXp0rʩ֭{&7է֗4;}RCvxvcYf6?;6V874$zs]Dw?&9!X^[78{E8_I6>5iӽy$2_ZBDTTc䤤#[կ[=֋#><*l|aHVI9 ӕgſަqJ=i7j6v&O~mOT7ea( WK];VJ Xʚ5 al u.[l^{4899٩5qw|TUL&$!z("HYEA"k] X^w-+vAw_TT1 CI/gz{qL!$$|s={'sRkɒW_}Mn23.1cw%7ex6! .AIX.-Ğ# Rϯ}y bW 'dTJٳlEqO,VzYatJ /~hv.%FQ<3$@Z@У$T^xE:uʯl?sj&dE}-1F mHi|@@ jGʉ+E@@›.@@8N(8@@hf@ @@ ?@@A(@@yCញ')y@~hI MݕJ* q:uszGb(sm=FQ@N5F/e 07oaw JrG>3$ٽ~#D~F~q]K,>+Ta-I~ؿaOtUar*VsZ~QrPu{u-կ$Qc4qS- x Ϸ۷׽1g)Բïެg>6ϜNsY}z{}˔r(է=L OM;KG>YO=͋h_n[~K7ʕy{bl9+þ^7aUcTD@N)F۶mڿeee||W^%;ˎ >3g6q߻颶>=Gw.r8J/8YC%@@SJ KJJdܱcNȑ#~Or?䓏ڕq5W"%K+9G33}dxb4,{q_n?WZH%#JgݞUƌstQٷs ־8r{J;%>rXY934Ue |5ah9B97g$d6Sv+Εdi*>&`ԛmI1QrNwQ .={Վ̻;~pw$dc' QJ~-]4C\g[ {se]XIT-㢽27MS~7So޸/]%I  M%)y'$$Qpei\tddnWfbb˓OYDY ز/ٷol߽{G\ɩ٧c<#%ZN](n190;h[}V޻T[/bv+wؕQgP }d޻Fܧ eoϺ_jUCd_ziaz׹93* ޟ~ɊkRf̘1={ƍO,^ M7t￯Krz<(%gl(oS|6Ly/0,V7SVrJX7N7Y_p^ف1kԬۂ4w5iߛ=%na0ڌ#JIlkG48H>TS R؝ߦ'FfQz8$! M.)O 4XF'7h^~}n/_^^:㡇yǞ~[v2TJII1iiipW/׮_O^;wϜ$6*2RJ;N~p904Z]{b~f |t^ 1QZL7$EhwM! ?-4wik{rJN#͝o{kr-d{<^wIL}bپR)yӮ{&y"67LW:yR2  @0T]Z](k%%IIZO=UcH!$kBky/ ^7@7wϑlz;͓n ܳn  :/` jz7t5wبyO,;-~`h:JɺvBLON~^+pםf}-`z/%@@&8›|4  @cj-*3t"  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  D!`  - @t  NA?mj&!\ vw  /(|zo@@hHXq13zA@@U= w8*u{i @@E d*LIL@@AX玍@@@ O5_n;@#  [ QxLt4jMw$@@@ QǤ  nGZm^  = ӽ{w[7  @ޣgnFIC@@@¥ccG@@E9p@@@S(S4  !@  Qi@@C(9@@OpO   4Qxs(  , 7oٞ[$lc;9fH7IUK3 .@@NeVmZۆVyv˪/|?<#{-F@)V7統gvg6a߆u9g6NS  HD.>wnA%S^`AY%nlP.IٜG{+gJtC.psyU$ǚY|<[W|/ y; &Ͻ^Soyh}+1I ?̯4glL@@6/޺f^e]NSojsS{l^lfJ~/j:'nxݸ|mwزXq-v0iveK|ͻ{[w9A=S\Xh=8*:J>}.&jIWIptMn閃]㪍   жZZx34];%9(o7~5un8U65=:;*ucr3Vy.?2=fMtK*j Up[BpwOe܈)II~4X4*f_z3ErB@hl-畐.9󔣰"LTwwzJsF9+R ?LNH2 1ve?iv:Z_  l-R$YdyR%ņ95\t)T۾E:Mj !0gڴZ JXRV&R|4[VhF?s:.2c/XZ^o/  @[h Qx2h;'^\.oMJOWtmwT#]wjW0myP;䁬+d^K>qPART5?jdW|@@6&v\3Ŷ?di>_o|BΣUqϓ rgL(9k&PV\ΈQC{w+3WtX{w*O1sR5x۱:"٠ߏ  @P9 juvvQjj)4Yeh;B[;$Þ_IM=GNuRU51\YS.R:9/@@SX<-FZBФEQgQ`.#X=*S>r0Bp7 @@ (^^z@@ l  @  >]# Qx^x  ЂD-O  !*@i# Qx 5  @ g  -(ʞnsxN[<{ v ]uӮ2OJV33H3Y@@hekwჯF{<[ RG](i^YmyjQzN~LY  ]EAgvgq͎>ǟ8;.&ʳL@@Z@[Kg?d 7g\Iʲ,xemLGYUɴvLG/߲c5#y>3^S~CW)p5u|cW/fњu{]P%~  @heޫ\W')ÖgX.Z7zm݅H~mjRR.Ȯ器 gbL+[~]"s8R\Xh=8*ڵ,#7UUVM~^GrK?_oy'?M .5JC%O B@hl-Oye"9pMtLDe}RW@@BVD0%TO YcotV*[y(٣R{Vv:Ǖ@o4v11Qqg7$EjMfVZAn 1 @@SNH O)>a0k=^P*- s85?z{[myiݴί8uxEڛ,3lPwdIv8wyխ_*!  @hQNXti3ȃSJ/&xWJ{Q/1jHxnEcug4N<ӯ2xq׾2J/koYS~ezwu3m <$@@Z h'dg&MJ@wRW5uCpLIYȡ   m< of`wwԋ# 4@ rt  @C*G=@@*@P9!  PQ@@ 7Tz  4T(rC@@D    he 7o9g'M{ vkg;CzTDm?>*Ny!s@@ (l-LlG6|uPH<5ܨ_GF6x^YmyjQzN~{>3gI  4@+[ oN+Yct7[<[Y4  @ p.o ϺNϿw)AS֣3(=I' ^Y4g$ǺmoٜGUzOJ9{;}֞SXz}gLŲ9Cɗ=ڳ ]K*o}pصECfW?݂CW)y֝y|cW/fњu{y.wHI_}owE  @+[ O\xwx΂8Ez8ϩ7 O*翤0 kf^ԈEm~۞դ&]d;]q3QcٲW;*HIM˞Կž_,ʫ5S7n\;lYY8 `lU(mo96o1Ka\^U%F<[W|#ϼ>yiRpvQ^K,V@@Thekΐ[34b [3u&J9QΒq-9,k:&G?S-Gjt,^]_n FMmܵ.nޜJ媮VcUͿ:SZyͻgJ,eq1(g|Z.FLIJj%Stbx)>uqz ӕZ2)&Qj:;*}}sw MWcgk_~| KG[p֔_Y=cwFEFː@@oz^=  :T`VIENDB`django-rest-framework-3.3.2/docs/img/cursor-pagination.png000066400000000000000000000276751263353514300236330ustar00rootroot00000000000000PNG  IHDReMҔ@ iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 388 175 # IDATx\U?dhB!7[I?)jWt7+ zݍ^wmv\}^7T7]J B"{LHKFm`< 3ys>gy! we >܋ V9.]ȑ#=ދVΞp yg|rU! `i)Bbz$B@ BԴS!1=B@`!0,X *"`6 މrU*iM9wt:V ^T[x9 xۊ$@.\P>c7l0Y a41j(ҧC W'A+"'h \xbi }L<:0 ȩ| ƌnMLKx<bX1͟D!n[[g(o 7& HM~}KJoSSCe.~7DTlϘ=ę__Srƌ>f J6p[PUY78iGSKQ2Tg&%նOeBqx:ԓ؝ڝm8\ οb.sEIysTR]Txgg%c^ | 푯XoJ'ЛO`:dC:ǩݚ+۳#x6F&} IdX 'FiĦT%&V_q Xۀ=r2c@MAOSEN s1yLW {FŨbfy|}cso/GQrR zkJuy=l-ߎddgA9õS+]r7vdqQ]?v#Pj2 w0Jfb2/a %fе# GQhOM}q B@'[Z? z%֦JA!8"qֲC;hi3/AD*8~x,ήčgtCg@"&Ӈrh\(8H/B v^RL6af^e*Ǿ,a6~Xt$%6c7p}yR{e Y}2J^@WR);s.>wb+6gwcT nUbhjju rV W:%Wy+?%ʞ5!S%ޏH L0 Y±% ~^=)z-.[ ྲ8((y$8]]Wژq#rJSKJx5ג#ҩ/t՛^KLj٬7P{-Rousgqp@ Wo\Yg_mHrʻbօ5?4Ne_]LCd tC)>a8bY4r^D,8,]Lg Ř?ZN1}U 'w//`Zn<%/|iɞ$tЮu'dh-51 M_Miwޱo8i6-xC K\NO2m٪bF, 1 1~˘p62m EHʏUnk}CvS]0QVlpi5qFox(;^zcǜ0dC1*b~svFd"=E& hQBX)EmM.&a Ne"ŝz錢푪I &w*taX2Ij8KSVgcitC}ѓO',YZQuʶ{7.._ggX,3_;C*+~Gh+[v>q6TJi9*U&b49D (De\/dh!$ ~,/sڎⲷ7 03yPRwr2a|2B%u_7n4)K s;0T !n 6,Ʉ 8q'=;VtlZx^8ea%-ކf s,T.Fԭ˒3w ؗ0<\\07'؀硢u;_F5h tЦ.kVcQi1U?W~zȵ>şԸ<Z8{_3?d.(Rj7>-ɸD{!oHrZ`ttv@ʏ6h*ǗgxjV庞 uuu:B轢<ռv2j6HяR]|3jPk5<=w7+"i?b4Z-p?y?AD '1QF_ /o 0cf-?187e: 7gV8F/:7-3Ai"u୍cƌQ^ߛ7z R,655)._~b|mq> W-oVaڦԃ~'U?!^}zo2l%H]HBՏV $nP;vbW&k o ̮A^Lr,M%ߘբVrj|MV|hѣG+@|Tʭɻaxe+rE! '1ד-G ʐ! '72's`&ڞ6@`gYR8C{VԊJ\!  hTGZYh3hTpNbSBH2( Z @`RԊVrS@`Rr\/K<kB@!Ob7}ɒG̙1bD8C1thE ! իWQhf@ z@!0ttt 22l{4 ! "ש~/DHnL7{B@IuaކpB@!0:)#oI8!  ! 4# A3"H!0 A'B@hF@Sf6qf2L^ĥ拐=_j m[.᲻4bdW^DaV(?uhLM\A{V?[מ ~zmtgk ёӳpMBˡ4!mD*Q#jM6 g !}(/` 8jN#1h LJ$c|-Ț`դpȵp?")lܸKڱuxJ\d f0PU+ I](*U6Jr{g1M\w}xס1KMQ篬p<8.|#\8=|_+Iv(#_K)n+eLO sAVH=7VpR/uT Vʂ ;Y(HI'pUc2nR6K^CKk0'2Vs#qdFyvn| _;t1iRѺ[º`;կ;H9yQصu/=6c6*lbC lm2{">9o feZzшbzl)V< YX"o$^9f {x+Mq=1ڹ ?QҋJ[Vζ@ͱR[W: [M5b~i>m,rGـRO2- u36#USolšlW5[]<0VP ^]xnrfX0c:ŶF.epn22[ӡ?L /c5s`cf,.羏%_awȁ6f#7s5)ia56%Qy+buTI$[) !X|?TEo$kh FRfTѹI4E[&Lj{Ot7bźr^&gϑD?-vs#MغrVZ6s2GnK EnŹ8E{)J86_: 9T]oHe$5驜 Սhx pJ3hrb f2H#GƠx%O|(;PjF_~:дO(/S`i057;gƖWmIy*''̦ 1K幙Mh[A2}Up^| 9?BvוA2.u*X{@ݍJ_,p3sam:]gt9rbK}2pE֐$,Mֽ}.`ڋjM~rj%4d߇7 uwN1MY=s>¾*3L~TS|d…cۤw܃YȦPSZ'<0̩k7|muh}O`7 $.JF4)VV"3ۡu 3Gh{ˤ4u\zb?=Ǖ0E}sJGv* !x:GqLnT=f\}Y3K;•/PCy39ݡsJJ@ZbtHr,-ʩ2b 3h arZ0b阦HϸY]wd !NXG3RXװvթUdѺ:eNMic+ PՖ)ƌmg MI)3HHPc;l>Ɖ}{/Hk_-L0࿊ƌ.ɣ<"ixCXttd^;>zkgZ-#W#]7}%F{붥MkPsە_xt }L9x t=qd#=Ou6IXY+I[UcE~M9d(=fOr74ųI Qk ף*mȢ_VэC·'țnB*[?ʔ*;ۡ#(S!cbIC+9,y\J75ʗH95:n.F-NT: 6os5P˧!ш%4 i@DKgAliVuQ@|@ɩ.-1_xnIOOH0Gcȿ c<Dt:Lmb$Lu"Lo4,9i[xQ=XkĪ%A\D3lz:uƷ#GqzKD2>d v@ĩ8&2~Y#)6jDX=ebc.MB>wmA=-y| r ΟEF B@EGl i=@׮]:rp _e=XhU.Z L}⣕֞=N9c!  ! & kTP!0 A+B@xM@ ר$B`pBoLt㽿=B8"O8梵p֚ky󰞔Z<. mq=+Hzq'mr&=QIENDB`django-rest-framework-3.3.2/docs/img/django-filter.png000066400000000000000000000325561263353514300227060ustar00rootroot00000000000000PNG  IHDRS iCCPICC ProfileHTLzBzG: lH(1B#+ ]QpQ!6 (bo;|s;s aRi`o7zdT4 y@ AAw}׿ƥrrR>DG(JCii.DX^iN;g#<%@AtNC#l.3v\36IIY5G6'yJ< >ˌTa2;\d= D>HD֬:iϝ?iq h9azgsJ@h`Tg + (pk& v0'@hep tp<` Q * i@1d 1 g򇂡((JZ m b :@@g z @[ ɰ< āPx9\x\ WF2 ߃W H(JebQhT냍&b` Vl/v;q8'\ K.np$ 91Em0~ C%8 \BpBE"LeD'b(1XJ#ߑH$-=i OH*%$]' >Fdw2|J~H~GP(hJerI*e&ŒJm*j-Z +͔^!-]"}J AFO]-^\L̄,UB6P6EP 9W.WA*MurG!yQ@|BBB~GcђiE}E5EbV:ۊ(*)++SLWTNRޡܤTbD%CeJ 8 4,x Q=ڥ:&T۫vEmLKUYKKIOү5U5}4Ś45'´r굞jڻ۴u4tt<%2ty{t;t?EmkWgg?164k5d&31lxFFac[c>^Ҥϔl4M7505^0zᎅ ۘ'1l!gkcbȒcYny׊beꍵu~6T-6m6llEuv:v1vv} yFqcfg[4?M9,_ȢA'-'!~gsA~MKsWmWk0Ӑ<|f&r;}{#ߣS3̳󙗖WW׸V>êaG +{o/o |v Ztn vIВ%/-wPCV Z8 L.,&cGDqDuQ*Qh\txtURϥ-YroPYJ앧b011bٕXVlE8ǝs+w/IpJؙ0s2D&M%G$קSbR IWe V^=.UBSKl A<^)# 595 230 niP(IDATx Uq5$rD.%nF ejJ^3%Ťh)j* 5jHPInK99>ϱαg^ǾiӦ_&L;v0ҥK{M H 0C=d+V^fXDLTΝUVtʖ-{ʧk.F} D_ TÆ ]ʩrѢEn?Tvu3]wevq={۷o_^ɓmyfShPs3' @@ S ÇwWeFiSr RZn@AaW^֥KSb;vJ= +V]Un:?~`={<6UYOMJڵ]Zt{OWeزeRڶm[j[0}g=æ|L{I6lIWN8f͚ u>]j.,z߃ך5k O<;ԃ  q"a*3㧟~&L`UVAGs_bC qkU)d [ouzmy7ey饗,%%?֨Q#ׯ;,&Jq-),*D⋮ $=q.PÇU}ݦnjrW{M6Bmzs)o֦MSշo_0` m@8re\RzI5j_vuYʕ\6 R/_>MRJc=fgu.̤[lsݮzԋN])j nJ .:{HFazL_ 9– ..4[ok6xlѢ ZjW=T?x:@@ mz=BZ<1c?w?')og, mwХ=ФR;xn|}')} >^^V-) / A c郔iNJfkV%  osRR%?MάhM/7TY.#w:zhȪ QSLqՋYQ(bgBDuԩ}i%MϨx}~i/g3f̰7|3ͼ @L d0hHTB&ku[ I =D:r^x;%72ۿI&n?`~(o(k'P> ĺ@ڸqk? 6YMU2sOVe0+s-\_sB =;ygܟթSK/4d .# +.Lݻjҵ#+UhQ‚{]SHEV:ά8\D&ڧ/EIV &ޛ7o[[NBWtMf8@3X ׅ)WHs䁟T_^de"w_4YsvrJt4MLtm@ȶ 歃 'KCMdd^VڊfDMP~E=wrnmWK_4_{nR]^Fk@bQ ׅ)~hMWz"tK /o>+޶G c?{PJyp]=<^;S+m۶[˷*(Dlev4[AS@'\4GkUqe]h=*tW[dVY |h̊&kTzFE̟?i䌪doiF4JW@ϯɛvy @, 0%\(EnQ]0\!+_}TZ3= [U Lj_N-4WF=C]|\Iۤ̚Yfnu2{) L}&Mrhy @, g_7ӧ[GJJj+Jaҽ}QYwХ{f]VoڴWae…GJ1zʷhWHLLt$$sx G ^QҍlBנA+\)pjbŋ={zfQ!tܹ"w-*o}G.4*kHV7F20+I@$\u=L6*/<޺߿owof͚K]*[l9daJâ0رcݽ {"{n ᜏn`c'5%EA@ =~ @iիv5\H]ݦ[D d` OkeJ<ݼt! ]CG{ɎaڵB5'/-ޙ}si@,pF ȱ! @| ߵn=  S@@S+  @7 D @]@@@@ Tx   "cW@@0o@@0" )~  @@ L@@" LEǮ  a  a*}?k~ d6muK,U=[gճ{ʗ/oƍ?NlܹVJ8pcڡCSN6.={Zڵ3fؔ)S /ۅG@aLR3guѮz[`=vQۺu 4ͳZjٯjC7|5!ĥKs=g'N@|rNJJ8pK1bo֬Y֯_?pwa77`]vQ]{]v^{J*evrgϞO>cQ}w.L\m_jMĞz)SGW\a_|<  QS :u… ]Xƍ,Y?#OsGiڵjҤIkRY{ܻw{l׮~S]Ϙ6;vmQhRPɓmR8RٿmذT/^f} TZj A@;L.\Pނ/(Q=GI 7ķl2{wuAE4TTp㕊+zO<.]ڽVhS&O0b)nF7oyRo,@5le˖uEujCKd4)nV볼6] Cj*  ķ@&@@ N\. ;  a*L8vC@$@w D @]@@@@ Tx   "cW@@ ̟?=@# fTSPMM@d:QB{ a   +@%  Z0چ-  aʗ   @hTh  )_"*  Sm؂  |  La   +@%  Z0چ-  aʗ   @hTh  )_"*  Sm؂  |  La   +@%  Z0چ-  aʗ   @hTh  )_"*  Sm؂  $Ȥ3&@@ J&g DGa* ĉa*NhN@#@+" @4@@ :* ĉa*NhN@#@+" @4@@ :* ĉa*NhN@#@+" @4@@ :* ĉa*NhN@#v:|5l0;#>|QF;u^oܸ1[>oĈ_=d{rnݺu؀ !y5Xb4UZ4E&M@V^j2M;ǏO:Y~ '-a{VjՓtsOZ D6vXKLLxʕ+gCUVYo߾VdI6/_>{1+_]f̘]IRݯ^ySW\ag}v&;O8쮻Jgyƚ6mjeʔqu>k׮K_z7nl>-Z駟oa6l… [G ڑ#G^S޽{yqֱcG۾} 2ĵSO94 @8>䓓BH.],99ٖ.]jk֬q!AAeŊO[su/4 f͚eҥKʕ+m̙.` 6̶nܶm/_[ B 0 L5˗𫯾jS[:u_VsB7엒ڝ3gժU:d c TTxTm㏻SKf͚6a0`s9.DN<}OuҐM yڱc}.5j+R+{@J(\`t]ZBW7tգzt>s G]ueU)  {WRyWsH{^ҖNHXyYOY|[ +PD]\OK&h- ?[*3/@@ re9>@85~F@  "cW@@0o@@0" )~  @@ L@@"v2Ϗc@4 i|Z70|G| 9.@'J诀a6lA@|SDT@@B B۰@ LQ@-@ m@@W0KD@@ a* [@@_”/@@6lA@|SDT@@B B۰@ LQ@-@ m@@W0KD@@ a* [@@_”/@@6lA@|SDT@@B B۰@ LQ@-@ m@@W0KD@@ a* [@@_$T?~&[ل ľ@@ @@0WZE@8 Li" @tSqU@T|ќ& DG0WZE@8 Li" @tSqU@T|ќ& DG0WZE@8v2v'狷ڴE[lՖ}qBvi_]Z*k8  @ };-;ZshB^KJJE;1ݑ'%%W{6rgۅ  #a󍜲yu@AR r  @]HN.@ԁC)q#g*P@@ ~SCę" Sm؂  |  La   +@%  Z0چ-  @Dm= gg% G2&@@ 0U`Z–|Οh'_vjUSz^[7+%{5Zdw$[s١q-̊u@@7:̗`"~nՅvc۾VY|i{SvZ`<`n1g;x/6yuoyU ]mٺ5Zܐu6.Kʓ`5=Vm=`vfU(b)G[@UQKR?'  @Fgjw ĨWk=-*!y9SӗjG!&1O;Lr yrv%l56tjZjnد7+Il=׽~tCx0<Ol7y#  RL(~nlXήQ,j^/7@UV ‘]?{kPoYm.ofw|͗ .ꩺ]GnXls@X mȸN1\n#k6: r)?K׃AJ;lڙTj+kf<\U:xD@NIആ kI=@]7y/緖aJn ~'0\4&ϛǏOF  a 0U`}ue+'\[Ṽyz%P .,N'М2:[w%W9  u$eÆn>Rլd`NM4WoUbLsLqW,Q)k> Oi6h{}9RnQgP@@?:@>X,x7JKh& \I]lF-h{KÅ>)ЫP޼2 9/0\#yD@2H% +;͊-aYyH$?ms-zdvt,xߜ|o^ֿeN QL ~{33 R^;<" 8sy" a*'L@T| a*'L@T| a*'L@TIU1D!  ď@aQ?RY8Syȅ #v޺%?bG*HAr  @};m۝l/jmU[ŏZ3=\kYUJ/n+/@@ " S ù! Y{/+S@uTÜ DU0U^G@X L7! @TSQq@uTÜ DU0U^G@X L7! @TSQq@uTÜ DU0U^G@X L7! @TSQq@uTÜ DU0U^G@X L7! @TcIENDB`django-rest-framework-3.3.2/docs/img/django-rest-swagger.png000066400000000000000000002262211263353514300240250ustar00rootroot00000000000000PNG  IHDR5. ӤgAMA a AiCCPICC ProfileH wTSϽ7" %z ;HQIP&vDF)VdTG"cE b PQDE݌k 5ޚYg}׺PtX4X\XffGD=HƳ.d,P&s"7C$ E6<~&S2)212 "įl+ɘ&Y4Pޚ%ᣌ\%g|eTI(L0_&l2E9r9hxgIbטifSb1+MxL 0oE%YmhYh~S=zU&ϞAYl/$ZUm@O ޜl^ ' lsk.+7oʿ9V;?#I3eE妧KD d9i,UQ h A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYs  niTXtXML:com.adobe.xmp ? A@IDATx @TU0"(0NZ2mNOYmn&eOYϮ-ƾdO6 P{_p.3w`Cވ9{9G ~PT@@@@@<     I B @@@@@@!}_     }g@@@@@>/w>3     _mEe!^Kڇ{9@%&I Yl\pS8H9NA<4@@@@:}Bc#4ZBw]p\6;褵s0 +Q"d2N*Q DəVsuB@@@@@~HkK*47:j/:,-W.̎%)N(bu}=}4Fb{֟ ҍf=ak11ES=)z0/2BZ Cĉ}5=7!VjrԜSu ڃɀ1CoSUx‹SIC%A2YbK'}|Vs4w"dݳ#{"C DT"mℊ:X6KcӮ?LADan6a){<ĵHrc'.5i4/Ӄw.%oD&~b$QZZYHF86C1H8S!@ OVt9(BA:w迨kԹHbũ$m>+w&I!g/GUsxwzQ:xZ|ZheUeU=pULe󻎑C:fҭ5V+^F[t9_UD -5uz>WA2셸dg9[}:;(ؤbl/o$ f`ԅ4J_4,P EʼnG&.SB+T=4B-l4yX(m$ɎȈgW]}@^XS l&݉V^׭"*LN_h|Odw,m6g͸qqŏʼnvO6HplD1V~yͲ>8sVL6{FF"ibsZt2oZ2~9P8 ӡ09_x}y;U/ISJtyN,T^l<Ͻ&4;OHR ?c3Y]~eɻn$7Mb*mjvg̥y:1JW" ]Az~01H$h-W҄"C>Gz!1uM~Jxs^pۧтމ7tXm1WSyn<CN7-W8Ƀ]cHDpA؏n.hN> WN e'ӏ{TCZ<-T!s*TR$')QQn/m{,{ϹTP0U듆8!M¸ [ĉR%_XphiIGSsT9׊(Ms/WhDxZ9zjX8a t^h%S,>&jUj&#&tuW8|DG$FYhdOy |x/~`d㷸uFr S3RDH&ץRc͗fPym.-,ӤYuE٩UX~9 QTљ\~SV<_v .TRui' ]ɣT)]ZTj%ǛO))*Fʔt} bv<v9quqw2j4vFG#xӻ/׉oG|fώT;NqMniܷ7}F/63ck?f@KG;X@}GjF^KekA Bt-Qxݱb2qBqQY/ЮףVV:Ŭږ\Vͫb43 D}BEۄfzC"$Fݿ~u'_9,Ɵ=~s۸{eRf5~m+.ԟ5[?pd ]Qc'kӯN~ᔳ.1 8.#B#,N!ZK9-*S#zQ'̳Setӏx/iʊ,-9QA0)gh;|O ^lڳΟѹ'l~(#'BmHIJ+N=o)*U$H3(b3Wq3?W;|L:nTXҥፂc:e =g%U8JC)QZf&ķb;:.=o;3եoeC\fP7РNMtyC푡oM炃i<f\7}am_ؘec}^8%`#!ܤAB҄qtv _CcUc\*D, 1Gx2EР1<͸XӮS*^Uk&b5J[k[?Rwc<Ű 8B rŸ_}*&[V $zQ9F~6ZY'fC.)!i ޓlX)#J 3HKK/.4MFdRel62<獔P10  Jo3dQ\YPL}R>K.=ϝQV*<5U1k)M/H1;B!>Em,K/-1rdaa^|Hdw\:]]++6LRfN唪H{6*uE )O;eV7o^&/%ͼja.hd\=wU/ey۹{).Hv1]׸G;F/@\/]TCS,kSl5T_pb_@=1z2|bJС#'}Ÿ*~ j#{#4X~e8>.UFi<^QcKZgH6Ƚne"!Dɘ֐N|yE.f!gw_r>:荚fS(7,-0RԘB\̨sMKY,Cͦ?1,$ᗫgCRJBQGyͰVe0g5nnyrHX''}ɁpX)w= ܅cwU_o߿T0_ H2X|aC^2d5ֽiU1wL&,|L)BG[8#aR=fɋ5V4mIJ}wk4*)UyO SZnx{k:'dǔ-o+Y&xqR&sk[hRt0>dr& &t w@:k\b%H6fx#!LU'L(lXlX'-bZr5_r vNլtQΊ.]FM)()5q:M,Ƣ^D m.G9]N&Ctb7&G{ʔ47f.Bxq/vf zZՇZ/Ũ$Q #fK]8\how]#'b\>6x<|E ktH[)*yWd4_4m{.آe(ު;z|LIp?]۹K i2K6pK46hKUa 45c(Sۃ `Me DVʶہzv/iGy:T R p&,U"wpG o˜{[Mfw| iҦ#d">ȔLPg!` 9iaN{닓u4?CI7R~.#`v3) Ow1Ec89^n9Mree&zæ HLjXUͳ'=6H0db!WWKMlP}S}jzo#mʻgr<gʮΕ#S2T~}+r9xBGL$1l~x)ue + ͌~9ugĘ9Ⱥ S f/cp!rUt.T{d Ň0MJ:d=Us/JdYVВ#R3jVמwۺ=ڤܔ&4LB;S 6{+om>je"ߖJ}@ c-,\I?+B7;h{G :F3?$1xZ׹p037 +SaEᄓNr4mw[DGi. .uh?!=5C#in]EAְphnnT ?1Ri7甍LF:{Q2B?yԿQ*/?6&ܼN$qYhbKXlk9V.//W_d'ټY(07u JLbL\"ۮXN==Sc8C~۞ҖȔ ui,hyz-כ~oZd OZjJPexKǣBMijuJLh ]RʊIx8)4B֧&:’4 U'CsOz; ;?i2a.)0G.0z6Cp 7Km 9~dL ;+aM7E5R;J0,8N~d3 V% | 硒VVaC55Y#.ݘG@g+|7ߪ9 KB˱Ud 3usӲڋgpsWvvozCֱ.#+Kx汕}T:Crnͯ䘗?3Y&}?CћB!a$;Bk 刪nADP#ދp`LS=Z{n0PzPԼi%T[0T.ao(6E^v"hT,nh0ߪ*GhRCs R哃Xq~i'%+{pG)&|Oi{vn9xO/kg+u Vڣ߲h3O9e(=Nvm" _o3=ꐑPv^4"D$\ |TKlbh}HK0JXךJd4&٪s':W΂9\Fzj۹Բa})'CMoWz'K+-O*Uj$U\B"/mV9ZܥisjsTj: /J~(E͓$x#/@SҊY9 QXmn MI՞*#-+/('TdZik~zPlcn.+gZSDS%?'OMUgrs~lMً(ԃJNdsr7Bc.zu{Qy2x "@:!<`3V|{\5Z%k.?tPwjep%w5R-pu$d-+ *&Dh-ծOǍMVpC\Bԣ0ȓ"A/NN |bE|4h1pz:f4cA3jh=G dc]ff&ڷcK՗K AYR/f:yLA]@\ODO(y3c ;K%:y]]Yy.ŒY0!m!QjQާ"Ff\5-!m2 SsY".\+x\}ӃW s[pzKbvNfpуܠ0I Mc?hlڢz zoiㅷ܁ b m[$$.h4? 1iq^e]C=%4I&ќ I i[,VG|2"Ubc0"hz@|37tȁֲM4tLP?:kR+2r)e9P1ϼj}iϼS+DB\Z}6\VRʥhˊKV63sfܓVA^FH QQ^ڕͤBnkw茜/LSޱo],eʛ Z̿Uʔ' =#HRYlPfed?2LJ_Ek&Ĝ34AY3T 3LVP݈7Nz2:)gT׸h=FeYVA7C\d1qOTШ}\^`&7ŘRf”[#'$P=1&aS9O5NJ8޹[=Lp"uBP8p׶#|޹]Acij`k]OѢ%E[r ?MQ^-U/;39BHiTՕ7MPrq֔%T}+mv.63^'S~M!ZcZl7z:Kc-"Zz"%~Ј1 ڕaǃՁb>zrsٽƽJYȷ-NweV/!8~9&t?KEC=1\۾U`0&Cu z(}Ě۷l60WsewuO=9`Rv1#4&IP(Շb; /]:?osXsuO^JUF^t䭴Tv`͈b 9TBhuCjo_q{hV4 ,1e h?ܓ,Mi}ȣ:j1ݷտYڄqf{UW ͧwm-m'w^uO%&\a㜛syon|?$}a_mgucŋpȃh ~/}]5$xCEIG-eoO~L#'ǫ$qBꅒ a;VfImf!d2Ypfyi:΂'.(6؎L1|EXL5Y:EnH0)W*&2e%@@&j&ޚ G Ez=VgH?B]=y$vnvr]O SהB(!#a 2Is- zᄄ'9kqSqzԼ6[_SgǭaVVU3 X-'iWi7w37=[5hg[n/g$qܙ-_Oko^TZn*̵嶯nl(Ešoi Uq0ah VZrݒm͉vma,RntAn",y 4_V#g~3-4,eߥGs-E""(-0K5v"ARs{JhÕBO,?8 XXZ)ޑ)Dn3U"Z[O`9"1 ,k#0tFDf86Pn '.z:lGG4IiG5D~|ѳ*°9ݹzQY܏|{Cx2ˊ 747_+~R$:Y%;y+ lh|[*@eDzi'l]WMj\͚rMev.(Ht FQM}`k)3kaz9>zȠb_a_PSw|-'?ChLO!{e"YuHV5\ '0/ P{)D7DBQ($CG_|u?i<[[չ=l$6BSSsH]jisk'K8WuZ7?Gp|Oٖ;c3*?+aRF#3E=->Tt. @I/RQW{QcS~ŻI~ڕ>y)g&   &0 Rbߋ_3c/ =hɠ@"9xnoaD|ͺ"y78MX/u9_e_i3S'>~=Ɛ"0rHq=(@ouClPhWwDKc 䲥"/:.MM\eZ9 0r*IXȤss7|5RYT@=jed쭲3FյROxr뢑'ƾ3U      @Lg@ A@@@@H$pa@@@@@/'~Bb> \_@@@@@ OA@@@@"}.$ …i@ A@@@@H$pa@@@@@/W$I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OF     "} 0      7!@@,̂Mod      '     ~>2I,OڐeyjDgm8JzOy:ӑR`JE107;;7kfcQ~wAWlH    }F,?+_1-+UgkC|iNҗ_^>SjӴʾ\-'NZEpk_sw*_!(ˤH\WTg۔)ylYQ̊     }@ސWxы7dhTߗJMI/1xcq^^+*պC{+cgLRKҕ=&oe. !l0+iRM.2p -<9xC))qYҼ4*ʢB 8*m婼4YW&%53C\u'@7~uD b}ynE>)&iIщs6s[p\L2:gp9||#Vy,2yLGby<#zi/UI/4eB1gwGqɫOkTYKj\]f5g   |p_իkf?r+ugFNW FwAO^SY: sIV6Ř{̙5-Jbz&Krҗmb#g͙sSXڐQV?3MTLܩbzQjsW6ϥQbgf5;2:L)ٻtnZBݼ"=wV?)JSodd!j^^0yik/=3501#stɫqU&XuyVC옻 ky 4˙`ebyhb*^ТJu@IDATKV>\=CKp+s/YC=$IP+)yd#|S`zީ ,z(o*b*"tLjC0b.uH~` ĩ<)pܴ % *ݰ[g\3+m Q._I9V-TUyWYȱ3ee_U㡷Vm;PcIO$~aa+wGwrn[罖3S/%h4m"ͼE+̏|&޺gV>? DN e+;ŃV{ܩ6䡪`.AiJ):/ޞn]~w 'eiqH7o2ŤbݒdpϡoviD-JmE[ZgcRu+#əu wT8Sϸ&7T볊{m   &J|hڹ믿z窂C,EU9댣ײ&aySTQ[Wp=Sc x۪d袑+vZϽ%%X5֛',y^[w.ϣZ\bܘ^+eLI$oa"9n{qBK*S<ۭ0+;Bi27pi/ k/[+tzú͂?"S}\*zDWh[VU;(k:s͢5o֟;ީ:u}]5eтU1s=kW]+ Nx̸fL$OJvϘ[,{m-5R=?V'g}l]BL¸ٳuW)H'*U*F3nS<K<+/7Vi)>]<&!3;_Z͍I:(ltM4nhhњO5nn4L1.l4= )B'<2ir ӑhxႵo-8yd!o8{iEWg-qզђXoH/40HrN=_KKOOեsڤl<{69[!MKYkyqjܩiiסL#NGc$>me$_3s EqMD_Db0̈́\amo'XE& p5=WTcɵh+tb0hӲJBK[[uiђ6 ITqfguj*Ł$FU>7pQa)9yN6t-Za#W$bJ08Ń:EES|B}o`c*nlt 7՘iuxOwЕgzKa+fzj wFM;ף]Jܩv8]0%pmy:]{\O۞ʼCUq[6l~TT9B` ]fk#Ė[֭r^<˵˘JmFJܩmؾ!RU^^Sj V%n9wK?S+ 2Kˆp@!`vQh4v]wX>V0ⵆ*k3Viѵ;9% 4C%)gh]q>3ywq nXpӽiڍJs`A UfO_jXYiw "1CrS*}>''x/sR\2m^vN~[̜LohOYTgf=E&NKM3wf#J]Nf>#UdjZ3X卺m"vL>#KܠRʙl\n&g!@ Ē[7Q! 4+-ԱBnaVziZ6>ysYt{tӪ a6<͘O|D {0eϘUoG'xUag^\6eϮcNHIUóΤhdOqeܽv4RA`[I>Vm+&X3?G۲v'z_ɸm]z矮j6>8)ӌ .2Eyק2LqWvZo v[awUa     >@@@@@*蓫tCO(k5p-Rk]sw ZyPO h!\+O;zOh!\+O;zOh!\+O;zOh!\+O;zOh!\+zg{L      ug}B/\nyUn }Q*ŲM=EH՟ 5հv"@@@@@Iۑ7_CwUq     IW     }Ha>"|      ЇO&L\+‡     }Ha>+r>a}9&Ǎ],\^nj^c^d9ҚW>Nܫ>dj[z|B|Okן^ bؘq5Ow=myv9~-Z%\6o*Ns7N[ohÁҊ[OԋX*}{QnWυ䏟N EzzC \I/R;멉'Ի=ՎRmgџ^Uͧs{%m !@@@$p_;M3Ds|snڲo_ån.R "woʽTcc'Ƈ$ta4=ճfF@4xyLԣKo~$V^}.?_K!]1n6t]??w҄ؐ8UH\bK?Pwڃ-v5=Gy؇>w]s\;d5FCUΜd.ggѿ8Ifb{>%OCY?_:iwpfa Y>#@jS%狭KLXg3gpR1맛n /n~hݰHh4p\_/&qO|ҧO+}s_u_W _*Gx{/kpi=M`Rr~1UJ\Z>ݴOx|>NiXe{';W;AF^P_Ǐp)T/Q8y~|{<ǽB;uk?>{V]3B;Bwh~U@OIwL9Ku7 )hgZ?zc"> 94*&U_RMH[z5Տ~F&O8E VX%Y='[Q;S[ecLO_8%,K0?h_rbXϖ̼un6Mi9Zn/_ݴX/&}#jaTL03SwS_PDR QSf星iuVlTW.YeY?/ݙ?},WyxH}K]    }J\xҮgxO^ s9 #*RqK]>{}" K?gd<m?y!C7X6x(_[0eA!rfD|i?\2o=O9N(!BVk:zI?lMu&|-Wҟe#-ꘜ5ڪ[ڿ8?эS[?{wU qaX\X!h; jifjf.ijZR& +n()n K &0 Ͻ0;"Z'{s܇{{"xJ;\zO0ϳꨫwG,gT ?l᝘VS;dЕóⳍr4HLEQn)KH27!si= *Uw':-,)Zlok 2*en.5AR"dGIJEyKRCDYNDG ed^ױBW%?49v~>qCȾԈ8826;|3,zRw"8rS).ĕ?Zd5 )_54EBHB1^Zy\~N24ff̭J_Baڻկxlcle {.yZzXv8JmCq @Q̂zvA%`>ي67mm^Uid"ݬO0\w##]Rd\#wvϠ5y{-aH,ɮg?_iU9]߆k[c2LKMIFrZit k.߀Nzs0(Qt?<ʼҼ|6ʋ;⼖Z7+"N%,5ݶĬAxAa9]{郲ijU$eʟN'*,x|劅T˝ T Bhr-S&)+TTMLKS܀⮞:?c7sgLcL J3!Ă @JM[Qso)8'w!ZSyLl͛ȾLenpxcVpPNJeZj6\+q{A>ja5`oT(Hxoe\r%l6!W,uIb]SdYyckI~Q*|KO3 BѓP׽8yG$gOޕ8Ll WazyN_r8}~4%H(^ջ=5R<羮bN0[Nhu{ANZ#ң߹_HWc JW4/^ȩS%idm\*/X&fluF7Rlqcڈy,^-6BDqαr[ fް60}lo~Y9; yP KQvH! anBݔ} -g\5 s×lJ-Fą-9J~ĴnW8|v#z`ȴО  f% 3L8wĻd]#{0p@]|+lImFf]b|s!6l{cwV>yͣC38ڇ씧=EnlLKXywi7cIš4~ ӡ8ʟC5;[Br33x}՜{ە2!*>TOӁ|q[wUgin!>VNO(2"M-Z[|!|8v^nnםڙoJ >F(s^9g򼟮?a5l\|}C?!z+9iգ{6+2{#Ͱlu28'[7]k?vVȲAՏ.Ŗ3$3x|u-~;:`af<--ɋ:9ًm>4u=)"I{Uk&-5yϟ @@PԊ !@ (%"4 @ P+OԪոVglo @@ IÛcF@ @@.h @^IÛcF@ @@AIsѯMD @ : Tq{ [H`:` @ _l @ qjg5'z @ z0hW=·P @t >%v@ @P48 @t >%v@ @P48 @t >%v@ @P48 @t >%v@ @P48 @t >%v@ @jbAJ} @!>|7=jObW?}'+y!>  @QI=b" @ BOę |쉲:;ti9jM^*gc@ P'agi*~6*m {qZخ\fu&sh{N.V)ZmNh{a?BWR) 8+*qc1Qm/B^tolIkZG#t*uuBn2!Ϛ= pvqVy^`vLS_/aU"Mc $}jvM#+Ւ @W ^:îv\iSHv+Yͺ/oݟȇKڶ+JhH08ȍ!L޻h{-lZt9':W6N8Mi~ܹ5sU;3g^'Ò^"ںuޟ-YHvkǶD"8vMYi &XM6H#;l^*d/yk9 Ykf!ɿ3?P4*M ]M kϲј3d[8w8'™j+e@Yq\R؉F>~ۻuha߁9إbJEs*ӃSR=Xe1fM/CTЈ,8>mMäO{*[)V֦SßYB09/PZyU1.eo t*T`\f1@(3ğ#ߎݩǂKKJ~ZEi->7ٝ{Lv  NnO+T)T L|5U%?zt<1."ޝe_=4Z͝%>SȊ?t]7Q-Gmncu)yk_}Bn<s\%KW)axI<.tSY4|YoՏWE76Mqo? vE5¬A"ߏw Sِ H_PG+I?윹叝 [JʂQ+ƭwmEfx;1G$gXo9_cHlQ}@E[fYYS bMG* c,s/3ۧ[QigsW@T B zsqeul|zw=d[%]n;ZjOCyˢ=irIYk^~ޫW-SdĢixݓ.X5IJT U8.!$;poPw~ozsy8y@^5qc3{Voxs>JlahSz^s=E~uyeTA29o%Cm+~*;Ź|tɈ4Xrfa_wo,twW^:`FPu\հ9;vx'Piς '̎luŻ7ߦY*:#a[W bZM[ہpVlVr#LRXpIfܱ3$poT7Wfff c>ԋ){}cܩ9%*I0麲CgǗ"#.Q>瓢8V.D,Q*J9RUÊ3OPܮ#+J{1Q.w$UCj̵Q"lv  NS\Iz (IZ,of=ȗq kשT-&B xǪ~VSU.ɓ[yυ;Od8˕Gta_V4(Tc+vfᏼ=ܠ-<5UC$+7=tӶT1S~C,WuB[5%7WcRB*=\Q1k|&pqУ+~U\sNcDTHXS 4 ywf3NMzl}GwWr')rUiZQPǡ$R(52-$:w-<.@v.2bVS:jV %(b`x\!S _ ]۠cV~t;J ԣmaA= e\hMU+ bM-7i"zxj؍Nl1{GBfi bU>?Vѱ Ͱ::hWCj@ziS(ё6MK)S<n[0ϟ 3֑yru/%(7n&!'KĜGUV2?S{Xl?7µƅ_8Yt=%Hޛew?xre@u QY)W,loAE앾J832X]("uN꨾{#*&@ƌǥ)nǮĞ:5#ƱvM fXi}$ @@ۃͩcwMZQ¼`ɻgxǬ/OoeTNdwVr^;KW#,e׍%R qEڣ_zTYHcK%I4k"C9.dk(#Rz9v(R.Js: @xA3ѝqnSxvJRIO86'd)ˎwj_tWzS ڸeè$%qQďo'<6U9MXP9хgE%E%*DPgSvǔH-6O'dp3 Iۣnd*1)ucqey%q!TZyjvցmkwi& !{BD繓/mSɳujk)Y&KxN(EϞ(vNv@MK'G.u 4sw05,p`1]‚k׌LaO^$#z ݓ o @@ ЦzB~-`lAoڰ4he 鷃<}v|.y:uU8/;*eWr;Ÿհʿ-}-*CϿ}bhVy}_>KÑT-N [;Icpgw4μ ɖ7o#H3_ྗO9Mm&-Mg_+E:VX2<}ϒ)?1Gu)'_v4&rTVo<ڹs QFO܂3vq  >y::stk=ڍJ&iQ 8__'MÖ4*cE~ie#fъ}'S)biwf^aO&]p\#g}pb*]8s$=xvku>#|wzKSu s?ېshR]i"^CyՃ/\R|1+6,uFв 7o&{id@ =Y<]%M}RT/k;!@ "Pc}ϟ;@ @'( @ OBs@ @4wk݇惭uH @?|@ KPKX @OD, @F?.ۦI43@ ,`P}gs@r 6x@ 4w@ |nzR>3 @ ԣAq> @ K.C @ -1 @ K.C @ -1 @ K.C @ -1 @ K.C @ -1 @ K.C @ -`T3 @ "RO2ț$zSo+u~+SC @5 d<Ǡ]sqBG 'u, @ TwNTq@ 0>5 @QI=b" @ BO^!@ z@}R@ `@ @P#&BA @/$Dن?섰Ύy6NccU"x:c@i8VJi{ܦ^+r,N*H[N&oKVi WKKP4A /,AINW 1ax|Zu6_m29NOb_l]'=9܀i޼:8%*En ӖZϪT|]=6Gk9 [Pva+S5*չj ,ʸ57i?,2`.QrCB2}]K5}q= =PXi4Sx5Qɮf +IլU|ÅS^P1STT/aU"MaLhlOMC4Ӯij+dߣӦ ԩ<()cCYQFZ+O6)C &vӕw2sBO%6zNjM:6&˹՜F[ P_M/;.ǖ*POoD !oe_v~˶}m~ˮl9* re.;~Y{~ ؝Hai7Nf:u']},>%$Fa="|ϑ-${Ŷ[.8#IclU7\lml4#C]|*<HϜDFf'U;ghTJ$9A:{ Oј԰8w5cbJ)NCDs}r 9(߮hU=G 4Ikf0}Dnf溌JYOv^]x"yuyܿ:;ٵUuRr7ާE&,I)<Ӳ-1^E+ Tn+)O@1ەʛĞFm<!M%'*ilҜA_}{J1 s@",9vο\߃Ȇl:|SHS V*[K)ҒY?/bfߒu0hɇ ^z6(Y$+QdQ/|Ylv$n, kywם!VCn)ΌlYG/O9-ϙ,*+c~8Ad#z~"4_vӒp6 /l:L^N”4WÑ~2|RWLY3psRrz7@IDATQ>;N.T /N0ҟoypQ‹sȟ!Te~tMYJӥ~1jxߓoG~fve3|8_ܾ̉:s;93̟٘&Y+_}x9$4mNm9q sz3I2bǬ<>OZ|0CUW*!nWNjڞmvU2 @a͞]^SWE$}rLm*f%u!6WN-=;j`nwe5&YӨ])ل>1Ʀ8XmM3s]Z#QTyi#ʻɅM[OPF̕aײTiq3]=~EygGWeٕ5SꯩGy{SŎlZsSJb]_Ù6cdϽZQSmSVv]kݎs7s;4-Y'wER^_dMcۗI"t}xA;JLQ0tsyhH/ԧxo%(5zw\>ddx Y֗bmxV?4`,[k6 &X(rq=3?fͲVlH.Q%kwbZMYgCXm@Wފ6 ȁ a2rQJMKH2S$ƒ)V.s%'4X$-NNeGu:|5_>qX"&3W ~T{㧳c1TÊOR1պS1|A܋(w;y,:9)xHzE>+(@kqBLCI9SǓcs~|SM(X3]TQ])%.8><~B׍d83;+FYusB8i>TK}mx@+ɒ=m"! H>ʻdQ|3soêtŤKEy`sYljJUTch[w$qڒKh'\K˶ԟqUmF{&s+ZDLӠlEUE-%]o-=eȄz.yFIkƔ0~Յ|'6&Jd3֗i-GXd''ܹ^&sV jl| ͩksBUFti+ɾ礥Koa?Tg\d퉋)?ZMcrj$o 5tZXP$a;C㒫Re6)|F1mfPX(DnP[E$mYbKx֬^7VRY)_rӶ)VkQ dn)97\#7TRN R©ZCBq'va.V3Ǣz`q [eI'_Zc6t1n>]xȩQTn#jNZS<gѹOSĶn6ڈc/E Mu8m$SjמRrh\ZZ6<;$tEy-K[yQQm;΋!~ZtŤ͹TErQuQXhIG⍸#l3N~s%0xxȫ Մ\|<=T>&4/jyp;] A.RVғe֒(ekLҶm۲qw 5Z5mx$(j>ʉM̂B?C'JPwgIKRYj{8n}:dǗOWq3$rE8hЀXrj17LuuwrVݺf9jZ|ĖJ9|w٫2(O׍yͻ]gJ+\˅éTϾ˅ӘK9:!@x5w):8xW1׭,2m舛2w924FfsnKV͛XP3F ba?㋞_w0/U~{ y2_+8֭8$&^nNzY!ܨC1= ?ξORT42~3.eP+*:"=N1tc񲤒/e1\BNeE0 Is} ,mLz×*/X&fluF7Rlqc9m/Jʍa)~c 5=ג#MH/z׳B{~;#S|y⌓_{nRpפٴDj0cVσn=cjJWpkcZ~ѡ5sӥm;uQzz,8r1ըO#裶2U /:sS wPt(xry{Kо ^G5xА${5]|5-Y5wue\x>Kt rjJT "#?dݲ.:79o*R\v;xy탺c_wjgbG5*5L٣yqn~NװO6*sMyi®HVH쭒4ò/_jT'vocl^8w'H(Y!U?x[ܓPcֿɇ"^ȫsố؆CSݓ"x7L?^FaBآyk_##ߨ5w႓rxN[2ݓ *棲iGv72}'?K!pF_/g>mL\|xA RwTywAydh p|- 6ϥEJ/[G$C @^䩤+X!tG8N&.$Rg-g9=>o)fZ  @ <޷jHq6nΛ<瓻A}j߰c>.wP8|{<忓 @f>rE}b*s_6}বc@ IF@ 4꓆q, @@Oj6B@ @a OӍ&:bcVP40 @x1ns@r l"  @ !Q@  |ZYE8@ @ U! @ ]Otɠ @hh' - @ ]Otɠ @hh' - @ ]Otɠ @hh' - @ ]Otɠ @hh' - @ ]Otɠ @hh'f' @ "蠟[ \_gT O}怩!@ dc׹8!#P:q @x O^;' ?CE8 @t Tv@ @(1  @x!'/ć @@= >GL @^H a0 @ PO @ @}"N#m9HYsRa뜏mXnj+'A |IK˱.UƎ\c~NSi WKKP4A /x=%1<[G'%G9vmYjؗ+?_olܝ?YS{kRze8QzVu┵C/yZjk.S4*չ G @ PQ՝f}[Peܴجrp65f Zj; v VIf +I^ZY򄢜'Dt=^/acta/vfT[8#1:uP7{%w :܉ʍSK,B Р/ڌn:{wk/ӎQgUzs4jaں;ϺNq&,-vZZ7P6@>b1^MP/эZOO~<ܹScrvo0l֔n]f{J;%Q Zo7 2e)fdɧ|ڮˀ'MDuLGC߉3gZSڧ?d W lY| #aNruå1v|DA xlDX u#ؑYo42;+cD6FIC2d96,%|,y?+NNEGZwcW s? W?9͹G ݂c.hjsa~$ADJ୸J;ynO=-\hTݭodxmJ f.t}wM6FL;I'U{T;H|uVu=zi Iw/-)&o,Q˵=|nʕy!r UjCmӇ㤷>8´-{O߻1:e݅S3l˥̋GFSx\k{-5piN۶ܶl;Ukx"=gAC}>>Pæ,R lvfG3pޙLjlBvf<٘l,` |x$=8!~Ȟ_O/M gd {hO\_vTOZc%>zW]R=c$h\|[q|qq3-LUYLq,$2jSZ\?+$i\JN+`?|'a'%T a|tji<ɒ/M TEQ}kַ$d*6)H 6Mw#R{JlSӎ8}0̮5RazMv|;3gwO ֝XϚtj؜_]u;lH{:,[0=ư.:q'/XjdtcòNL_ _im.3lo l!$.Yu-bhd.) k -JR' spՕ2gMr5 LO#Ibr#E9IB jZr*]rL, 1'WC޴ LKlX#A뒦}*L5:It|_T`b6x3;7&M8%|U32G`\ZPv}IRyU~̜;Y'M/_|C naI"[~%>6\djx?'vN$G{OP`s3⚒k'T_[M1J̮-Z{Ⱦp.F"0zLuyʴ2-1{_1gdΑ͗ cnEKEZp%Rv^n\XlxcL$հ⬣/p)L/qA"$s+5|-G/^% Z0Ixɓ98#COoHulr+k]]uӏ>cHݼH9ܬEͥ z/ƹi~Iy05zeژJw]qD5G/VR@Ӳ*5`2Wҵ $YgFv]5cJPm$8/H(aHE9`ү7X~bרe䵖J'ϥ;+S$߭p-"Ϗ"zxC}vO9Bn(̥$!@x 嗗S \o5xfH-4>:8?K 5K}YZboLT7kgܸYioRobگ_-fLM g;kba‘ ˛ڶИF$V}rF8=:ZRn"/P6, m 2tlMOz)W2TK{q;2h=M|PgwY<\"R DJbajyC lRm(WTĢE$oy<3;2$[0p?~߽|=}(rn?z.l8oŐ͈s27}׾-?#N[PaQ֍@ ԋ@eޒ'ܶsmMg͛p4 T;V/sHGFM6 >{J1f.^ǖo2] ;IQ0ȃlGQ5W'=~\"PZ7JTnTtzYƅHOf_5L#~oS*zFL)q^pkR m@[`0T^3/pR}V.SﳖeB.ケnh`5 [D"7o<`׾,OsN}|QaܡJk E^a)J0la>|Ś#NȲ'- ܵSęGB@͓>qM99p#NkwtyԡOx ڿxCj5+z~P`TR$g8^=:em=<qƉ1A(a*+3dFُ pmʧ.EIC+hSչ @ ;'TAHFsޛgWGQknߝM`ӣ o޾C}ǗR|wg=Yz]1>^όXL䜽6ykҶ"n]SF|?o֟0Qɧ^/枏ʋ`wvYQU`C>j%Jw捪yYܔ跾2fu^)r?Hs:iޢe;jn3SJq4 I:?9uiɚ￵SL.o왠`!'~0>v®]]~Vp"҂Ĥ{Gv4NzSo^xjAזWoCE,xVc0~@Ʋhf/;v=%lΐr${6t aI⿎h*cP5Lreq[}kEcU IT1' O}ͱvd~˝3~ ]1cx7E8mVGP_6s`i{n)nm233Ճ%Ϟ\RV{^Ӓ.fQ'8r-sDyNZj;fZe}f_I>~]NgȮ"gG?ﰴ}A⭮ Ͷ16s.f> @^;*)Aa~^Ӓl}'=)DϜ/Tmf~)_3cm9{p4ynnvwr[dў#B q7n h?fHҭ>iO KkNOLd/J%%X jIn8 @x$$E'syv781$}Đ-qZPYNDwKj髬R<}R@ 98un[?%IC|ksaAckfX/ @g s͗2CP9&,7e C ,Oj6B@ @aP43f @j@}Rz@ @ #`P}ȤidSYL3t/@ @-`P}o\?ۀ!@ "`ߏ @ zwD` @ P  @.'d@ 4꓆| @.'d@ 4꓆| @.'d@ 4꓆| @.'d@ 4꓆| @.'d@ 4Q\Zct @ `z\OKJ/[A@Tk:z05 @ P@u.NHD2ԿN @^ΉP* @ ]' @@= >GL @^H a0 @ PO @ @}B| @ ԣzD(@ @Pӗwjf?Ύ┅>\?>9jMV*N?=WV3.{i9pm~S ~TeM [SzT.?|/gyZQ^QחXSe3Msy}&=v.|Z)B=UVCv-m#U]8m >ۃ }W1w" Eu"4 @/K@rSo暛:<0ޫ K32N\mj}kW3uWd-3* y%IEC&yyNwSuΨ 6Li8DJYs(!)qh±<܉ʍRK,B Р+sMc朩D)/Rla٫Ǜ.kUh)|'fol!*^śW 't?Gg_{ْ)g9"1iGnJZݟCIfީ:4N}~sq[OMl\Lb[{f͜|.<-݉ry8'kI3س)%1 mׯS 2ھǻreq H~l\~4Wi㜬[Hdlph@6LTm'J1 yv?;s$6>FIåsX>I>L W,T_)h'ݘկ[ &8( Ks8 @lǛ#v2D&IF^e^ޛpBo/3dז$rѹ0? O`PRpPv#-k T$]/LTJ2(NVUM%,YO2PRP:cd^Kcn(:3#q7S[bȒUn ij0?(]K+䚘l)gfNf/z2|HcZbsɾMUe!zEF؟fLt9dZ7}9W 'dZ(7n}'=Jw:IDԖ|tF{M:NnWu}!f`Ϥە$~qzXSPG"='~.QU62!C&7&$@LHP\-kSjϑ֊`]!41 !!82d`&f&_{m}!xֻ=ww_#UTtʅ+]>'nzgChYJ+; 5ﮜǬ j-}W.t?ZC#(AQ9rB|g孫|S?_;+/#/ȞhΏ(*~wLX*rxzT3nVLX;=3g ^ފO-CjM=V ||A2zy[~.]}ܟLnhSɌ3ZW b_D^ օv잻qa߶}LVOO߻Ǚ~-kn.ZkȂj涬663{k SlNJ:;6ݱ>Y)Iʳ[gwS:Z^drܥ d߽?WrV-ŷdIyWr9Y,:Cms ,W`k">qi0,[r6ebe4-HZhYhƖ h ̒L{WA^Ywz^~uB0g s9/nz!ow-2Tƿ~TG.Xt pHw[d?*{7m޳ݛZ} mZP,Q*YΕk"RC$HA*vM{j?߹,]pK/c~/~zq v;]z+FZ ^])JL ͢x5mθ8`fn Մ&Lut񉶬8/)daԵLޝSr+F^w0ҩ-#)rILޢ:&u,|ѽwjs^}wfC FtГٷn]Yꏓ{ʺG֡=QJ~Q.eExňksJb$YVmFl8[D(gMN/Iܐ=O2dX}t(@#NJS jO(6r5;sN9 cDָwqjTd$ٶ1ǽB61'=rܸ`N%5 \9Ti{SYs2\EǏ5,wzژ`HQLe=Dd-[hś.x/yzJ;JJ6sҠV=_wrJ(AU%< '@/\sv^UC33ORh,c5dׂg;zIOtڴ&*~d#V$Nm9 c+dpuO-gxvh`Ntb̒|O܁K՚^\$qduI.]A-g%A~ã7gwsBptf9vpx@#z{J}gՎdKEҖp +GN'S$jt'iRӣP"Gƛ;>NDVT*={dsq!@1TOOZ&Ů)٣JwKo&8c-OɓQ/x7έkwQl ;?<{g_lx6eKGgŝ̛JR'i?>YtT8\i/6/?g,[-NQ~t5LP|bgĞ:eorF::1?()齭 91YX{ؑCU=cW϶d-9tv~429yYz2ʻZ+zE[GZ{og)'.x0. jfNÑ/h_Lg?'.{Hj|i*,tt*.0>jIAQ =L㈣=YX;âtEMκ!G:ܽ"CLI ds7ok_ <ܣ[^~y2^t.Ő487OfEk_Ԧ9.sW=ќBbXC7 sm}h^56&^:=:[e&]yf1Eo l 'N$O}vUkR} S?~d~]ûƻkb.~3#H9EVfbΔ6'&SBj /N犍}N]Ϻ;,J)4M]Y l[ܣ"^>ec id̔(vj33 ]!}?H)\{Gɺ:wv[?z%1T26n)xYu`֙d{ʘ5P@zDs(w$]\H5Cң#"0(cV?&"UIVϦ|}⋏iOC*AeL}t=W?Ogu$՟-5֎2m!0`7˾YYĢr)<+tʆcLV#VB՚ G̵6i6|{9VWL(m{ZcÞ [kd-IU6,7;?O5:V8n5W̠j̕=q:.l~㊊#۟uSsO']av_$s/]K[J޷7#_i+ e'Ȉ=ɟtFAbes8Q굁洎313CD~y_9bwQ e]~y*C}u3/m'k{}kQ ?8 >* J01Jhnl_-6Zx#($kh,o'p   0*_>tG=cMY[)W>|te_Ǟ>{2Uk}. ;OLWx.>E?d_5; {G,H9˺'j͹^8#jJ6,S7?j?&|dIi:4YuK2Pjbވ_7O^rC9W~O*/љiHtr$W_I28s_7H?x/'U+ZZ&j}=Oke%i6]I5sůֿ@WڸwX(~̧^y^sqS!h{w|k~ϟ2>nW}rO=ڵ4[DWJOșbß_,J<*_6qc_S$ V+]Dϳ'Omt۾}x`ٴ+|nCwM\'t )Xx8@@@@n+}U5#ĒJÕ/LbM'Ato`Z=l)+Hucxa,:I\@IDAT;)|ۊ0OB'C=A Η~vO{ o0Ҍh D2< V0pw3&d!ӒT/[~`C@@@@`X4+XUȋ^´C5ɰ\ ad -@Wt6Y;u FC|TAѦjp$!&nl(&'A@@@@@`x >@@@@@ 4'A@@@@@`xD n_QI^or%@)-%V|2w|b[o)&(a?~     S&q3t|3@@@@@@` 5A"$ԃ 7'M"$ԃ 7'M"$ԃ 7'M"$ԃ 7'M"$ԃ 7ȐNC zܴ bҹlj?ߠ 66E %)%ƌwm     ! Xe:'=8 V?⓯ʉB("V|3A@@@@@` >BP     pS>tBO&T'7A@@@@! U     7E~ȴGvoŒܧxhy7lOf_檏3[O\LAdS=H唘ZQ5oWreW uzK=n'/ A 6w>>1׽Qh3D7| 4ńq|!P6آزjwgv~[==5g?KW>D 篿gs'B+&4*VîWzUkc7ty dfۣWQikڴ^lu {H0F09L}]1W|+aŚ7aa*xs>@eI.fSsce355HiSVyտrP5kP   0lg)-GgNh IP;QAq1#Z +pµ1 ?cfeɡϮHE&"3Kx@f2f-ʡ[sGִGXyJj?=`J 阘:멭-jpASZ*)rWy0SL%SagfTb3jZOPuюLI;cP61clW%lb2w%8h5jc2~8i%heLYʿ*|W{ w,wo@@@|oD`XqOMP}bt`i|=̗.ӵ:?oo]ZwMH֖|>mYsE^>irai6U'PVcۇX}(]HCdvizn#ZKĵo?#=E7e$Qn/ T3{ۿ9d/27l&?ɧfB܏=V_it\~v.{‘OW13//v"F>jk޶ fz > J +ColMQ<'M%Q}z{snz.m$;;)WQ=/1V/tg̏g}yK3zx_:?#Uֺ⍣G]};Nz}˩^9 ;[>y׫'OҲ3u>v~vրn~K5ˊ7V>t7#[?q/=Z]g3q?Xn{g˺Jfsoe?dOV}72;@g~_mGf8{Awԩg8ZGrvO=g   C(Nh2]`r#t RW6zѴPՓXto$TĘcܪ@a?wu-~uyݵ}omF4z$[mwXdNLu؜4_hhwtRNGO7=*8 VdzKHz5'cLRb w~rkFA =_tc_Qj?X֭?a/=_X"}CWg\t|7ү=^NMY|+m^Hi^JLL$۾ BZiҚ_.ysb),IJ?$HթNΕ*Wf;mCmqE_?{/P+Y18cG֘63fl懯jw7]@ *cPD1Bڵ*#TUqE˖ GK)Uٓ}';g9sObR4U^pc{8h /<~v4M%Ђ(ݩb3UǴ\1f<(`cԪ$f|g8/cB![ΡȻ&i.WMTld0cOģ 7qIJzt%\:|&:FPݧSgT_5 3"*Y@,x!{Y]yD; "/w3gӭ?S\F~E dcB(ɜEj8jKI:O]h%HtlWwi$M+G RRpuKQk vUP95_w@e[%4Yz^G)eV7/(#3dlrçznV.tʼ UrXl(~&:{E lzǏ9ډnL:Ə:{`"֓̍lahDqBG)y!{Eצ55ݑ3:g afpG+#"Ǥ04͈fs& ƪL>8oF \ }d'h|‘D;8@XOq"ǺKG^TAg6p`ظK/xUK]Ւu.?^zr-_-IӦ*vz8p*tiqg?ߨxĵbno:]=M8>e]12/=t &^81Zuȫ)?NCHGicK}tbmG_՛qVO.w1'}_'[+E]u}ԻDpRyS dAc,(| w TD'1r}?!t$)\;(wK#/ީYniJr52MU5q G !G9z;_TGryR.:ң .SŸ?Bo=-wtweOIrCĠdɃ-MMQ|N(7+^?v_$8)+ w[ٶV&THMU[?ğ:DŸ=u }m,=|5=T0>j"txGQq"Ͼ>c?|gp^B=֐ E   CB_Us=:v sg]R6?}G5c6Ae'K'>[/"Έ(AV`+(I6/j\O;9)ޱR %IRs-:fjy([Ri㤍|BXwߢK"mnAF 4{t}[UR0#yܲvhMh\PO1rHP $~ڦ Bd-JGpW9K^Uu_9%o䧹nskO̪cg{IO {BJ㥸n{sŐdgUXcX-)PwZ%^SJ,b_=$=WƖ@9ANuz&C0n1r87'/3uM:y5=C?bS4gzwQP-.crN~=;X֜!(&<_|$謿N2,TKϗ=/S qy#K tΓe-g3_SNH9ܙF2QBz-֑\IGNJ)zO|^9~t@:WgzAQ4 倶SznF__'rd^CpY5-a$nS1ArOusS9otnT2_f1K*Tl_6 =kO\@:NNQeڞ6/]yǛ8ҳ&lxj_~+nc yjI~ԊXEu?$++d;Tş{}8{i/^0/93^FGRF_6*ad׾}+6>WfZb\@5gm\T'[-3f-gϽua.47*ϜxѝߣH^G5'h&-ʏة/%pN+cs^J:fϺ.͚Ƙċ@l-O$i=dYbң 3!~3[Z?CE!XVQbR)]SI\̱옧Fޥpzhx>?\Qs[]"O㼛ms blsxsdӳ'&n֣[[?:HE=?zǷ 9#;O&HCsٱUW6>&鳪/h[zM'7ixte{1//ش-ף{RԒ̬gSOG 5tA/?ߙo= 7fC; |ͿZgXXL}ލѽiFP*}gxeqVpH@ռ_^CIK}xI S,47ZV|d[~ݙS  ldȔs6-1r^\YDgo3oIzh*2]&UtRq) ]fɋ]0GOtԟy'SBdz >. &~dA׉ #xH ]H1r+{b1bl#*~9d\I67Gs֖Vw¾ |X*riU|S:jVF/mnN@P'\;33$Gk i 3|b'    0\lH݂ȳ5]Cf}2zf^$R 7$E7F 7@v/:.7Ѵ0wI+⓰0AhP;tYAH}5 A@@@@tVI84ߨ#IȰ      `IhFO3FMIhFa'wpǚ%2Vr}@@@@@kB D6s@lK(aa?# | euuC3 >q@@@@@@6@|r/p@|Bm&6_      "ąLm@@@@@E      |0< @@@@@n3Ȑ_r% @@@@@@ G"vW_}M      0l5l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@!ڿgZV=ND^4wWx    7>QK|L[uoܴ5v]g9ngRE&T%oNzw{i+ N,Ez &;Ξ:_SSS|>N@@\[m S.7J z_{:}98ouao1짜Q%Ζ KWZՂS0 vvޯq'˟l=eW;}M*>%ClUc kT]Ӡls{$Y1(Cq"iOV4tIlQIQ!g޾팞vY20Sj}LdUI"}̙L|EQ}(Jw%% OKg]yE1ËKS JM r'mˉ4OىT8NX>kqzn[_•a̾R|QRVl- 2 ~UՇXXQ 5U '*j?i ||ރrhcź;ȩ[{J!s|5֡Kl;Ŭ%Zup1yR"MYy(%UUcET|{ZDEGFRcĜ&G|%=X2%|"@_sN=F}pXUK2gwɱÓ:]X׀5.  ZVڄѠ3 bαoYݨJ^DG MADnCS̚+Z+DkM[uH9!3z;`hkPya֜|xf:-؅o,T@V&&p̺ꓧJ4̉=AYcO9G߃"#$'J9a: K媚NJW\`K?Kqyt[-,]& &%C$/(9-5}dNrdm:e#&szuv;%Qگug̨n7 ©vC\ʪpD充 Mv#;)ᄅIqFeEA7ı$$%[Yє97K@ gZ*̉3v MnjŒƲٌœ7 b>ER?W6ͺqe]o}ŽZ8t#qbz8-'5͛E>= &-;q)/HJax"1¸8^\8n@Rg'q|(~>O>fPbhfV,(8`^lC y(>WlInWr#0,\D ]b0Djpyўڵ[ųʻxlKswUsF:vZ yx 8Hmj]f<SĒĹ ҩRy|Ҝ]SY:D&MWk͔$fPi)~Ek:1BQ](&ӃOJ`,FDp/=Pg DWWg UH]D{}3|kܶwq$ݻkx(wwɟ~os9<*gKW0 ]6oO9ww2ssG:%G>Wgp'/pb?ТsHKĈeiU2Q4k;9)tu\jNU$vQeϖqu*~AĩLHd'w}е'Ťf)R%4!yfBYgd_C$C3xbyjtsũ83Z gjbvbbBEU0o;Hp܏>Hlp4=mW &0o =W*ý]`+?H&\)' ??B9l?URQ|^x|$mܗKkptfA ȓH(\փ{#nekIXG*x2 gv|Lpl:7j'ɫ% RxVCdU/7eodranlyek=9K.t]Րr/yd ٯ9mN$VqbF4 )VC6WlD^Xpb$B0A!*=r󒍪.JT@ 3sqI=1z"qL$_Dz}Fȱc" Ёt6AjU1g˫F/*:"@u#CW ?N(,hsZ>?_l =FNƕފ,מ~^{-ydr¹{YcOpU/qvѷ65G4*S%)fg9pC6v_nW)U87x\hnjА&͡pdׄUTS~Lyy !JfE{p̩S\tC3JQ<6NZP   &`5T+4ZNpjDdIM^ PUѢ3{Ե>لS .e%I$A2GAM%e9_vWʘ>UUh*j7)9)s jluKCYFj=:H:+2Z=f0& \ jh6FJf GU)DZyʫBt"1YUMV빩xd2ҩ=f(= CVџ+Ij#lu皩s ҩs:'x_D`P8?'scY? Y춻KDe}Kp2_<:\@{pbK2ihQ R0{mT5DIӦ(zߧBWe%˗%ȠC{UD$rdYg4LO4JG֕W\T:&dEnȋB[I^)'y1!4| DP=ʪj&-/JP2$R'+<~mb"6쨮4$~ajT 2%\ʬ⦔$8nU& A4 عTP^aam  eκ[otC})y4=Gɤ x }Z     p8;Z2< @@@%~d])'烂QA@@@@| ˗ j@@@@@n';F%ė j@@@@@n';F%ė j@@@@@n';F%ė j@@@@@n';F%ė j@@@@@nȐ^r% @@@@@@ G"vW_}M      0l5l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@OBB3@|2l1@!ojߧV$%ʼn|6 @@@@@ntU(%K0MuV"b6\%"@     ]&0j:8(i8“QɬYW^Q_Ѕ+d m?zDKMY"ϾBϔt[|1]eT]Ӡl0*)N$Y1(C4;a|K6NDR=dWgT6fl،,= m'0.KG)xW*/Jʟ-^}ge&eUo*ұsXTU͎ DT|{UDE;Eu:hܸD~$5*WkjhHw|ރrWϱbփڭNxH'.! ").dyy`b'*jmB^qAwhЙ1~7Ǭnre%d #x ")Uf5[ȑFsBf1wpì9Ӟŀ7#~ŒBT7B EMÕ *`YR_Y}`QvfnPhwHd1ٱ7(I^ksHdt݀<brUMCGdz),דNrl֧bz6CnQQD>Ih0kt¬TzB"Mb?wEGӸniƌvi,o7>% +jH?^^XtlY9NX8?+5QYh+qI$I 1VV4ecYf-:!sbxݯB1c~k@6cd)m(#MǩOGf]8M7^N-:8Xon99o,Q?xV0iݩ;*zA>>HK+fUxqqsJU =0tO M>wJ2NZ \D ]fDJvZv~􎖝G7jXq xMNcKƊ;j~˺~N8DalS|SNf…s&&*4yCB MN1מ<4RiLmGZhNm2w{TW1$<al*;}e@^e'IAckY1Lpt*cV_2&M%6͙:^ =@D e<Zej1JꢁQTMɞ%%K+ *53fs' &A?X3+_tACjU|X2K|>βBD{3en5Ex@/HtIJW#`1"CEDP?x !DWWg!UxWK$3O?غy`ȹcG 'U?^ F54?er;V#[X'Z@@@[FZ81|_hѱoE$祉cbIJ4*Nյ|:.5HWpIc;٨g˸:Ln j%NCJQ4Z暦tysꦫܔԸ"ObF{:B*K@]U:&rql+!dYiq^ O&3ōsb:}d'Jxqښڂ;83h|ىkOċIRJhB̄ȾƐ3W!MS<<5`-x3 :,QLvUV\MV֡ "E>\)6 ekO[uUn{AU:ӴBunjOΕy,V0&t򕭗^I C0kJQî3ҏ%JV'} xa!F8Ak`3<E&48xXtc]QXfN.[5=heYL!ӞD)D]߶jdg   '.^( 2vZ*k4*@!F~ aHPORĚVG3l[9cz+6pYǭ)I@proS9EIDP}=dsɢcj/ J2Iբ6s ۪nT&E@"گm3\H81#R !+@"/,II8l}W~k!GQyFUc%*H ў =}8AZu]&J/g">#X1^ T{:z[5U*IUIQ !+On'9[V-/Py#'~JoEjkOxrkO\B)fg9vzz;Z[;w%D< i$LumGhnX~d{/1o_LWD9644k *mOlyc3N:sG)ǺRwC-|k t U6VӶ5!.HNګ*ZtFcBG6{J8Bե$)t15TT2qv5,N2&)3OUU1ʪZ{(AJN \6[Рf":耹G: XyEFCl6tud+D]mf#F^)4T9VTj+ 3 ΪjҕZMUswlR:l4U'd.sz Imd\35zbNZ^A:|_D`Q8?'scY? YDe1\/+Y,C{egNHֲWw+,A.o :8Y%SF44X#yV% '03@@"eU{%b,jDuklw{lvMNrܛٜ޴٦gmƮb0XZ] ŠΈXjz8yg *֝$Mb.e {;&lClkMd*2z2TkZSS I-ܚT׫I Tax!\B&O'!/ce+;oL=IŽ:КQz6vLN퐭DYͨsdEq9jK_>@oqg#gLlEÃy>pKwqzt}2[; 3Uc0dX f^lz;.O=J$!=}G>uO%Ӟx| @$\qHY8~:ͮCG = \<yw_?u{}zŦcgޚL9A;bQ |BNH1&‡3)C*\^0ޒNHejm=+\ @ p"5p%+}#G3g4 ]-KT!%@ @9w5W{_ Oۯ~|Ec@ |<3y5c; ~*=?^՟X[O(QI@ޟ@ /e ?¦\t-Š#5@ @dy~|ɸ" @@)B @G@|r47@ ^IM" @ p4'GsQ @@)B @G@|r47@ ^IM" @ p4'GsQ @@r&s@ @0MMMo @ w52 @r > @ >96jd@ @|!@ c@|rl @!$6C @&ب @ CI l @MɱQ##@ @ @ @ cFF @@'9 @86'F @ Ora3 @ pleG)-rmS!|a J\[~p  @ p?}=Ҷ+8]GS3 'E @A@.F.;> ̺-ck {l!#@ @C;k?O>g y5c;ލmEвS*l=Wn;ӓ jhv=?ʇ[Kt(Zo9~OɖGɆdoq%~$\ m Ȫ殮a`;q$@Qe>xvetЧ꛻z>L<ݷ._@ @G|tds:<+6&2o#K& R`߆|Ɓ뭊S-?~a+S(p"_%/>:vmTpr]%ήj6T>oeIMra(v+7EVᄊ=H'tu**l/ [˞e{KUԷ[~gY]dgFe`>`". gPr5C@ Dss/CQ+5͝ZU/ѱ㒞_% >Z5^bφ}d|"#U*RQKM 9p9s!ѷZ,F{ ʓBE~8k\nwzKh}ƙ-%)ktjɻ /? L*8UU(oS2>ϒOv6q6jcbq#Jלnqb8_bdz/\z{J={l_X#!ժq>]#]##w(͙nBHi֛R4ItYNэ}ɥ Rc>b 4tƝk1T`~fc4H*e"hA43XTpiJJ݊g)cvs?_FWqLT9' Z*mgI"U(dUUބ;1=k >yu17x;AW(S'^P=S8h;؟ݜl/Tdp MCv*ٯC]HZ\ /?hr-Ҧށ:ficVGBku0%֕G aCU.Zp#A_Xnoz7& / .WdNFwZu KL5Je;)2B}{n5dVSMjóƁQT4[oz'}x>Ǥrurh!鳨/&fHx@y(Dלo]Z|_e3BAӱP̲ybmߥ$_qZDD(=Z*CtQ")>MgfSDƬܡXSr]Ϸ_mTr}?;rיPw<(rEWIMr ~BJE@`l`=r0qbnT)*}kcy,N.WbVW52H{9v9?מd'eJg]S2Z;F"]/2$gڢ+\Qy.HrV2؊?l'{d.A`jk#=;Ĕ 65p@>rܥV1ۜ+3A4ȣ߳%k5etQB .Z"RϰbiOvCf=Tl@K3BgIa lluN<yn!ܐ v(9C tV>jO݊72c!ptX3 8neS#HYp=O}XtmqKiDEvY'RrZ*)!̏B&DZ%nR:X՘8On{_?~E 2u2D`W<8<gSZ?zg"7TIgKdmjLPrbÉ좡pb6cG^}^!W/2Ksk9}%gwBQMm̹73և= kTAט`r.ڌJUW0\ۢ&E `F-[;lycs$uDRO$VqHY;8~ǫQː'3psDJ(*>Yq_{"3_{ʭLŕļnÕoG':Ɗ˵R՟yXjqɣG&ޟXa>Rn7&l{\K^?}Tkk_w)Jh~G@cν D.׵g;px&ܜZIFx(EfKCS@.#k>9<umyN\wVGMb}1Uec6'LHˁMa6B1i%j00{0XMʐsd}gO+MVC'$r5tnH54u IR*m2a˞/h fT>cQm1 &?dPfX:6;NSK0~"HD-!˪! +@yJ:8O"qd5O& @t;jN$Vr_pc694=ζt+1M@"3'CdVԂGnRK)3&jD`W/^19v*״ މb8FJ rMSGqf S Q"ͿDsf92|j@ @;92 @D0D!@(Zp_@.V+B|R, @ oc @"XZ  @@ >)6F !@ P,OPN@ oc @"XZ  @@ >)6F !@ P,OPN@ oc @"XZ  @@ >)6F !@ P,OPN@ oc @"XZ  @@ >)6F !@ P,OPN@ oc @"XZ  @@ >)6F !@ P,OPN@ |x 65IENDB`django-rest-framework-3.3.2/docs/img/filter-controls.png000066400000000000000000001354401263353514300233030ustar00rootroot00000000000000PNG  IHDR lI iCCPICC ProfileHTLzBzG: lH(1B#+ ]QpQ!6 (bo;|s;s aRi`o7zdT4 y@ AAw}׿ƥrrR>DG(JCii.DX^iN;g#<%@AtNC#l.3v\36IIY5G6'yJ< >ˌTa2;\d= D>HD֬:iϝ?iq h9azgsJ@h`Tg + (pk& v0'@hep tp<` Q * i@1d 1 g򇂡((JZ m b :@@g z @[ ɰ< āPx9\x\ WF2 ߃W H(JebQhT냍&b` Vl/v;q8'\ K.np$ 91Em0~ C%8 \BpBE"LeD'b(1XJ#ߑH$-=i OH*%$]' >Fdw2|J~H~GP(hJerI*e&ŒJm*j-Z +͔^!-]"}J AFO]-^\L̄,UB6P6EP 9W.WA*MurG!yQ@|BBB~GcђiE}E5EbV:ۊ(*)++SLWTNRޡܤTbD%CeJ 8 4,x Q=ڥ:&T۫vEmLKUYKKIOү5U5}4Ś45'´r굞jڻ۴u4tt<%2ty{t;t?EmkWgg?164k5d&31lxFFac[c>^Ҥϔl4M7505^0zᎅ ۘ'1l!gkcbȒcYny׊beꍵu~6T-6m6llEuv:v1vv} yFqcfg[4?M9,_ȢA'-'!~gsA~MKsWmWk0Ӑ<|f&r;}{#ߣS3̳󙗖WW׸V>êaG +{o/o |v Ztn vIВ%/-wPCV Z8 L.,&cGDqDuQ*Qh\txtURϥ-YroPYJ앧b011bٕXVlE8ǝs+w/IpJؙ0s2D&M%G$קSbR IWe V^=.UBSKl A<^)# 779 496 @IDATx E{f}wAB@NDAO>zP[DE G"BO֤wvfgfwvwf[ON~_U޹VPg " " " " " "C ?\" " " " " "HYЋ " " " " "@5 ).E@& B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]M@B~j$$ e!!]Ms7c>?? }uuZ܃P[[ZP" " " " mL];vl&YUUveeee >l͚5 sv3&nkjjҶonsiq\^^e>`ѣcR֭[Lc+**lqS[׮]2MHsx׭[}"" " "ИBvhWe#@ݳg;(**.]СCP~zC v(n׸ݭ[7 6D{O{ (ضmG(C 1xmٲ%ZV޽{G l 6mr ^q+}/; ۙ PPvو-~{v͍Zlڍ?b'{JS/))q vr0lذBŀ=.~^Ͼň$#w4)~ 4p: ;C{I)}GOB"( vر s8pKVz`AgW_~G7n,?4B5áo߾. B;iM;>"p"d{ߧcr'#p<礍 ԃayS)A0^(!ࡘpK(aL@kKù}tuY,!!']/@uQ# ]f yȋ gE>P%μ7CA\罢L=x7QP2P#-eްsʞrh'PhGKQ@=>=; Z] Ǵ " " "ņ'!:o-Z( KIw.܉7a=F.>}+w|/z)GvZyƓ{g/bT6Vd;xe4

    :FYz}ya)#d /–AYgEz6@ُ5=7,PZf}Ic1PP8L6#u o"iy|]%z,_狢;GX4pUV?wl@m}>6璘u@&~gFs16o<'oY9JOx_~( SNuk8&A!@&8\څ ÓO>;0{饗\z KB&ygܷ+Vpi:?Y,x/áGhO{`~T |s=L<a+ ēaa9l]c8mʆO >ϏЊJ'@}7vM/_VZx}^s/<AgJ`! S6Bs) |_Ҡ0~lHP({>}3r=s,\'?8>s( yS. GA (fć`E~i?-N.6E@D@D E:|ͨ%oG2L6^}U[t+L:uÁO? e?#]zoXlY<>?@ !;~x6@(?^x\]]ָWEƂDCW '^- -m2Sj@c#P6N8 ҆p{B& Sx>0+|O}~/({>ߋQ6hÁI㹓k((&@yl=mpZ-y<'\^1&/ n#/J L/\.&[uGX1^:{ty;rH)*Zѱ"`]=|#GFN>F! * (ЎW~HT?A@J6^@4[,E$> gG݋Dϱ@btv;ABX91`ŅctCje(Ti3ϋӜ}y Go#x q*\/$/5\6O{ `?c8:ː0aH^qm ,är5Dga8pu?&pp'':j0p`F8kA_ OcHyg8% * SC iަs٢Ǵ 3=ت~""(xgdm!Cys2u#֜peE:@_և_N\ven84|_{ȑލ@%KE²X+i=YT)mرcܑJ=;< ='Ïϐ$\1e"3ix8J SoMW(8Р$P?hLu ;àbCxAQnPgˉrCDvXD@D@D@D 1:f;{csy916^ zS* {Ξr٣Ioz {_:SWF%D +0D4:nL k}W5 O(?(:6]2}<È; (VB|p9>" " " " # +s,cK J;g,( ~>xZ2 K}nyi9_T(@z |^)JK g@cs,,lH,[`Æ i9)ŋOLhHW^IhxiSI0rFY?|( 8)RJJ#" " " ":)J5e,ڰJOA^}E@D@D@D'kŋhnHYh ʺ ) 9TedQϥRK.I5 8=3vk;G,tr+nh_cM/֚A3(a1z޼yG$-\ D@D@D@r,ƶm۶pfF0ъ__>{ DfHOÌ3C=?+ǞtIvGgHbU 8;+t\) ( R8Yٴzo~;w}󟷏|#vw;f@: L}ӟt>}[`M wqnc|  OR Rr9J-/blh"cg>cn/R9"_uUI /xc6 m " " " " A kU+v6wJ~_}:+83'ChWIII{HC A&NXs)^Q@ " " " "pgk~eO}9,e`xך2OD@D@D@D" " " " ",dQD@D@D@D@DHYh?d5vY8 m*.SAH}HRT=uMD@D@D@D 5^"ulVPP1&qaد5E YՒɫ׿%7'oZx@щ4A#" " " " 22s&tvǞ[OJ9`_?E@D@D@D@D  _{HSNEo*F9h| "|ݧZNL6OE@D@D@D@D ^XشArxruRJ@~ugjRr" " " " "~,{YD@D@D@D@~<) ^w& e!*'" " " " G@BםE@D@D@D@D HYǣʉ@hz Wwٿߖ&2pضyظ.ioߚ?7/.ұcct"" " " " @+ ;c]m 3*9Šwo2= HAn.Mmu}yAqMEe9,x-88۳=xEǟA ++90w |۹`{Pسv( \+׶4תˣI)coYŮ]V<`;h+/z}ŶmϞhD@D@D@D@D 䴲z.+AAm'[^aYU;w΅o[Cۨ_,z ]C*mO]ª]>>oN( m;lȏ]hKmŶWόVg~" " " " "^rZY@P=`+(ґ#B]mWЃ{(ϮCېNu W ,[) DMˏr^ Ose 8(=}ڠl-cl Ve :d )> Cvc4<;*wڪNzNh -/sQE4T:rof5VU׺E@D@D@D@@Zvn@5VqColw}\T^aA~R]Bæ7Y(5VqW0|i #{#,un#. g1&i/" " " " 4hvyidDĂ6c$YA'!)7m6@-9-';fXS^~UQe+|V+q  "Jjh TdTҤR/zF&ܒ}Rxi*nY4kd\h{q2iY%V89[p7(kK/;|?߲n&̔qoh d2:e'Ku_NN5p.ݻ^S&٦gsSrה)gmaA,6ٍQأӱ Օ;FGy6hl6|=p ö' " " " " B k `NKB2KP@r]_u߬th,ڽ0$ʛ(,HAi\h?qVuc` ygx4y6 X06?[trΞ-/{~-=iQl*'}99iYHg_ԳG:NNI9x) t{I" " " " "rvT`v <(3J#" " " " "CC[rrLsu*" " " " "*mYH҉4& e1ň,5K@B\,w@D@D@D@D@D .) q(RD@D@D@D@D]VSHN=dvۣR@hٹ]<+,,hx=~HD@D@D@D@@VFfFvn+8肂6&n|ld,+6uuuZw̞{=mu " " " " !lIG={ˇ$TVVZqqqKpy}}Z\P hWBۢD@D@D@D@D@2H-&b9xX˂0=,8fdؿ_sƍm֯_?>|=>Y>}2y˜)k۶mOۈ#裏Ιz" " " ;Vd4{[)ߟ2[B3>POw[UEfdڰaرzmF>ێ;p!s_|/p7o|2|z0{9{ڵkmСOugu3GF3F͘1>7pJOTE@D@D@DcO+/lsNJ?mlի_gAI&d(s7nF0`@]qnX7NL[p3؉'f%—"{1{쓟KWŋ]nݺE]vcK8qSG6f|xXµ<Æ &8'㏻:( e8={zSOo[KYuG8җdG+b1뮻[nq`}ky~Xl޼پo9n.gmǪ5y9=l̘1.ͦMsy |;ͭ/@;'7ܠ (HW]us۝B_" " " "Й 4$rc `(uYgat/K5 h{E28FPgVã>j_sm(.K/UUU9sV#8¥o~O}@ɓ'٠8FAq /a@Q ȑ#np,9D@D@D@D@pE}cs´iӜk*|u> MByxG ϾW]O?AhOy܇O_NQ&Ͱ$Y$^]}Ӑ!B|+ } f͚eůcCuu7@A)R8@@9u2( \s}pCmlܰ(|}VfXM'l3glTB袋.&p'#F4*?65|>,% " " " " n=p]GYN`Ȑ!nNUV]/; L;+=Pd4ePL ' 0cC{ֈxwɏ}Ry"aN>O:{ؙu,,Гf=;#'jk1|_v_6ĺǬek׮7?C8{ѣM29\0Ӱ$IB^BҥKJ["E@D@D@D@ZL@B]]o|Î>h?яقJS/×/_aM .r 1uT7)ÉP>2#XhQt LrD@D@D@D@R' Y{JLdɒ% ?"0K8D' Cbg?5)8M'PQh0 .І_nqI-" " " " R, 4Κ 9 ƠA\'N,,O38>֯BlMYc2DbAI:YB2,F{αwM'OV~xF=٨s77^;SOaƌn}onhQ*71u_W\RR L`p`:զ"77|vC?]9<ু=cb/\D@D@Dd35/ d􅳯߂9?YMWiF fݺTWL) ;ʢ(ϛ{ .(H1M#3xE+ ~̞~9|Xɘz-7MW\-YQ$pY'pM7xٳ˄zM;Jk%Cfjb/}K_&LS~{KġA&tEVT\X(BHiz PPP,@eGeE Gw)LaRUµ{`;g0^Ҵ˱ECE4ЗݚU2&u]BYm}gd6?Ps눂N`bmM7-ieSh}:" " " " "ݲ> ի[9}ɋ_K9e)@@[zj7潹 ( AAD@D@D@D@D]YhyT@khaHѨVft:pWD@2L%D@D@pE9 f'*ۢ @4)9TNF[qXUm'kx6WBnέ@?W:kpC2PWRGC^~c4D@AC5ud>S(ٓ[AA[ĕY̕mozȂņKwتb;yVX|ؽ<},S5d:HGbD3]'" @TD?ȫ1EA@oȋZ8rE$&@nxs.[І+++v33oouVro\]{<mܥU5 j٩{WXa{1Vaa#c>}$JQݻjdڵ[x„ VZZD _/C1@E*dzO\_`óDwQ@TYPE#[e "kkm}Wo%E 5VYؑௗ@+\C*jeARTS4»k/yYX K.VVVӧ̙3c9EϷmfO<ˇNY={4%Kw*G3sPEQ@u9ss}tn" " o;|'OW8>^D@--FJuR` wJB_(HS( K.* (SNmk.{mٲeo:ց:=UUUY߾}m֬Yֿd<V-[؂ l͚5.ׇ [L7 Pc^jv@&3 =E@D@~~8$P"J<+-h< a;@+гFYP`t`ͭU> /6hZ%.zꈞ6uD ^^;CGو7GtIVXXhX ^x;v{|b}Yc1c 'Snm 0Ng$|\A }`M !DQNQp7QO]J[m7Vh?FuVIXS Ð?U?XnXR;U+ C* `*G<b9Nbxy#9N;vpYPbAXxS6md &bٳFY^Y{\`eظq{v;У WVS#ꕊ8pCpEo@5P!P0}'CNڑVaz4yXq`ժTM^ՎUUe}RI6BOwN9M/;r8#{{Ŷk#F;w:?C$ |D~\mVZeSLqɂ[}hc¶5T" " 8gF7!Ie߬}zu%%%Ώ!1{`G 3V\^aTޔ,KTdtaH89?N9唨Pg(~Nzm=z0!֭[gÆ K M!Zqy])Iy6$CXAD@Dus6iVKb+ { !4Dh0$ X-Zd'Ov$ϥ".l ,;Ĩ+b 6sWV ]ݢUR$J%R(+  qOz衇ȑ#21=*U |=1 3. ^hC{o?2N)@X(d@d67\9Wv!E!5@8j($Ёj[j+Ug&p^6xP_۰ij䩍7쬰ooN' t iP"z69a7,Ӫpr~饗I ~8o"YT$PfE, &D|Vm RҔ잺." "47 4m2JUh^  ")wCX-充_EVm;|[C﷿.SUpdt %4wq w?lo| ޠ8/^Y=~_Q\^a(>`F&@3@?PBݕ8 ``O׮]f} k, (lTD@igfVaӧr!N1cƸc$* ,oɬ9BpXi/" mE[/E>" D \\[} >.,hx+zh3<ƏjDH~I`Huofp%wm﮻@hwe|?_, _rˆTlxGn^{-RsT# uִ9sc=|$\M@~\oH]0gv> Zz-72ÂP R ۻwp?#e2dH8^qa?fƤ9'g(v/rbL|oRb6"" mAt6=nX;۬YlڴimQmCD@2F- BĐ^x!a;7ov'PÇcaƍ!zyJѥKef ,[,i9X;ԩ)k(?B+Kq" " mFݞ~i[K/믿>o\UX7&dQGfAzc"ekJC=gΜ8a3tP1bSDfx{1o.{vnQ6'|) Zxl ?'v͘1#|NE@D痿eAuEٝwi?Ss=vuץ\)K.uT|D@:/|v˔8;?^~e71\ ?3|sL¥t 'kVSFǷ$P&)_|і/_ꫯr(רի(@(2OY{E@ |a}s裏>wMs7pK|XHk_tI1[z~vtjkklxg [XY,Pg|#qXq*f 52>g8, ,HX& LZ|YLʏ?SJ N1bt{ĴWtlׯw[k~nhtJϾo؟ߩD4>*@ru5MaƸȤ;se.EV) 4 bn@ΐm@޽{Zoe/ePVThXP&lٲŭG+Ӭr E!G" "X^@6Q:ć5%K.qf/w_Kx bx/e]|Q7MG?jsĦ:~󟻺3z~UWټy\U|zE-TWU[~eF` c_AFBeEeF һ{ *.m/íOr xS&ɚ2el4 6 E/H||Mt$1+ ŒηK> ֮jw]y'k|#LШSO=)Vuvay*=\C ?VΞ=vG7k1UE)wt87sΞ~1\%aa%e47kjerE@D@D &N芤;A;G_׶vA֭sV ,/L'Az6u0rHc#; "q pĞ7, ~ÒkYeqhۤ|" "g?Rõfoz>(lLK·-ۿsrSO@|O| b@]d,b~񁆆}|P// ȱIZ_ " " mc"nɭ@΄/vy a",\c1P6| P}Ї>dƍsX cJdnB¬MX4FD [!o;&9fC^q-wG{5 %o@|l>0*YYChQFEOOC/Pә~ᑋ="C"|%822-x8z:d+" "кXSon Qp׺1,ƌH*7iTz:qpff"P(NFzEqFLH `!,d% ( x4|wȟ#^ʼnt:G{Jhu a (XaNcC*H P>?4}aYYpDwcrO~$Cbñk_~Ĕ8i;66E@:#4<ۦ~1`{zt:{GƏ㞃 (|;Pp.LCb1+BZAo۶M+ɷ E܇NVz1cƌ*^v2g}Ny{٘KirdYH [%nƷ*;4I*idT/@@9[ EV劀@j;',d˳MEb,,+3E@ښ&ruD>u " " mL aW?m _ YȊpcTEr͸H:6"q%觸6" YC@y"~*`U!OAD@D D:k.s{CD@ڕv .GIފ`6!@G @oqpGga=z#okebk" % e!<]D$>PjP[d{(@zX|-0[Soݺ5Z/F@B=|Gm:q|7{r]zGU6\uE 訡Æ-|yRHv ӫV7ڰaÒ%u," ,z]ee!H֯.:-Xaw˶dSUp/z'谩s[S.׹C1PBćI564 (ol+Î" ҒA :h/V^~cxΝ0AH&D)ӑ44|I:C9^Q/Ŀ{\GOw7nG\(^a giZ*CDkpGD@D z!b5(ޱ]~)n&Mv ]h=Vl[lC6{0 ԰˽Ԓ DH0JA/VS((@5*ZD:ܞc,d d( %@VH|Y}v" "  D~5#U+ R T@' e! W$z"J@4 ~?zPRD@D [U>^P4E@Dhwe6έv[MM,|/>L]Gl8EZMbSV+_\DgڋGκ,# D+^E@ZUYYyBo.DW5x_Jޢz_-:w`"+)ɍy) E!44 RDA5Ga`+D- A!W -[E@D@憣ȸ4:h^΅rp;1}k( '3w-h["P^^‚f!wF۾!" OlND- xYٹ[.mykkWe^nJڴfuħ6( m,0Jf(:O Vy" " " " "ܮB{~jt(R:TcD@D@D@D@D s,dJE@BzjḏTI" " " " "СHYPS)eܭ$DuQDpB46mMJ}9K!udLᾜ$(իخ]\\=lq 7veSO۷?8^_@hwiW\Mל154@+ NYsε-[!Iguf7n462,lٶzYUp)nJj甍cIrdW*9w>]o_YG1#: L@ߺ#uޔCn- ؠA_q"pΩɧ5UE@D@D@D@:8^{ٶm HC nH'`-h(͈m@inVRܥA‚Zp`h\8p͞=ێ;8Z]/..r DD@D@D@D@@[ňy!!\j8S~ -km[mTLfPk( ۂtޗ8 ]v Kc&t:j/" " " " NeunA6c[ l%nf6 M6eag[?6,0?|) M/b ^;M :,$Ə}z0F#G4[:aS0]fA8LRE=4~iO>POLa%%]㖩HF9,xp i0v+ Hh*`]@APh^D@D@D@D@D W ds{M(GtOhkRښ'" " " " 9B@B<(USD@D@D@D@ښ&@#J& e~" " " " "#,ȃR5E@D@D@D@D HYhk⺟U=op18ˋ{ΪBE%+FE@D@D@D@D@vJT (8E!|AMM$UUUk5VX5p9ĽZ/]ֵo߾u+" " " @( lecӟ uT:L֧O۴i;ۍ7h]}+Jufm,eomܸqw3gaX*t'vvWjk묪m55!r3!3Ǭ\WWk*ε5A|_}JECgֻw漣@/?=&ŏ|#Ʀ " " "б [UY՛Ga})E% ݖ8A+Ǵw>+..Vnjf,D€RQPj) Ζ]v]w^}{I?>Ǻ/ی3eE@D@D@D x9 Mk٣po46sB뢫q2s݂vЮByy Zp*n 427OGM5>8h?F_5k_P͛綽{GrxbxѣG4i}>AD' ,^{دXƏoz1böm efx:#ef~zGGw͞=۞y{϶t7ovƌc'tRx7ƍ#ѣ8Ǜoﺺ0f͚e'i?x0aBlSt." " " )2sn]RΗ,ޭ[I&ix\[/f?pB[zuׁr_x'?iW^yS 3oNs)S\Y?Q/}KM[o56=sq A馛좋.rñPzLP^yz'lH(^Y@! ifF~~z6lj';Gxûh3qn(Ӣ 0, ( zWVB)XD@D@D9P+ ɄI&=q}{1f8ĉIRǿ\RRbSN_|Sfևv'5`ر}˗/o|\~Rwp ׾5gI曝<]uUUow L?tX>װFu]qL@vNEN%M*B/E^- .),ߗ. An;#—rAo>~;2dH_w< c9 oS$X`fi?묳wv2|x{$M?n .kP6( o~00(@ $3%r"]™nkVrt5fߗ,1|o(a68(2ѫW?O98FI`L?Co*0x$ Sb6&{F#9+ Bs!30bwU}_% ' " " " ", Z|~_^D03Ó!YWt'T0kÎ?G!HV[aR鉡|'OY%pv6sTY|֭kQg Hy~.'^:_o6ʼn8Y=( ~V#$cʪ2+TBR)KiD@D@D@DHYh/͸СC:cg݄pݻwF}/{>&lNݵkhىLCÐJKKeixV V" e`^qM$[QQЉtYX->xX=YH8<(*HW齵DSٶ֑ddt]D@D@D@@+ {wwG:j6N"LcǺkF;ÕGO1Bc @zyޭ؋ L7Y'p>kQQ =[3 1=)Ӌs9iOQԝs*ӭs*!^:_F4 7Rs(54^Y`deD@D@D@D 4pp6퍛4i,gsƥ7uͷt,յk@Xh󎿔p_TTl{~z}]>f! ګN8qŇ+fYm8#V7FatÓp^lےeѵ,C ObF}^np^VVfGCb;Pw:( -u˖-PKRD@D@D@2K٢[4<Ì'OqM]5g}CuQ[$bsG?Rgٰ!2;ڵk\=  ta\3VfEL|+cT$B.|ƘQ(Bifk*4 8w}OҠ Hss%g?Nc{ fba6?Ru@. e9s渍93ysK.i<8qYYbp^YY8|k\s5zq@{9(`AXg}vthx7c + cBE]/IĝznŋK.q@ålMXED@D@D@D dY W:ֱN-y]nf!z'L8(ҥKaP 7o y6h@۳gwP~eU\v* /7 e0YӧOp=qF{gݰ!}{܀_®J曝_SaQo(`Qkmt+@?O};q ̙3e% EW_}+Q!APr~_:K%%fbms>%T3׆ZVD@D@D C2%{rrBY`|9C,Gc^=#q%+a6X:F--O>%+0օL|4?; F'x?ԕFG0n;4@͝;^xhRŹĠAΌ6O?+" ߞ紑q` u֬Y`ǎk" " " ""9,MdFgOxq'X1N@p/?Bxʋ/n6gA ?SR_JkH!R^2~_u[BB8% XuZ-!ŋN,4p=z] 76lx`in2UQQLݺ5|Gi*ŭKwSksښ,Z,$l58k' ¯Eү-(E@D@D@D HYHW, ,- QJJGJkǝA!w >=8ē22 /<蠉>J{9Y,ٿ[ 9ߗ,E21eԚ5kbl\{EY,,Yح~ vr<}V,?׮]c-JsX}8q~ ۴iO oߙedƌ#(})Sb6l(cGG׭{n(bl` ;m!n8{u܃-+mλ`[%3ñ[t NfۀfW6&p@Bnz](_!3+?o~NY="JFqq`сx=v~'*rUUUGn^"oqg]qV^YJr#@gvϼˋ]Y,Ֆ^y, c @,Izݻw ' (޺ " ' CB\9c) SZ%@'5:bfY0?=ܳxܗݳO0o`Ϣ!y㏠JV_cUbeaժՁty0|i}\Ļ +WFPB ?Qܛ+#+^D@D@D@rdZY,朑q&fm"Gv16u4'ϝ;HΚ &M~;EE'h1X1Ϸqc݄Zw-U@y]I%> ?J҈6xqr[J/]eVZ({Oz]ZZ2g(r??/b7r=ua_[[ LM?Xv 4;2@6xͮ֙g<9ɯȰkH7Z8F =^NfW3CwI3._N,A"dZQlU`SH!b9T9SiE@D@D@D@D#HEN%M*(0L{JAi(8Ėsؙ}9Yܙ_]D@D@D@D@ڃWJ( >=*{@B˪" " " " " 4}U{,ɲmI` &`z !7 /By !B 5p!.TclIVGhҪyWG:}ΜY[9 @ tf_l^_ye".fl=ϏlsEu  ٯyAztлwok׮hj{#+SlfֿX)JFq@@ ?zDaˈB MߴקO[vԷ!oذF喫gZ ={} 䶿;x4iW3g9+//O?k￿ 0MO?=ÝruQ~ V&N٭kίef] m󗮱s  )/@'nj.v̞\y璔/7l@J,oVVVfׯ3UNlw}ת^tK]6n`oFp6lxW 8ȭ_`wҥA`oX|Yלek7^=Iw[SZa5uog; ]v?;a_}V  ^{^NZ~igh|e*f k]nB~B=lUVV^Z#렃Me ZMmȑct  nr#3tM}cHel2PR]9Y Uo\ae[&w<{# Є@@_0xlNkv RDzU|k%%%ZSݼ1RuuueNcǎW_}Ԫt22dHt.PSN,7gz Z*آJ-7'ۖ *kvl%읅G.}̗hMMݽ+)̵}/-wCپcJr37WmGuOmlOҺ_h7Tڴ<^ٕ }Zߞlcp>]r%*ʽ" iUeu+^o#lD|[U̅zS;G~]r4UVF=x7zے[lJ~ ͱ%W`vKKA9/3ixOw^bg4~mf{S @& v_`a}p];B&}֔࠸ ]ܹs])S'mTض̑#Gք7|#2jl1֭n}˃.HAKĺ-"䬊WքܠbGy3k"[*vw{q? R1Ro0JMxe}{Gۊ C{J* X~;Π<%TKi~'6#^#E6e@ p~T4 dTDe\w'yv!C"pIo\ev{5oTV[J b?>sMמ8u;*#M{r@ (\x~oJ7[@!>q.VgcV p޷TTl˗ʕ&*Ç.4GwSҀiZg(6uA=v/KQX\]5*rPjGK6YiVm{N*)$qꟴ4O#We=*kev^ɿlW%?]gM9V3 0(Ե^(QzĠWp\ ? Me4eޯwǂ|K²}!Cm`I7Wg5OM {鼮 LԂq{tzsغ'j㻓X> Z{| Њ`vk B-?{Z(eAD @ SߜF7ً^kd4- h73wGf-?gU{_X;7fX,hBևfg쨮5zeaS Mc zGڌ*kNr9Kmf>Aף"-kS੾mU}P^*Z?x'GMt)\XtEk#hM4ޘK0d@Qhzé߰ M?>*  p \ Ip;+$ZtS De.˖%-@AVmUA/}Kݐ4^@>P񟴲V2@ ؉?;u3'=Qd|Z cƌ1D"6mЬ?療4AI<ѫ.g53սUoRi C:TW5Ԙ?%U2b7&@2~Ч-xzn^yMV'~5A Z7?΍1XdwH&XI嫬mTn2Uc%fo>)Nic]%_]b7B%*ZbVx9eU8jQN1߈ZdS0DB\oE@.BS7"<}]AZ#6otEyRsM}TWeէ^A>f@W7iM[^?P`ZPw_+-%Zss]?z.J-Mz_u.J[еNӭO[|a;TEs5VkХW}I d.ʠap$ƥnbc_V[VH -hdP]}C1]jM8CܗeʥUZe ˎ*g<$H<ѣ]"yr6'袤>0Ԃʪތ,?oZ3'[^IA AeZ[5A+Eo7`Zǫ{ԕƸ-Ot**,dkKrsC*7u-UkʪqA v) ѼZ M,Ɲ(x%3s? @j (`{{@ImO(kDw^>>IvK"IY_oӹ{OkVnۊ^v^ vuT@V]煏׺V_oAҫ8;'A7U?85Oʮ>~lpZ׵FM? #g/u)\ݚW> 2G?HӃj\~\+=!1J݆_OTVM'|q=|ٞϨ؃dc߃qAPXcw֫xݠ=#^יu(}lw"׾})TiiɜGnTc4ېjӏ0n֬-.ʴ߼czR^TJ55V!uKQ#U}WzK*·kμh[[e`;#z-e=W~6׸(ղn?(ԔU;YǷ[c#|"LRk-WR[8!LEhWL^ YA}6iNu[=S~tVTTeuF :yj0r *J9@p^˭ g8?-& MՑ||RYǷʻέtio 8\|Aއ  `<|?N K)z&{8<  :XUUUk8}O}"tov&! "X͜O>z? u묦F  mcH  @1 Z+W+*ߊ oʙ:h;b;ѶtuY8  m#- jP^^n Ə/--^{}AZ*{o^e:rH{}snn-_^zQ [׼j{g~aP:"/!kA  H`AT9WօJ[~}VZ'ځα`VR+n@<ϘZ!z*qSbOܜ_U[kݷ6g_A@@ RҊrS/R^zد۫WFӲ275kVD}G=R)SD95om  @ʷ,(0P m®J-eJ*2-?;ѦMܾ~oyyy W.]ĊK"5*݂`6R6f@@HunYS 6ǹBT 5IOvwc >c+((#FD;6u!R2og.0?OCsӒ @Xj/>#GmUT~zF0[ܷ1Evz&[Wݳ z5  @J,a۶m6`@؀UXvMUcko͞/oMɇJZ6$= hDܼmtnO-9c@@h.]w6RU5xRiiy*P%>WoBR#R4'%M`k^Su`nJflib37o\J@@ ]b}ʔaz''''fH/TS|`yyvYSR{KRXر}M  @[ 4qz[|@@@ m2e!m>6jT@t+?E@ . /2ZҭV zR$@@:@`\   Xh5!   9:}@@hB @@)@9+W  @ZMH  tNy_*@@Z-@jB2@@@s ,tU!  jV  S`sW @@V , @@ rU  Z`Մd)˗/SN9jjjq[\oof.qIDATf2 @h@NsvbH_m۶~;8޽{^ %G@ XP{ov}w#ꪫK.Ç۳>kӧO73tk窪*vɓ'۴i\>/^vi'{\.\h 3fXYYpvZVV{qiaÆE]d#GM6 7uwۊ+l?N3g;H.]j/ty|6a„udfܹؒ%KlȐ!6uF$2Y`TUuG9s=f5j}6zh=Q쳏[aaOo$6{l[~۷$^C_NxtSO==9\Сơɓ@tCv+[jm޼zU?{UvW۸q;.kmwn6+Wt[K*`y:WQV0NLnV1bWrA_3#)suss}[r3U2_ve֭[7?~,/ZOTvm.QwxzkV="(y`CqRd/%GKx;?]|b= tBNxS[rI멽*ʩwyrrr"Oʨ ʬ'@A#O%GOGoT]|R>UZ]}Tӟ7W_}ZB"+B3_}AUPPStT,L#4uzb_^^n֭sA[ʠ$xzkC>WZxj]nK JR9]TN6$@ 6_b4z0WAʜ~W_}]^O~GAvv!t[>jN|[iPTFSoҥKtvnYeUdSw('!uuI'/7euR ]]xᅶnS`'MҤVp^o1# @l_KJksOGґLb¯O6l[EuyUpJc?Wk< {+&G]?q?sAԪ.J6H7>U-@Σs*2?O7Xv*sh / ׯCm(Ho8rF!X޿lH0O:vnO}vd @:@cNr1\FbUNuQ.57p]kΫ@MG "qo@\=WwU>j 2AzgK^{א7q~}W%[o@J&iYgxLsuIRE7>5*$%osLt~IS4@XInz<}"Q&~Cy?pIP4ٿmpy+t땏^RY@@N#%x-u5Ae1Y_qæRݐTU2yMU1Դ6sObN?zmY3uvғX4N@YuiuHݏ[zUz0 ~k=Yc [SյZ[>tg'L9PDU!:56%)z{||rTץXu*M"6([g @L2uUF?vN7O5iQWu+vThY(9Q싧>}MUl۱+T (<ߌcҖNДgԢ/)Jt7^~ cAZ=dP$@ ̸\%I _ҵiL.VSҙs BZ& @ ;6Ԫ@B@mH{r@@ ,$a#  +>Be`˹_|λ3ʕ# t@ڌYUTl!!  @OBxp@@Z`   XJ@@ X3  1b@@mH;VmK=vD18'  ;D`!͛m۶m6a{ @@)@ྪE[nn=:~… ;@@ #v*t|ut QFPi(   rܮdsmr+/@@,ĸ֬u6X޽wqq=X  @ Xq(۲+,[=^B@@s )rBq"+ݼ)B@@ ,$999V[[`6!  y,N@@ m=>[6'ؓM  t>8']nHǍ[ZV0  @& ,4nk @@Lqyq@@f ,4@@4L\/   Xh&!  i vǹ^@@)@L(vKNoO.'?ww(1 4Gw6G}8{Il۶~)? 4,4Xd /`O?mڴvuW;]^7p]r%vwۊ+lrN3g;<}ݝz'mڵVTT*GukСCmm\ oؾ{/t2yd;#9s=f5j}6zh}ҥzuȑ#O &m~>oovgھo޼.㏭k׮vGΩZ.\h 3fXYYpvF逸ٳg{sacv衇6ʗ@@Q)pUD}Q;S+r[\jkkmŮ{I'_noǮj7nqns皂>n&:u/R}Ց^zS[mĈ_7><=#v15\czrݲemܸѮZy?ʕ+ݱVrN;Gru>J?я/v)lW^qAץ^jgq=sX+y'\LK,1]e$! ;J%c'ɸ*jIГyUTe]IL^=MW͵^zɪݓN8|K?ʲZ2)|s2Çw?:ZVt^Am=Wʉ'UòeLw:ӦMszʯKXQQZ2*ӟfꫯ\k_'&R' |}~SuV\\Z)LݟMT`CB@vݐv~[\%Ux{wutsG}d]|ePpE8A1V.P@UƣSS:sx U.T⣧J%U'No~"h,BuV7N!z[_m |?hO@@` l_3۱$nPm )|iv1:VcTN6iCS)ѹE魷r݌ <t1~ANrx㍦C-ZYiG*5`וW 2l*))qP UR .J[ٱ?  fu(j\lG@e!4WoAS}{ߍ=K=c]pVWWފѪl5m:.t}*`ݻi^78]tE1c\hYg C]TiĻ)W^ykIK_zeT:C+jcu]W&# m-뮫ιOggJGekʪuu|{:uћf͚{n[RIG _Uujmh/ck\2߰a bIO߿%)uՒV ug769y5[%y*۩۫  NL2u5Vca^vvVw4-:MCB?ռEbV^^cGNRk]w0(4\@- *Z((w,Zjt̚5 Vw'  v@@9ޓHB㎳ݻ'qDfm6ӏ҄ $3.D@ XHB OۦMl]w?U| 7%\bw}Xk/;9sX=γw@y=䓶vZ+**2GukСCm-/lȹs<`K,!CԩSC[ͪ~]ɓmڴinJ뮻wqv.HE}׿վKw{qD˶pB4h͘1s=ײٳm>DΩ/^l/.֜͛g<-Zƌcvv嗻 @hk!h J룏>jzR^^S[[*TtI*}ƍgwqBUD}vM7_+--uW^o-ʕ+] _wu&~ߺEzN;49s͚5ckꪫk-[H׬Y>|g?o}[xwݱݼy+.K3ΰ{,:xN8k-777R&mWpLdp7 AנV '! %@B{ɦ`4Jȵ$z^:Ux[iҤIJgUU?jWU%ط$麞Z=w/UǎksQO+**t*g}*@uY߾}]ӥK袋?v=36rHׂ HTu4ט.̺ufǏ_=SO=C9D*/%KA IB@K`dS,_")oង䘺~nհa&WV'U~vO|ᇑ~LFѡz;7Z@ :{Cލ7ZPJ{nTGyWn'Wwrqqn]je.~zbxyi_uw.S,Ēd B[Ix>j PҠpeCuc _Oc>nV7AZ,M&٤ʻ@Jt]6Z^V`m={l,h*ٿ\F]TiW`.I~8վrcL45&}>y@@={ 艷h͞?龣 ֭[}QcJ*ZI-> 駟P{u 5j_}'_–-[fIk幁ԉu'KݺE#X8  @:9Z-jEx衇ܛW_~Ec 詼Q|5OF݈z-6#1V=׺:ۏ4^Au]"ϗMeV4@]@(k}H; /WodҀrWI8]7@o?u(ji^qO@@ J(μz=_OJӔ^/.WA{uQפ{Óڮts`oG]$mWE_|sg鵯j]QWƪے^/w)N>H׬D`d?+*Ŀ1*m8q]xR[%! %%xec:C|KK˭0/?i5uMj:W1:BflEI*MU@ߛК|4X]nԟ^רֆ26|Ro,r+X56@'8}pRֆX)QSK\Tij~Æ -T$g_BଷZ@HGmL~41;;+d֩zj#4]+JanHʝ'? 壧~AW*a tYU9(hDF5/wD|駮 =쳮"|,# m%@7$Q@UbhP=أJ   F#0@@RGIs@@L`!nE@@:J   f iv(.  %@QҜ@@4 XHFq@@(<  B0  @G ,tt'++jkk '@@v4ېR[;Qmֱ͍ 4ېR[`!OJKKm͚5VUUh   @:4ېR[ 'G]v[YYGV]]<  ֽ{wWɡ*7;b˿Ze96zp􏪸J(  @RZԣM3ֶmf H  dB-h&C ؄  Щ.]X]к@B@@ u^e `  W`!]\b= mU/  $ې [~ 4 &@@:B{ZyY]$@@2MnH ބ5x*@@:B[UScY)l &@@\1H7U+w,)@@2B`!m. ^:fɁ'@@2Dpe!!  Ԉ3s  $ XH&@@2Y`!>׎  @8lB@@ bYM%E6oL_\;  &- ziQϞ{:L!  i,d=@@! ;"   (!  ;D`ٻtg {@@\ XhcDT6&;@hխ_G`}}#AP0 @ֵI3$36ѱ? ݏboo   fhNj'XhGY K  @kWꪴ֞5SO`a m݆ iSHMS)N@kӾٷMFj:0 itB@Z.!m}AKBM- K A!^Nd  @gh\oW#Xh]i:-.V]]݊3r(  TR׳?˚Z.@]s>p0UαO?43;  @T999`oh)B+r|^^M>gp@@թukԻ!vKB.z XhU=mG~{}{  @TRJu+_ϊ7UFj@Z eֱGCm۶F' h={#{w\ `c۶y~kq8@HmՙZTY@]Keee7o8ם#Xh=Rɷ*D@ ACk6mA@ur~! i+u*(}]*\:աTwSHABVC`uءBG}}E(kYn%Ӈ.8& >O%Xh`@YP]R}JABu~귻i.b ꒳ukm5'㮸 Τ6C7Cݐ ?)  )'S?mCYm #>_u3F^^U50.#:UDՇج˧N캯  ~oa   KZ3 }`A5 ~!`k*__Hש޽/a 蚚VYYmuzxZ? ]4`~Y Ah6&|v#Zhi9@HA<+u > sSߊu -tdخH؝״.b 2]tn]O^if:?-p^:_g @ShY~9zNZGjZ` M1=.\!V'곣MЂ;^_?AC80?<}>1E@M ^ּ_L/kk]x;  ӇN4_@e  @: ĪuZ돷.mR -PFW4^~~^ě@@tP(˚˱mS~~[뙏-@ۥkTE?<,SEc@HXix^yE/Grr y5[XuXX~XymL@@(?ŚMeE[  -Ӈ.VX'yc?.C@:@N /y?='6 ,ķi-`ƫm:/*'6! "kޞh9z[ Ѷ~o/@Ik0^%>z_ND_[z^C@:J V}euLx;$Ux2juMT@HCQ%4L XޤUk2QO~;S@@ %y&{ Ɋ5sA@s4g_A@h`іs m#n2CX  k61 mL@T$ʾ  Y[W,כAw()zc(  AYt\*  $!@"  I tV@@ XH]@@$L\+  I,$Ů  dB&m@@$bW@@2I`!6׊  @ I`+  $@IwkE@@ $eW@@ jS[[!Wzm'++ Y|XOIENDB`django-rest-framework-3.3.2/docs/img/horizontal.png000066400000000000000000000265541263353514300223530ustar00rootroot00000000000000PNG  IHDRX A iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 600 181 IDATxQLw/׬(ޭ4\TDX4QLRAw%YluV2pV_KCBsX: mNR&X2H&^1no!4`{S<?;/_dX @*B=q7 @@@ ZAXÏ !~ @=8y@@w ZAXÏ !~ @=8y@@w ZAXÏ !~ @ ysssHŋ,UCHI`߾}<^64FnP*gxwP/j fϟB!4]YKiLwGsAш̴3rVm U!0]{]E 5 0WuA  \@Ƞ.@0  \@{"P# 1t%ky-;X"@Ty#  ;h]Lpee O4O=.!}`,=x;S`xP@aIkC6r`>Wv d.3v!.zn<ԠbԉnO3Фu߸Yvl[] N1#cndh4ZaU Rk82TÌ\TT˓@ Y~_%oX䳚tGYh!Xlf'Wmx#3}NQvI3}.e^Y:Νkm힅. Xg۠0te8/T :=ܹtܙzN L4;v;uk׻-.;p#C-?r^8^i?䟽C/9,N9~@Ȣ:?,G%&"SS ;mLR>pa zz1)K)hgsij]NAa`hv wuM&z'fbL_YT#L \:"W))MBTtw}[aR_)XmE)ʊd4C3aJ_R ;tfS wM Kox"RUjCo|3rV{D{%nK5XU.reƤx{aMY];9 e(U brA@3¨QL GF"1}&yɗ%c..m|N( #NhЦ+*8^HKW 89 .psr_ѽH/O.%M trvw_bw4G[* L{<=M,>*2!p-"yl_YIR|\s76=jcOIiOEJ֔?1S<[ $%M 5_Wܳmgf-a~d![ʮOObR ?!dQ@AȪ-ZYM5VFNwtq /XmC]ô͡+ \`3ٰ3,Y]g70=̌1IiΪ;B2hv]@;y{d'ڸyF+\e^kfi?L0i}׏gi3WmMM [oyߒdV[x~v@GvsGq`R[]B?+$1M y~+* Ν?AᳶH^ό_c> ʵ^v9z]c]͗.Lbikj0r甹uWM~(Xó3q_K,qyXȗT WUU%$pTR<x=\jGz)6矾 z{i")׽?`;Vkݼ'޺D7t'gm|1%$e)oZaeU(j#\w eu#&K<̌M6]]]vDŽ|S)Mۚ3t1KG B o露4Yj8xh02>K򧮮EɱΓ4m$$y=aʢ# _ZkEژsqM{T 엕df)<@AW,e{7 =vߙgi&(~N`IR3Ź?7Pq@ {;o\t|c]V|KCݝ]NgW3G9jtUY SrLD59抲K|3)OsW LZ̴v cf6[TvBx'xOҲR6?'l<{#XZmn5FrKlj: OWG8֍+ۙKiq֨cur* xTBIj@ |2%Kzv^mqbfmZ>}OU& $mlڏ>E_єY,/.(+ yЫq7%_QXwPJJnB) ׎qk ryEoYVivy~^OM{M}di$9E%[jrJ ޾' @`yp|p$@sa0N@nW!@ y>8=@^A^ <@ @`{>x\A޷o"X 0] Lc0(R@ rC@jT. T|@HMAZC*@@ SCk@PP!@ 5aj~h @*@|Q> & L!@@B ʇ RkX^^~w֎ˢ" V @;ʅ]={׿)Z=g?ه~Hym#V @mF)z9Tӓ'O( 7mS@^ɭWJ_V6-?r\T@@ 4QJH_(Kr#5\5@x;9^?z9^z};@ Xb:ixaj2j$2=d8' |ͭo[fq:ܕۓ&$a?  d2sA~nsM=Xvx/L1kOAI_nҲK@lMTc;aDK_ 7 vڎ(o"$"M٬6G_ɫʺobFޅ1U#G1Qn'&ml?iqrof=v&69;:o,E#QrXG`juobz*Co"o:Hs|8;+z>Mc @&KIFLH˱xt-Lrkoo\;Yo=x᪹h0o7 M3nƙv~z58Y:~-Y4usYXAWZwD1^d=gﳲmvzmE.qż %q4 кD!)<|ٍ\PכL@o# d'\:7E 8S sZ|8רU6nY3:Fmc",9%.T^if FZ̷̓W^g:]n^ڦ sȅ \;o}utQ2f :b4|VZk_%Y. A_(]2-..eh@2=q{%i,)G]͟?Z)XiKI$'(:ݼ 9nčIn{r, 3 4o[)ۦT9bm#Jɣar)?h%n  d:zC0&>vE_(v̘Hs:)B\:b`Vtifb \c!8s^ޯԕBY?#iD-#:P9r{b  @0.'Y FqJBO`33o.(ڿK۶_J Af3 ] wNm3WvUƆU&Knn +J 5tbL 9v)YF;RO8N!W Zۅ^9-#B݆IW[*/%_W;]4n828BO_*_,{ @6$q~K47wIMpei͇+ @60 @/\ : dRAI] @9/ !B Ia&u7 0B@&E œ"@@fR}C@ s~P  dRAI] @9/ !B Ia&u7 0B@&E œ"@@fR}C@ s~P  dR(E"/^d to>P^^% T q{JX,_x---=y# wm@pi4sRZ*ψ: 05=oMWDՕ !YEr|Tq@@ l uaև@@6DZ!@ ¬  l cC@=¬A "q1țj:@R(foRj5@0#8qV;Isiѳ"N67+I[Z 0G&$_O|K'j~"Gט}dow׹NY ࠤ^RK{Ws*  "َ(KhĤNɳֳ &: K,0qYut~rX EAI:\Ou^!vBb.n>qtQ υFƯ]zJƣ^W}mڀpvR Sœt?q :O=b#1)u36td4=Cv-GS@HUq}WE~y1_tc`&^O@*@dvT&}`4=}޽:>xN4cV_T8.ےiu"=%_#  3Vo]w77 5݌)DHJ~%{QX 0] c]}ӁP`ɪ?|O[Xqz4L^L, -z&Oyէ3mu4d`7"jֿaj߆ˡ]= I/_ނUEA"Ix\+s$4yl7,[G{ w7UãC@o 0Y{=g6;<;|9t5s~1N;ˏ=wLOg _ 4,  wL/ z+.]¡ 0?g@@ @ ?18 @إpph@! T8۷oiiIeE3F5S+C T( 'O+ Z*W5ʅ CĚynn.xB-\R\-N@58Y@,KE JAXPÍ "x@% ,Bff< @pd!@`pC@A  jq YAY!@58Y@,EybIENDB`django-rest-framework-3.3.2/docs/img/inline.png000066400000000000000000000201471263353514300214300ustar00rootroot00000000000000PNG  IHDRX?j!@ iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 600 63 NIDATxaLSWǏ+&`4%&\\`s)XaQ^o//7 MM,MAy| "O$2Xд Xvwo)ZVĖwb9=ܖm/^ @H +Xo$@BH $PH $B} $ a^7?V $P $@^@!#$ !$k(yXy$@!>@yM0+@(@H uc@H@H 5¼n~<@H b@H &P׵#$2@`~~~NqqΝ;o:G,jnu?`ˀ[k \j˚% ~9Qɥ_\[-L!Т0nN(:&?xo4&9Wa +_~[!LG-P(PjӮ E4|#1D 7_% rAiajT%В,>.#QwܻR':鿮8X[,:zSJ"n}s!$tθJ$~7[R7m% Npv7 {nZx v’8'w ݱ$ݾkU?`ރHB)F„D8*l楦zZ*õJ97teF0`g: tO  i&A:S=m-C(d֪v4:Z 鑛>~!hMt(GALTٝ w>A!؞;䑑%B#,͍NG@K)+\;@I>ݗG&>HN|._,!}p:RپM>ْomO 471TTՔ/ܷ J^Jg02F; ¯ % c͠v;7Qhd }6C.Ѥ6!6:e.Og,1Y,Nklw BckN5MbkJpGa;iR:t]))»]aCGFe|Ɣ킫vcK[ldV f,̝~XxŸT03TzM-}Aᮡ7ZlV3jRcV-`B@U%֫&taYN<\$T_!;j=&R92U䰰sSB]vajcNEݼ7^]YZz@].L^|$m &:Z+)F b:5Cp=e ~Bj+*Lu**H/h[$t QYkhW]`6w7 c {Z{-7ūX\C`.?|ko)>`ye,nm7ث5u* M*Ae3jK^hWj^w<.T .pAճF)_b5HB+w(HXTq1!?l9OkgK(Cp$EqG0RkñX!)J` EN~B҇('B||-,v%}{g|rd+L7<>9><7EWh|Lr϶WOx䮥B"3OB=%M(>K*" X}l1Ty sym0_}it9#v睑o$c?`EGyDY`/I՞rDGbt$8^I$/vTF .М>g:!@Qg)#6RMw9RzG Ƅ'&-y(!5;.g0U1?ewPuiWfM5MF7|'z >9fȘuq5vi!=rx:NV fMdi)(Z ^^\AK;v @ylx֖Rwvh@,>H*cqZmԠ!h^A^e: Mn=~rF̅X|lBsc]I7HOk|Ḡㆱ&.O1* 4waao6-S0'=~8729{kZ&&yj%놱4<皩re93/՝:D^k<-ǎP Z.je p?Z={)/Hnjgλw'h@tyT]DBz|H_c`&())|^sQw$O n.U{\ldY|Ca B][Y 'fGtP8}tY e9#%s]+$k7'Z'ªaHXT-͛߉6co6|q_m t6i RZI 늶{"|K(@*)ɔ,n):mdžBOϐ TL j!|A tsV[ DE!K!^oW2SoK}a1_-a9:>(E 9x61z#=|rQ. ]5t.N:e$f]>xwj5q5#l pTWӓB|DZTBɅB1h $4zp(#^"-~QpPqI~8kdLcy@ VUU)X|q5iI7T$-41ES&@E0^J;I3z-05S^֡R$͙Ĵ.g6Ndm + U{a9?F.X}ԉK3l,?H(:GBd p3QܺeS a&z DH $%R,f@H @!X4@A07 DH @!X4@A07 DH @!X4@A07 DH @!X4@A07 DH @!X4@A07 DH @!X4@A07 DH @!X4@A?-8knBIENDB`django-rest-framework-3.3.2/docs/img/labels-and-milestones.png000066400000000000000000002440721263353514300243410ustar00rootroot00000000000000PNG  IHDR.ÉiCCPICC ProfileX YgXK.qy "9眃䤰 D*`@*( b$ wyf귫zzjiFEGM (n " P}cy,lx, ,~1@vh_o8@|h`7$FmBPQ\m/rJo 9/8FAoo5<A@4|@` +G2_ ГFaӂ}}}Nb=@0C_;d b`41VU=0j?m?~?<=?w{M&5? srrk3c1g3I"H?҃A:V@A6dg**ʦc%EWğKq3~k`bTh=/KKAG A]1Ի6g (1PFD?g#~y;\BtZQIX>[oGnJQW{&E_{*]jWEдnm{>s|hlްЧa zDM DpG-N`7 PN3<ZA]0F83Axb!AH 5H2 { (JBPTBv=BS,L, %h8΄2n[.<O% $Bd5Eܑ#9H R4"WѵD>"+CȠ48a|1јtLsӂya~b|Xi &`%S+؛<]p8q*p!\ ׍{-xn4^ocYr| ?N  ;!PB't~1Ӊi%]{@7CB'j!2b#&9qD"m!IHe ۤ) =^ސޓ>>4}7SE1=wX| } /32nc4gc`dla|IIi'S2S eLŘ ̕OXXYYlYYXY#bdc9|GfEXY Y}Yֲdañ岝g6NfWbwfOdd>Ɂpqsqp\Xl|K˟+kkm}{#ų'8Ml9x|R||)|'M? p d <"%NѧQ(7(sB|BfBqB' "i˞-M[&jG{DEEREΉ<U -&&."_U8x9 5Ò8I5PcCRTTiXZE:Xíح[#l}"C///sNfj6m{n,+".{H_\\ܸgjfqÒ򕕔5lma}MM-5=l;a'nmwm;noSX  ǝ$z=:s1r)rtuMswwv?aQ19C|G;;yvEv^RkK>>G}| }K}?/P.P;plnPI`oC7\š Ј&5hS1P̎X6#w0N"n_TN|eˉ,IRIIoMR0))BSNC>3LwM=E{u{5?sW>}hYOk:9|~bvy\ܒܵ<߼n/P)8^+(={LKQra-G(Gr|-*STRUJ,+,*k+)/,_4l:w4c~;X_[Z\=vDKXMIojkΞ9{jt3gnU={|.lgym2'8r/ q_8zReˍ͢G^iZZZZ'[^ռzڶk;:*_/$vfvnt%w-uGu s7o2ׯu[v;jwU *^|}-T ]}Fo y84:ػaO?19yD 5/%_6ML^2|j|wk3oޔ|{»Y١g>D}1˧%>728:73OX[^^A@Z*!,Y)-u#ELzuuA-Is&o̼[Z5-k99v8}wQt sq$PU}:K  T|.#t l,u|Z4O_Kx8Ԗ\j&#AF{tng~7ս@EvNNz.-/OKF!wʡ뇫-.-U-˿V]}&_9jM.r]'WZj[B^tu|>9sx_7wݢk溽|gx{>=\|qpH1dӲgnw'NO {)dԎWƦK^;0{ƻY{}K>Y3G뙷]Xh[ܺxת%eoCWY%ѽq*+hnJA|]j=VlV\*TF,[(訬:q*jlњ'6՞8})k7J6.R'_RRКۖ~jѵ]{#{vZP)sK_l<(1048ztͱ+O{4SE^0|~mӻ>Sg9Eb_~.mڪ]/ ]KĶhxepG2gfc"33pY٬i9qC<ڼ|E=()#y3o}j/H]`z|Op݈(rteq\}kbCIʫ ]p %RɲMGTstVӹg Εit+8u;~#凎?i'&+^Sp|Wūyk? Hhʼn @8:1BRCk Kp\ wgEtp(r(b0՘X6vl!1WWG*QB"aN.n@;'!/>߫{k1zYRQⱩO9d݆FrS1 -Nm5t׺#{Envـ{n >\{1s4ɷ 1 5 72 1 72 765 1 509 2014-08-20T00:08:80 Pixelmator 3.0 L*10@IDATx|TJ ;ҢT@ val >vŎ*HЫt $IHO޽7[$@l)g|͙gZ@$@$@$@$@$P No_-D$@$@$@$@v{hY0B$@$@$@$@5_{E$@$@$@$@$`oHHHHj(5²[$@$@$@$@$`oHHHHj(t;O y" @u'=|euۀ8    wFfu'"   8cs9c!     &@R T14:$@$@$@$@$PhW6Q#    *FF THHHH*&Jy$@$@$@$@$Pb @e_D)HHHHc?^Rer(qgsxa" d9eq߄}zS/Q&K}'p#@})dij X?@〃 QSi ry~=&w't[!HHHHH o/0vsF Ъ 0^">3I}Qx<}xa=vzڮ4j` +bP1J$@$@$@$@Փ@xNWS C_Wէ^Wo"zonlYŭzzoGaR2BOԲ:"zWz@h +F;)Zcp0('?_ h@F"$@$@$@$@$Pm TѯP7++[}&d(wVn[I}ᒫ TYB"qz4]`1HHHH8=FWy竁Wބħ' DsA?'3Asl!Z7@'kqo\v*A o( TSW@Fzy ~U7#wWYO oam~m&?pʪ8  !X,%Q~Y_p K*y`$~}v&v[`We{lϩ # w)q Wn@-w88ƥ !#}m$  _^rG$@g{un#dڏ?f>B=rWkP3DEB]+= <2q{&V9b`q% 8h lj4 ;a;(?`T7 Ő΁o?>^A>͞b3Kp,, ts.:?.f#r~$IA_ ڳGP4u$#!Ta$HA-y`w{]'6ڥUd* "<NJ'  Zxkg@A^6^p7okIGRwŇ9ILXqaOlZч(W[: ɢ?3'cNk6 _8x3kjLp+~L si[ ƿԔӞ-Zcq-w\3HHJj'q2FJ\4%亼Ge` Amk~9b/"47<0cp/*UHvL_N|:b3pd <8b8~ߢc?$ i3o/aDBb]7"]*rUFOM$@$pxeO@c]"[Z,IL -&]%Kng' &x8 l}4N圎HQL{x(v9xFO.}ܴ͑X~=c>)cap)ʕGα%uj5 Ӵg[{ld lӚނ?cƍ v>5 0#$@$@UWF?hKV V!>qg@pp]6&[se'+|y->ʬ'E,'^ qS(ͻ1zhϐ!={-F\$l$&(3G[ {㍸0ܘin{|eEz·)L]-Wh\mFɍucbX"W~uV .A(QL2Hї&X; TUG_jB$PM c{_ִa1;v=5R3}PpwBZܧ5OZ.0*`M^ղ6>݇j;W]'}RdQ=0ٗ߮Vy*Rm-,= ʫ] #$@$@UcʩFHjexanHg”^.rڈnEbsH϶ cz`/Fnn ? $;ٔ,܋N#x0KbV 4uFKZ7׿mL8foQ챹5We睎-)(Ɗql1Z2Ea\$֭bo1^l#7Y0Ҟx$@$@U*wI TO說v4o2^kB{ '2C]ۿҢ"lYΑ2]! .+^εvnYBx~`idV@-^ֺh&[9.I{jI7!JWƋ?OC[v>e]qLޒfenmzbHHJ_%/ "L =*-!P|yz`3>Ԗ|85pزB#/@ />1'?㦭=-OljGNQ{z7,RrlOջZfE64_hd#F-.^v TEeKkA%w|\0:ah_]>xWÞ2$iNpު:9mQYH+]dԛa_|Rm\Xm;(./NUY]jrg|js\MqGwD;L7H) =(~K|ث@{S\ ťsuKGi.WOC#fn j.tm^.3HH*~eKf-od #q:+CI7Gb?fjP],wX ͋#\l_UYӖC 5}wkI5xv~ w.w7iF홳0ִj[k-ql鳜 ]#^6EX=FiBW5zoy}z9dHHX%2޽ Way=ww “}1).9p?O6?|p\SǡE| N|~!;#[f,a\'!f 3K 9KS& Ku|5W`Ygy`kK:&; Eac6_o7N[U7k-2˟}ø_wζUJY14r5!H0۷"1)l:ڑ~&!++w2NyPLHi:~!ĹmBKOա.d7ɰExX\P7rF" N^~V kaQL\cw$ gn]zA {/ڹz_ [,Zx)ǂ; k^RӨ^O.@m[ iD?@7 sDsK5AgqڡP'1(uL2e(MMm:2`     rt_0͊ a`&늋y:x2 b,6e?bti.%e]Q(GN~Ѧ j#q[;XC+ɰF{< @y Tѯqggˣ<40B?_gmPl#Ɗ&dQX;Zpb_8hEllf[PxoR'3s㥜LhYBۓ"ƾ^4DO&J:Q|%7ܶD    f={φ\iW;My.:'E~6_gb)nV+ŕGׅ{K8>/NRD{"|j_k'1QmtNm<8Blը[(O ~aH(mdGHHHHHT&rtg+A/b \\ԉH>eY*~nDYLu kW#G?-ųjcG1mQ8Df}1e[6aIwLc01uW HHHHHNѯtrg+Wf͝#o]m~&ZjuB֗7^=hY̶;\wa.9eUn_, r72B- NA Hʹ,Uzۑ=dOOav& @˓m;}6P+Nl4mnNUKԢ"77OjS!y֝м7œ 1P; 16yBǛ9B0%3oy'TLq    E1ekџ%~nҠ/HHHHISپAS> ~3qS2B|zI$P L2T/23IHH&uEreJM$p*i72N$ضm9TQQQhԨt@ H|%@WbY^v%zgCq# eeN!~dsnt̽X) -vCt%}=s/_P"tAs۟UGQG@Xm߯q^Ҳ:.RZhez{c hYQQ:hqK"+KFܹ @LZc;٤+5j=rvDęз yroȂտ"8LNGPhvF?<(It6F$@fͽ/+^6'׮z,mo ?99Oڈ|1+A?!1ZTcɇkM \~nQ"}'^kDWTkJڀSʎzqtyah`ڛKFh7V,݁caC[_:xɥh3Ĝ1Po?g1H!7=@~߫W/X,,X@K袋ТE ]V3Ukֽ;,>s%X@KU\?+ѿ#jQH7aіCشOtRV=T)?t%Y_ 5"E@jPֱN^+@ qW ?@1 \D!c`3I3R`>S ,Y˰zӞ?›vF!SË`GB" }L,d`/wp\7ʥGA8AKIIfU=z.GwOnjB1o&$;b$D….C[۵>z6uD6 丿 rTiiccf]]c_kɣA(e5j}o';0wAl筳zkCs=7f=*?hAO>2ar5{|{\3Cmrz޻Gz∖[o;>9zu޿ c` ^);Zgļe5 &շ/ݠ$;y'w&8Y#ن1&;q LkP|:[3ÛvD8 8FbGFX>u^;2p.ruYyZQ;e!#[uw݅5wfĩ#ؾo7.-B5}Ofx#T!/3 Y8cDz(< A2Yt]`㞇lA\ܺi[H&Rupwj˚,oN "OQψ^_s WO:VBPvUPʸT*QSYE҇ bTisѩirctw!q>f_P,n~YH\:sgN=,>VvS玲 z-[Q~"ڣi-{\[_e=ҾSxhS T?46 ߑ-ퟲDBOUrK!}8 qX)*m.QKNDrHKlZ_ǰB|=_|❳]ӊF$Q~֮GZz2Rտ71'D_&-64կO]Sֱ\$" Ժi2nuqvQZQ?t!Ap=xFY^\_cڮXyB\b2$J޿=o?ݽ,Ni=Ywk;q1Hįz}hVXk? pE-C!m/Z p5#?pť{#wKKɓ}2.LXK*Qey/|.ntWς:ˎYbkLbJYLaZDVibˌH@CyE`4lF4bccѩS'FGCƗߊaT 2lЮuv|&Y#Q?M]F}4){h/>^_AIXnǵm@VNLUk'l5K=ǿ~e}*=e)r'Wkk2bОFBkmN9KSFгlLۉdh=|spZJ1q$ W~}{d֎' xg^g_nH~ɐ[~Q-.S5>1_x`Z1e@k {/fM'!aiGݤtn<蘆-.سT=*=վV$SY[QL=`Wusoc3wٗtFۖ8qStG6ͨ` )"{Ye)wV,n.mY {v};tveZP *qgGKEq~!Ft?blHO?b  ݛZ|h/vE ?|G*3ǹW}L+ԗ6W ӧ.ñmRW/Q?0m3Z!&ўKU(]Lk3ik/TmFg32۳ Q2ٓ+)?QѰ`\!Od֊-K 1kX) M-V⩘ _N>̴&?j~%W;xBf*SMЪ׋c[ $i+1 .b᪭HNNaXϚ Gclo_|$e=VrnFdbޗQe$^{bG A,sg~ T2Sh^o3w˺sqIο*7@~%+O_Ȓ;=VxʫIjҙGT5 '`+P}2bKdZhD̺=S-C2?f!OL_O?yX]h-λ7s9Cr.d&"5V>v]zB!Rf׏^|X)iFv"ֶ^ڠG?6STF5y--4eWKZ*W$&Znv36gnu!kU(t d}Be?)phS x1yFkIheTSZp %K%mO;v.^SP_lJiq6_)Y/z?=6xcZMC9|{LG{;|E23cl_+{WͥdױunNf)GYQ,?LqG~.Ӫ:d'ݏ\Jb׍R/', BaI7ž$Դ|ߍ~59gH pvt*c1w~+F6R\{ piBfRjv튜s@lӼ1=ڋzW\㏝үog-җ}mBkSqq6vExǷ4o/k"kOvb\>\QS{[`i m{`Z V`*qyjPR$bt2+_=s< +=5&h/sqL2ګp*aGFn]Q8Wls1_)i=BLFЪp753)ۧzӮzڙgݺu8_|ʄjouWH?$Q=հ6y+#?^@X8,3ӑݣpAmף2h *yE|BW}_`/PoH^.+9e1ȷAgkj_Z=i iO!tp?O[_מ~?ɵ)w s)芰xNEVe64 VH/e6tQGo\MiNS5$P hFFn1$^`C؋eѪ9636ߌ2[WA8i9C,L_uXRdsG^b&9aأd&U ^ǵtf7Uףa9q\;%j&Wlt [-y0ZBw)o6E8lG_ۯdD <+FܞѮ1P{*;HR cG&|ܒ;,Dר3( _.ޏ3JjFuܷoGkrcZ;,00P{Ӯz֦Mĭ&ݻw(@* 0Z<P䎐g!z!j ۲FE<+E"ض?l6b:gUJ!'_G_GrүAԵjzQ^oo?^ ~{^DQOX.O Ͳɗ-. ݂ݰGA?WQ}EaR/fz,G]Y}X1GWG0S{5bP; 9ƌ-s;9pRfxãd_\9@RZzzSռTy ;\%_ʞE^ٲ5QMSK+.>޷݊.O{1gg"ڎ{gx/ d} ]1X_,}ihR f ]igLwҥڞZV3qCl| 'S\dqO9|uF6]}f#8ix#4ץ~e|JoϩsQYTҾ'p$-W6FtLCA'~&.32lG|3N:5+v,wmy[jM]M'2}ָ!ҿd{5Fͽ x/o0[֓]1oGd6Hf;uc阗Ӫ.{nOr9B.׶q~=*ev^⭣G1V Tn@@u 땫z[w^W C.lVțO _~ߕgQ+9 & ^'K ~_ zz ~^t]wUپن޴{H+Bu X:Ț߰N,MGĸ4Ys4    jByyq0jU.5-? T&+S:e 4iW!    '~N<%    ahװ 3DxN$@$@$@$@5vA    p&@ߙIHHHH_.(C$@$@$@$@h;9 0^0 H>( t$@$@$@$P xrQ_}gف@U@3 2 TY-@q;Ԍ7Ԁm A;~e`g|u   B;z  $@$@$@$@$PYד!    4]0HHHHj5z7$@$@$@$@$BF & @"@f]OHHHH\TBӁ^{/|#] wDN;k <[A@qa (n+7:k[O$?Lx [C ygu qe3 @jE끯7ϗO ns&,!bg-yM\zfU;HmA< `    gt_ gT7UO3R3 .ohr~>珒F9SGa,n@7nm̔'[%Kq@~Su-7|[ |9VچMD F^XDΗA@G~&u u^f\x)+3VKHM:'*Wo۞H߼WʫA-̛*XSݤ < ?*Y(`,y_pgd? g2f1z/e/'3A`;;8Im@ax;{(цspπ[2kp`Ip>0c;t-|/s)G|@{9dm8x˂,F$@$@$@$p6|oï\z~?h+__xR7ՠC&1_ ^D/}{6٪W'vHI|ck95s>bً68 ~e"k޶$]vEJz'o$Rׅi(U=Ǧku<0ُz^ڮQO<^ >TnޏJK$@$@$@$P Tѯ#3W0oml{p5 f@Ҹ"9q-O t,ۑ숫XSy8a] nYĽg@-D܌^޸6LnvUR!}rFɣ>"O<ӏ7S r28ѻ D3   G^ʅGvQiN>Q\xƒ%S68Ο7bλBZ1g$6d6M1` 5Nu߉.# L2H-OHHHHjJ7À7xE9Ֆwß?}qFR^M/2 ڶE,jUp|1݅] q o!O dbu.]Mb\sUo6j,F>$@$@$@$@5@X-֕x׈+_˻7!f^عGklN\up\ tQ eBU,>Sĵ^Y /Wij޴Q4>']M1xm#FK?WR'^)|LHю8c$@$@$@$@en_.p8埮N#}dV+}ʗ^r*i_% )>u%M 7mLy͓|rvؑOvMtlr|Jd@F8D5[x.\>2r9(>=C$ES$@$@$@$@5i7h9W7:'L^nJ ,' cՂWSP;Lt5~רd1c*`Ee"_+uQ2 BC}X׼Zp7v ] pbKSgj`c+[5HHHHf}=1vQ\@IDATI7ǁBdy 3O ,~]f9G_ :6#6Llv1eѩvoK=ϱ=7T\|'ӹOG4    @ഺ;h4s\t"d6 "X5fy7m(ʻSFVcߐd5 (gWIc_WVHmieg> TGg̽*9)h:*n7 $@rc5   83Lk; h}M#    j@F5HTHHHH*BFE. TޕݥN +) @en!o㻁*mʫ ȽPc!;;!  HvTս۲S58 H()P3z ?F? ;J$@$@$@$@5kdoHHHHH~$L     EFͺ  $@$@$@$@$PYד!    4]0HHHHj5z7$@$@$@$@$B .L """ԎHHHJ˹2$@$@$@$@$PSL)HHHHUrP    |4+)% @"@J]*C$@$@$@$@OF3D    RhWAeHHHHH |H$@$@$@$@U@7dff믿F\\9M! hԨ [nBrXHHHH\>f̘A^$p 5 &L8#p*0e!??Auao /)8`DDD`'bC`ax}ԇm ?2 ;cc:r$\veW/YHH*@+ȑ8uTaU(5ߖ2k] ʝb Wcٯs/ƫ~b׷ষ㰗UKmxX,}n;!%z( ~5x{}^g!  D4=c&@wM4O]W??W_Xk<8b.^Z0Gz;r[xל1pK:~MܖpM 煻8+7HOݎb~Ǐc\z28bfI  (/ g= "\!fa  *@FTjCun@7t G[\GBAH۲+y2P-LY{{$~d< '_Y9E_eߌ`Dۏ$)/ ٍ#~n! 1hYrQk&hX!:&3Ӽػ?A.J_QmDxzlƇ/+ImW[: b}s?s2׮ɥO9$ZM[c}=FwQkR)cK>j#n=i/Ə؞z\ZM5[Ƭ}&klˣaFHHTKBH1eSwGɪ= _zN΍v 7 ..=u}HKSnB-4Az:lZufKq3<[ȃE+tr.OqOy6{1]P>j0B$@$Pp]*D5@}hx2;y6[]JIA8p&ojM^WaC: ~{ZGg:a#}R{nFf_~s[ JͲgwbպ'?{ uJT[o7\B_D'E$ݩZ2ng?=t.5%N5zc_߯Y ײXJꂯ/7#.ų|7ynf@A[~KF Wd' 2bS8x} KbV; ixUc!;] ͻ9%{M dxi"Qʫ' _vxe hGZ&ߞ5x7cZŹ%EȆ \ _e,s.k9 cgmJrl/BNⓎ/_ÞrlQ'Fk < T9noѣeq43qDZ:ujAAXf Ǡu}o܇lkK=OúuJմ3dH8n>v6B@+Ndz7|v(͘?U:4rx2sk9ױ=HB'/ir܌'6\Ld(8XX"[彜D|~cs/Jk> ;[F#22RP!bdc_HI؍[c0{cGnoa=^/S%FIHJ7U9o}QWi*f-K]}m嶻ߵxz퉡c^XbqU7U&-_xF=ݚgsS` 缇X+ =ldWGhӷ[7XA wEph[GDO驡x`9h l`p8^zon'!u2|9e/iŴ"\tHټA{dC\Vᇛ;ނ)O_pj<}~6xny+sZxV Q?Ȋ۶^0Fן%G 5@ޮ_`ßnѯ=Kvشd&]оHީҥо$- jn1gT.ʕi;ݟ&"Z-[L 'bʽȵE7%ςr 6\61{}[}o!JW@ݴe#yyYW;'/2eez$@$@UyjR5T3?0~'Mr2dyG/? ; A?G5_w2U08Q|YG5Ĉ}A+0UF1x6(NG:u*Fmh4kVOK\fËr1ԡ~|Ql9d"^faͿ.}dj3~ Oܣb""4 k-{u4}v=孠 CaM._Dxa6&Fvr[IۆhXoI1 7LUiPs uL2MGswu BTcB;c|CZB9K}S'~MǠIDŢ' ͗'}6PьWN7+'>6UQP9 ^upyn-Q W=O 9S jeԏЫ T5W>;vv4&K%ϫr<8.?O_3+:<" &Lz#9kgǎt< >nhϩ\&v,^ Y꘧7FKFwp#~2Gt\NW{'$elL_x$xcWxj0LߍEӿ&CLzcfn%-Sg^tNfMj.ȁh3i"^Ra#p\}68 \6=oe/^mC{޽:KXe\tgY-][EIx}$H(ĂB{~L ʣ]#$@$@UQi]z W y _`,UF{CC-%ӵh`P3#]RzZbCqQB)sqSoi ~[C07+{=k^sG=7k(tzZczj'V?2;h(m_{-:NEO:?Iٯe4;Eܶ-:c={#Luun5@1gl^e95Be0\3}p/x8` $CaȻ[[RPS\wd Xg'Ap8}>Wf_홳Jj[k-ql鳜 󘮇鯵7&~kǑH1BW5zo>h1  GgU{c_kH[T*NJh7^hAξ!0(g˫Eϼ# r%p&GZ O%upcAaA静\n;Ov~Nf R|9RdZ\ Wm(]͆z/\Ù9/]WsIk ¬U7О݈O+DXXhc[c?iVL27ĀaϞ#i-Lu֛qۡSiR bQ ֏W6E|or'~U'ш' qXdɎBaQpm8)yj`U(<2t1?S% bNѯWyI󵁀eU^~Wb}.S{53nN%fcdseįqavIxO}{ٴckR.L+O0QqJ؈ZT,niDZK#e;vXѭpexv.?5CN]2wFtOŜkn,OދNn)0ĩ&O%RM= kα)kt\6(Y1OY|ޣo|իD\@^Ps)q*cŘ0R7/}\-t苧,5J1k~V)k3A`GMk3sA77܊1vr |c)kS iK:~"$+2GKp .̡7V/Wy%HHHH t~>)W~ ~g b퍔0Yp|UE77AH#=:A E"ꢮ뺯www]Ww-nA]J5 H%gιܒ0g3g3|Oyf`3kG~#%uܴ⍚h _˪oE| LYbAH / gmꐶmi"p,wA" &(+wx!xa&E)GF2U*`L 0&+{{*>"]z\F+W#Xû 7ピh ߺOg j-_T oFeeu\,G XU|@Koj'*Mp-h/{_k'S}`!M9w:k׮N`L 0& 2_@V>ȥ`uV 0&`Xgхilw!L`L 0&\$38`L 0&`==NL 0&`L ߅0Y`L 0&gubL 0&`]H.ɢ`L 0&@O$ugaaaw@+{o׬YqΎ;,`L 0 d>>e tyu(s(ի45"8ZZZpELjjHHÑ|n`KFVmm-:[Ws'#W>v'̈wv\n{2f[#鏑!C5=ScU`p 05>fRD=/5 v|bc&Ѯm+ʴ?M((V_p855F;ʸPk ~ZPPT7gװ6CR 1HmZ޿ ld\Tn'FoŃ4

    dm&}? }/Ǧsq[`ϖt@%lqyW]8u;qd<|p{I+nbirԾXhɼf7%bX?{D{ǔ`:nFלcєFM1sy\ [v[ ۓ%+0A([JՂè"C:b#OD-v] 4byUZ Y1¯VpN8VTT$2cǎΦzl;gP _W>0y 2ң[ _̘ HYJin𺑂,cӢPp}O?[Anzt>}4} V:ey1Y7(l"&Įyst] '5]Ot)98?vvܬf)`IG>`{簝oHF!wtGbHO\ڊKoow:,UL ` I߼TাqTPVct *HaᎪذFN>R~_nڭ?W4\V 7_h0 +d nzxlzeaHЏ‡'aTq_|t54̯pIi"ȩE/>;n-ȿxDqGkEH9B#&"nE8 /w\H׊FpzwY0gN(Ӝ 1f|UɎ4qx0"/uz" @55nVP_b }L"hw;#'>y8QetntVf9~'iQ!?[̃kqsYxSa }ݏ 8Щ6 v-65g! 5 ޔ7gLWL<7oB+ctl7 0l!=Bor^ 97}Ũ/|XLl3\%xjZ)'ؐÙz,K=EHK/Ǹ`Ԧ4ԼE3p}(LIgZ%:*F-~I#0tel͙ec#p`)Y14/6=M6~,S훩oK 5՞ x{ GjvVo2'<td,?leYW#J+[MxܿܔlJPL!l-y eDٔ,Vb 4}0,?ge{+n>|RLyע:X#LڿTCt3 %91cJ$E { LY~Uq⁤p)gu6`Wf fYOa k cI7PGZ88OUyrRg>^ܗf*-6M̲E]"fh <7oؖ_<<GBP7EJls5QF"89zx=}KS5]OIד3=n~,`L3XP]䯭bڗRU%یg h!U}pѠH23*4dYdTmXDފܴki4rk8F-bmA; ǜ'@)VǛݚ$G4w3@ Dq3自noPB,X(7"+uYM? ' JFr]I}RrE0ԕKDEuEg7Xf=DJ,0 eUȭ0,[c`*Ԑ[QC0(z ٛ-D°ɫ47BN4.a09~4{:}K4 ½}iI8zSDwXu^uV}잶ijխUn% PkbAS*)trj\vtZ#NGm==C1_1*WNG?tkM[[/4ڬYag|k}sAF?ծ G$J{adn0'Ɋ )Zk\̛Z4Eӊ.*` L78$Nmz"О m<Ƒ{PYudr-)8_@mnh\a{).hZhaeOگuV*IJ>5"8M :8"\'c%[!muC?8u{bSNՑi2:bIN1z/VQFL[OQC!oٖ-8\u!f6V?G.7 M^U_\emWE@ٌ7,'V׋(ÙV;.C볒shIlfD焨ݕgMll)h`:I Xzݞ]4 &n)xquL9i<QKhEf^|PLC52' 6-=&*a#{6IBfdk쇭c$g8i?4:p0ca"2+%V@liEkjqV&s/Yx1bZ[yn~II}.щnEo^kKӷskƑkBMp|1`t,Zj're `7*x1Y VGQQhs3eSLQd3H}*l)'}h֓}uz'[b9p%% [0 Hk> dun}-ԙu;olL9.iRf;{϶˯M̵qQcCeן|{@Sa m׏ zS{e47z= k5}޾kJOc[jܚ5Ek{\% 8*Bّ8 '"þc3mA&!: w_~5톊}#{!F4^d;qh$e,8kiXAH1]{7ǫ$wIBuXp3u}RkdrHvu69}Gቇ+0+8MsCZv5 =f4B/qڏ=EZ4NX3A60e!LN@)ы稝2E]H_+8qwuR/}f&c6RR~ &jb1W4ʙr!C=nh 407)u%ҪG^i򬕖U1( Nѷ8H -MH!7c>;~!ʺ>EփFZ=),\:Tߊ!#rVۓ㛾r⁥ RvQyk.TZ2vyxxH_:s "))Iun?b_"̘1Q諐#FM0 fM@(=ωj_ą5 )ۯf .{r.ĺrYGfN$Uۊ`*8tI9YCFY'igVj*ƱmC Ύn6B_t!Iυ?Ypv>-]e8U\O?Z9B/KoVWoj zcøML |=r4Ԕ&B[j3!m?%TFo5{?r .벯(.o^ sIGUO-k'i5xd]J/A^9M& $&9tIF7e_MMMUddH *lv7ԐkM7'7P߬{#9T{ھ(No'@b5}oYȶQKM!Jk G\69ק6q^>qvOhҦ}ʁiRg9FLLD_Dyxyr{% xhP;Z?̜"ԄNa;2ZS{{3qHn[%%%(-fB,)܀[5FivoWw0!}O<&'@w } E, 'cLg"rG}ŶgZ1@FQ?qJmÙ-_čZ6bV_NWwiF3&`LhESS3-Q6bFsF 0&`L nkYy&`L 0&`)"`L 0&nokӢ}~4֒ksnꢅ%>U5r=L 0&`K>&> u80&`L 0fЧM_7wA,gV4oou+c`L 0^D5~6{)gu>X&`L p=`L 0&` o aL 0&`Kr#n=vոz#_+׃>s׹묇4xX &nKecXi&n^9g6Z=|^qO[5iIRfvES#a$ M:خ2. 6eN٦Zn&{FHvD4 3ƒkU1&t11&aQ^o25!Igm5l5x_xS!|"n ?SE[Yކs+ɍpA*w71oWNnX}Kq1g'RBhXth#I g(&.xcM+*HeWZO22ǦEǟPX ]oA|H%@ PxMcCxq H^ GVufn#RiK v}CNJaϛgKXj|WutrNhD|p=rz!vC]}7z3x=: {=롯(AK'->]1 ǤH/mvϳ'ÑDӟ򳛱x@@V`H*]x}(M9@XvLbL !k KV1y2]4da⌻1лS@(;wA< 3MBl&C`""di0l};?r t3K2ЖbԖTIz"/wr7/AnE8u7.I C}ZƝ:4C1p+JMC -:DfEƺ\\*)Cѧ>'\Bk8LؐW[WQp:Qӛ@UM6NA\S1ތm$<[Pq|.P'J 'mqEGg<kor=q ݾ50$ ;x=vˠC.SfOB7m8:uv2S')nfMAQ>]+u(k>pF=8h/6K3&i^1CFdip,낓gh?{` Ǎ⅃X> K&AW$u'b٬;X璜a.QTCAH9f@XX$bj֬[ "S(gP2f̘cYd<>%]:D沕Zǭh=t#༻8e$)R|=  GXlQD@iolIcF!"& WNahqզK25ܥ8ѕs;z1 )ׄ/b!ZČ mI `9C0 U"1a4歜2qt;qM .o77Gҵw>f=eL t@1 BšZc]a1AFS<*xBR.0ggL6aEcBӓdJ@ʚ5E+j*DKŕ=_:B@掠 !rā5FU}cn|fkX,٨itHf54GoQԗP#݁>Rje@I$̛H<%GS;.:j::Gn\rϐ\҆Z;R!;*A:$8:ATu^9X̽ ]).U!tP[_jOcort9eZrLZX @fU-1xt->9<Ĭs+8n5BŁTĊUh16M0 Po氤kd/}`\.āzфlJst^8ױ<&FK=z@f{]8:зk:1@Ct_&@ '}1?rCr?}HM yoK,CHPw6F~gL XYP,Bhrp:߄OAL oŎ{!G#vE-Y'h vA,CӎM\Oqڝ|ѿ2)nt-ֲL7F=A}u /~Q2p}1f$)ݏ]RS[Aqt!6@N%LWΉUHM? Eyw2doOE+@lwGl݋*+;RKHpޑNJsϿ<L 0 G>?К uoJʁM]}pewя ᣐ7-ИaD2n0KcCX]7)}~yĥIx> zk5iC$= W3y걩i/⽖chQ6fq2k&! kvZq?F1[!nDxuYc<IciW-pV۱3z8od`Q^`?49xim]x69Z@IDAT@j7o#d SpAbe9G 0ouF} ;>L q!A3 qnWqs$Fˉ΋,_),c{dk4I7ySDmm&{+1qk ג_k;!Lt C5CeXY!{:Y\{ȩ(M^Wq&'y)ga-i5i_2^7!~D(l7o\TrW ?ƅ? QN{dAIo!꨼KoCmc|wHDs dMH>jKLB͟bAs!8s`@KM)ʛ4Mk()@ ƒ:c,ZrZjh~NPjvHKN _୽xh.;G^n٦"iq`X e1]іhEW'X:eU ϧy_3of©0L:Xk/|[|$.{:s 0&a)sRM!C᧠l/\}:C?khpP5*~qDcB/׽Bqd?kA%r>Ii;^kJFheP܀Tkh2C̹n5]_Շ#L6#.a4o+OQE^nDWeJ# 5bC\*/m zâvbo 1O5lg kE_F)_ޡNaL t@UzA/&$_7r>Ĥ0׽/oB{gKl֟n^jcu7F Zv ëN/BKǡM]G¾nj90&\# IӸVsuiEa'&ߏgfwOe, 0&N]>/VFE _Q~TՆ7qRcvS5a]>13E?h,|@vqK8n12g:H ={;yV=AG dqmߞNBai 6v:D?iR*cȥ?p:ubF|hִlEyޯfZ񗦽nds[')WuSp 0&`L t!n1~ qlۑ IWVֈ& ;pZZ2*j=p Q:/r߱&Є]:ha'MNvbcX:.3B8 0&`L t@B+[_R{i 7ț4.]pܞ810Փ_'}v@EiAmfʕnvr2`L 0& .kdȾonIkvTMP"x!/Pѿ|fl o%]]_ZqF'f*hk8hS4wnfr 0&`L t._ߞf*>C~55pU|^mPTHDGp$3ߺO%7k M :@^EP 0&`Lvǹ1U?#%z16{ɉf0&`LF-hSw̩2&`Lݧ&`L 0&:ENL 0&`L`#֐ 0&`L tDž`L 0&@'F?G!`L 0&׌~T wZWr`L 0&ns.^?͛ٻѻ( 0&`Ku F{bPM>s1&`L 0K.x 0&`L 0ۅK=KcXO&`L 0&`-NaL 0&`trc`L 0&@[m8 0;@SSs`L R]x"odaL 0&`L`wNX#&`L 0&ХR, 0&`L <=O+ֈ 0L 0&0'>48`L 0&z!v'`L 0& oNL 0&`L`Tn`L 0&0'F9 3&`L 0^H^xRIL 0&`L48`L 0&z!6{I&1&`L 0s;z=WGeM:lz /!ZD&qC`L 0;KʮԣMc AB쎽L 0&z 2DU|߉`Lp٥xnk؝5N 0&\2{vX;&`L 0&`>`L 0&z6{I&0&`L 0G\Zӑ>pDk g FF".Q׎5 k;C?؞^ 4`񘖜S'ͽď>I ř`L J~WIq>&G {~KPXv8/Ȏ?%ZL2K8tNzx:-k+wՓYx]y N΃UߐzK`L: `wXOPן/-ކ؎| o~8 郼: 27m#ý6^{ OFnħs#u=51\/9`L t%wknjMLyYn%Јco"c9Yؗqc;o'7єaukMM(/@X`q>s"FO3Gz dn'3&@%-FA,=c ZE;--M 7rϿ^4mڈ%~\ܿY$l&ZȨ/cq׼]/[rr[4 *רxkEMmFKkHǜэH]ɒ\pqz؇;!#_ |;|= /~S53QFb1g";H(E#"2>S qB. 7щ15ә`L!F0N˿y}C¤VUoh\W{l?ltViz껻.W zmcמ͟[kރcK Nux.[hCQ4/M۟hcƫ{׬œ3۔zr 0&z._S?_c?O&ig": W+%J T1ͭih/8:Jұ_bCzGO# Zwzui̥' `U(95s&67keWډxc|iC'q,oipr$,vFG9Ѧ/2}An94 V[qq^x-F, Okߞ]:Rfk2+Q&Y|_4/(8 GvoƆ)Kiޯ3ӑst}eO}׮kFۇ>x;0hh6#&eڛ 9ކ!|OKAʗJjGb=1z4xz˼~Qe_$Miq,E[]("cJuZ[ptVZ0l4^:㤋`Lu&N`qaLyI!ÐıYYz A@Ku6H&ʹ8qh7VwpTǀ!HxAdz&\>q #0\Ral`7ܣ4^iW.Hۑɓ-YVWpn$@"-*h"JRYpz NOzq\7%vh1hGo2ו]—OdGL U^z2 l% Ûg!V2_[&N{QVێ):a39ո7xTfChLro૷!}Pp]_ i~\5#zY5w`L6g5{"G^ bdZ cj~ً1Ǥ4gy47͂Q |Uby_W4#ڟq_-C)m= N݊oQoaom5Hmy<_bQQ'4E)-MyEgJL)_ A[x_ޭRh?,"FYdyz4(u:o.#;cFZ-H)ob?P|#Q1B#Q5JH_K G08KFo5́ȳ7X*{Er0K 3-'C]lSf/7 ,ܮ"bH! D+u឴`œd|kt|y򎧦Hx7P{Ӽ>B@ }07 奲"O"L< y,,es x&;p9W廿¿/>0Y'3 '#D\bO잗Exm!8 f\1$m=ck(.߿jtXW ƸKwiqDMX=y7[e=7=l~{;npwdMU%:44ԡl+'JpډKBFZP 9`\s۵4n+xS^~r="Թ.ެ"{汎&U@ɸz@CQ,y3! W!/O0s̃xsp^i%t{qq~mR6.%o'=O$.gܧbt +.N>?n;_HF|NjF6$doĪ`2iz#77ְ[[=,r_$|c;^W".-`L 8]n*o ISg/! 0W#WHSC(Y nM:ˤo%e?c=1IY;֚R\/2ocΰ8t8GKZ@]NjDQv:.\8–N{ڼu)eL 0HyUB)30n GĕՋ\^>*!BFdIX)ƍ: (ȹ}[ףVY x{ʿb$đݘ<>@L5bE3H5p o4Ÿw-]5OѯTZ9IbwnE%]NgȻ,2jg_аZhیs'Ii|g9uh'%tsؑC7cdDXo$bsx =o&ehhD\Rh O Ny3$ 2\$WÙ;Äc?~Xm//OHo^אYUûL 0&t/ک֣5ǹǚ]Kp^:+|gMAh#& |'3 wtXQ'e aƝ3> 1(/[c&dLK&Պv~_) ڣ(D#}]I^g5ZeI,jWDl|hO;8<MCƪeVq(Mv [0+Q@sVn.??HN@`RkߡqDxzq<g&@J:"X0~h/֟ک~QR ?'u @o3r;L$1&@!`Wk50k m_q]"ce^-@h%ub+VyVR1*k+!2f 'yuzJ\|Nsp_@W3PD^ӅQ77,~L<M1b$xA;␧W~5&5'hebүy:r,F"%]'ץFEKH"΍˓zu >v-U?Ur,M+?Yg4߇%C=-ԤI:u*,ߌUSҔ.sü M}{>L7-/8[kO#{JZSd>V3;"'$FVd|Ԕ"m0wԶ?JsT8X(Q-װ;^{^0&@O$!dz9IcmGeQ.=S䯭B+}HuC}|Vp%Ou(䈥 oVUH+|+¸wl0Hƾucs04:yz~ }+@okkՄA­f11zۦoz^TM@#(ui}{"CXmQޗwMaJ0+H]o+֜Iz-k7A.$#oϛ1#V-?dHk8}Khj~:?>7X_'^C/.yB AnmzEa.n(‡`Lk%pˬeV3]#\bI>GyϺۏ|E91m+v<+-\'j82Eow۹눾?׿H[(Y?|d[eȍ 0:XPwf\)y^Yě[s2Ҩw4.%i܏W)a<05/MU_d2't<-'q Ok)y]8Nb ]sOX˾0 [/ScL 0GFL5<'rZj7@OKҡg3RbgE!2mlȒ\uhA""MUJ+  ,4//^cJc E\v=7`L7`7]n[`K0&`Lk$`ۗkTfL 0&`Lk ߵƁA>a#T?{PE͙ؼ08MiP3Ϗ*pʤ5$AAA'x&/Ab4̻TsÅ-q+¥G+e꼒XQQ4/ʌ;:omryLG`7"1 6u#XǦE+"kȟQ#s0Xcc5ёM$4hWw<9Og@ڱ[F}']¶W+C^c0wD#3U~hqj#0K\ㅕȢ>;)`ݨSIGMcm sym__CB6)oIēxXLkW[1v\ T o'BsaL"`0~p2n^Tঞ|^ňkRU CY5;ނlKBVylXg7fL{#'1@[,_΃T 1N2F4 o)Cu}?4 GA܎S^g!hDEc/\&Y j0ebSd8{#zdr~R6AZfմ~3NdI4c]  TɎqVu/Tj;‡BXM:.5oLC~^6g)E >eqPA0mX05桰O<";G?ۃ@­ s}m xYOrۧ!2Ozz?&_/ehד}ޝuɳ %ڽQ&zٶCp a0}()]}1i,d\ɘmfX(1| _J*; 6p˒bplO1.)(jDPjnO)&" 3Ni,e[3e%Ui,d1gܕ ,8P-EeDپv+#^ZyT_MxܿܔlJ!PLW,:f2ljlO6hJQ{m .;x܃ s9fRْ1|pIRJNc}f3f|L(ujKCAdk7I< E:Լqؼڝ`snve`Vlz +NER׮Ew5ؠ k_OIWԧ*l8_RwJy'` =Wr[sbVڦ}FL1N_FǢCO:; 剛 y[mȣ]kn0?H$7F+Nx=! /]/t|$]/r'?g|!i Cc0g<;TQs=sӊ8~x})UU c-/n>0[Z_2~бؽi23ҊB8J-F44{̤X@RmI}} a>%sXeƫ5nt͚:"Wu2n&VD'!zYɃK۹4(oC<h-5?J^"t4$C?;G+FZFƱ 10ap^k&5*R1'+0Q-U좽pۙ<ŸquFi<M(K (2b¯QHn?SNχ0Qq)8 7Hd,l Ce3F)hriNuڴz-8eV&'IFc}lIieiLoEDv(Tr7+h}on h\K'<\Xξ@|UE77$HBHB.HG"kCQWw]ۮ]׿.M {oRH!3s{K!gΜgr|f(,b9%y#& c̙3&F5A"`q2;:WcS^g<󕢉+>=1(%[5$ -;[rw%;q5- W:f7龅|~vV~h>=aRF7Q}hVnfp oxЃFlh_W'xA-~DQV {}9kEw; |c–xKۂ;8@ ,8@#P|mRs [m۰},f2v9`u sot޼Wi\Pַ3U6f1 B"nȆo$f*MhfhvSmb!eH?w]Jt(Ņ=[s/ο.W >5 vřl$Z]j'1}pDU9i;dOۄϑ&R-Rėv}||y?n8&VyE{AzԄ͛-. c-MX<i7UL;4/uûJYyyH9VW2pt7}>E_e~]F[]@ -(˩}/JσQj%)z)[_15U#񻒞+jEh'.rEmESv/%n눷~SSqf2.Y߬:5#`kx,2&nW(ɖ)WNj_EuWiG4op{nF2 )it|,wut9)VmkpUm铍 -pwU]4SLp{&!R\Z!273mut*;aPv@+P{a2 jRT鉸hv {ࡱfaCgԻ)ŬjL [cgm  49NJmܤ/o>}j2wn?b_"=QWa-Dr%7JmWLk<8u4"v /\-cA i4 b!%{)n^ O*uŔZvJ{y\-u^3sp;OW:s/9NԗNL[-O|Wb ?uY:)I[a30pŽuytQXpYuKC%Iϙav/#D3b1d#K͢=ji סf)i1&O@[W -g^OyqnV87?JEH+D.oMckٻk\_5i3~&>LGbr >*hv\I\ZY6Rh$ȑ2Z&w{ 8$਼⫼{ XZ# vic^VʪjeN%.2,m\X ={U*Y')B*!)Xw '3[/rٻ5W!]Caא-~B퓓左ݛBv"꣯5/y{ךhD+1 yMK%"8_ 8ehH("L Nǁ 0Q6*D4XVsG'>e2ƾODqH!UuM~ ݴfoaVԯ۬M|W|x+;;99۪ 膉C:@s}yUEb5Jw;8,O:&@'*2Zt} ߔހY[dk]0fbFm7-۟0}i-/*.\V7O@Յhůq⎍Ca46:5ҿ/5C!4bH;sɁ 0&ӎ++h"x[1pj rL1vs̈s0&DNw)h0 `L 0&nOlߞ[`L 0&ף`L 0&= {Wn`L 0&`_#L 0&`L$Fy^UL 0&`L@O~= 0&`L 0ۓ@-3MuuVL/ɛ7+1V(%Uԩ\Wu*8sSVW_’t+D9S &B}Lj*DZn(`L 0h/MxZJZee{NOt=4Dl\ǰz9LC`QUߔZVh]LC7Ѽ<ԏds-U qܠk@6ȻL!ny~\bxg5Ev1AݻU? 핟pO zf W3p\mj,٢aתH_E0G݉ 0&F۸l_εq1.v^+ L0ݵZ}s:y8 meQ?41wRs[~éi25UWѭÕFx;#g?{Fv7k"qԮNo×NJI孢0f <Lۑ |6~Psj[X.+x0<{^6j;T.*D ʝ'O`5o6'D}=,m;b!Zk_H,GuD gmBW5$vNt5QДÓ~UX'r]EؿyR'opEyK+b!>04vz5А%m%ðFFj,yp=6_Ȕ׺aKP.8gxi1[+@IDATEV98\{ =*L$/tn$cjDrr14^<%^@^-u#Gݤ|?+Gp<$dWB ܇aGX8]j9bdJÎ˽58Xb{*,Ysggu$6ϕQevY&=]q*\+r8^E+ζ&'6m3;k7v?qA8~9aۣ~e#nԴI$ieZوMTڦJ pCО^BY9?ku"?w&6VL Q~Mb/?s$Юx$ .*Aw* d_H;<ɟC} rTHY7|ἡ2 rU4/z&W1בc-8'=ߥ,?W I ۤm ܄5nHDSI~ԉ;3@qBOHO[8d"ҿ7PyDŽ z_4 nd"֛T Q1[2cTd̶޳ Cr8=o c&ޅ6eI8D u v@.!)۰ ~1:]2qtNгW,WojQSR&,ZWL 6"$mYJ %BFE \LÐ]в,'_DMD? X\ 4׊1~HD!6UWE Ede 1ۈduݫwNfR9rP쬎p$$ R<0`D}(Vx=AyG.F),aK~&s` ' >غ2kZ5:G쇱J4 UMZoK#eL 4&&1puV 5C~O<#FFc{4aqB=bxwr<S*iؖZg q9>:#Yo~+I:u#{c1r}|NvFOgW\BŃ{Z||@6D۞xI۴ZrеO)m ƿ: @U띚FlWf!OҦ7/g^ϋ}+̖)zՇkfφ|IVvGuR[te7^tJ]ub׃ӹ;ƍ$[k@diC)7MVzr!݌{GL YF=]V۪#z#88 D'QCh7$#b@nV-_ʾТ;7*O='tժeXFWQѶo@bFBQ'IQCtۮ8t*0]Y$I#{!4'<4Hy$Y^}CMYrEg=S̹P,u#sm[gMx; g;eRmMo_K|?~ E'׋jՙ#]Gi) CFA/ҍLhs!Lr?~ktƄT9'ۙʼnM!fY2] ._}ŅVƪ'agx{w J }F4fƫVˢzHWTvԺؙsb$Oz^׋%w k :G]] ̝m[tYt/2mDDɝj&AZQnͲVjTIJDF .Ƹtd`UWG?l>JwҵZT-ӽ{h #~^RGn::@[[UY Uَ7ѧ}Iߖ>oGw::InY2Q+%+5 ?]k?%&t7? ҾͼFN@YM-LwCet'r^h/h"kUQT*֝GJvqםEUCנR[&@#b-5Lb ^1`lǕrJ^[ې*OޡQY- >u%ȏQ'%Ö2n|?F2M13}+(mX;Z1C| w7A/EDd;әWQj ,8jp6cjmٻ;-rI&EIb=ۧ̂4UKy/cRAu e! a-"h#ԅ w`6kFCֻ==5-+k hC_#b'OhkTYegM|݀*[:D NTw⍺QpbT^LYHAF;:i8Tiyc5mcdyupkl9Ā0L~fJT"ND;bf ;ZLIJn>G*loYAz۟GF̶#Fhoȥd=<aGR; METPodzg0s;kdH:<۳;aSݫN_Bӏk$O)9R(!bH ls a4D!\eȗ]. ^wc@2ʓΙ:9?aT2\s.aDE!2&$`n:Yq6[(9dT {#J^R 94n1x/pc^8x"ti$^ND䃻x&n9J`yb}HUos1|y?+'l425W@V շϿN1avuJSm t~*O N~//.3ִ{پ:]yxި=%>`91mpE:^ C@I6|9Oy,=\ͮz(<u/%}c;Ƃ"GߋrVa)nYz+v;/@9iTGEgոg]`bCjj8({ sf,$h=h2OO =Z ^)#n[ȻAyB5\wr=eJaQu"C&c1IW>i<Vy.PQ,r`x;m=U/̈Tƞp7q9IgaTgkȼhյC٥m`P ]LA'>dع._mDr~6ųىAB@`%$iw_0xE/JEOeӣ%96bQܟr̭(y&+H2TgaX/"Ao`Xx-So,jdi8}L1&4*)>NeH";& ms.Iz }ی؏nzc!.8=ìYFco ,mВ~[kIVtQg&fwL_*k.jM.LDD󏹂8yɧU |zJVͲ5ˣ%DIf XkP%%5Sbx9Yf'hݾhTe•tni~Db4н~2yW ;=j ]k;V^cymhZb% y 7dV0 $_#~<`Q/ui^3&FrZYb4_c, w邖^ceYƢ/0>~ɍXaMt&ZR|4IVyˁV / kz=^O_S&(o]F팞eřj Mq^6FO?;AJĎROq>OcOO__iiB?o`ھ0s fBD)[|&jk ZX@6E>o{4:,r/r۬Ow 6 seC00;4ƶLmMyuWW_M߯-ÏKҥ~bcؽ.EIL 0##ʈدK".ʂtX/u y*PO{~lU /K^NTLWic8|q| ɗ_=1M=Lzs_tdEk緍>Zy0g5}ՍΧsh< -U C+_/Č9#uFvȽ0h{ٚp[of 4>>RAh\Ӿ##aOLO7M~rmuqk`נu0&s F9ɫf xṁX2FY8od, 0&0!F ;o$ )(/R˨,wU-fVz`L 6ƝNjO8"{IM2&`L#qDL 0&`L`V 0&`L 466(cL 0&`͌SFSͬpW77~xX}&`L8eG@S)L&`L@{[Q][` >1#&`L 4%oJX6`L 0&`MK)U3&`L 0&ДoJ, 0&`L 4l7*0&`L 0$FSeL 0&`L`V 0&`L 4%6.fL 0&`̀$ L 0&`L) 4|@o, 0&] ǹn3bL 0&`:L 0&DYY[&`LG#1&`L 0G'6s1&`L 0F%FdaL 0&`L`ֈ 0&`L 4*6' cL 0&`͏FL 0&`LQ 8dgF-ʴ4j, & x6*Ds7yYi&`w켚[b'ÿs Iq&`LVpZ,:rLo80&`LphUͽ%`J`L 0:p诣L`L 0&@3"F3: `L 0&h l7U`L 0&6`U`L 0&@S`)L&`L 0&ЌߌN`L 0&MA2k*!s`L 0&`MAI &EZ}:+͛]ovݒX*Tl+r}َngxWpڸ]uRɐ yY*Ҍ-O1 ՗d9O UgL 0&Cµ #{NOt=Dl\ǰz9j) \/qDU}S"qf;9|kҽ*\;9=Tڣb]]u4)wVFWLFˢ`L 0&p{ht pExZ>;.ĸ9x僯70ݧwjgӞVVcHH(y-xn m'<Ȱ@b[Q(jiƽ=f.rT*un[n{inRJPEZw? C[^] TK2j|йK;EbU V}Ҫ5݁g"*  >zo/ncѡ^R`L 0ht_*{u,=i/4/L1XxLc"$.y*3|F~n(S<D/,K#A]߼/7(o13_@p7O^Yߞo n-b׮9/rbtln;C9cMub!.Z)pl7c!Q`s]j0 NE~C'qhe~xiݧfh|7휗 $oB捅I.']p/Bq9$Do|B<η*g|v@9 ώȥjs?.Y [sNPC=$mOՅƲK_o?aux'hǬ'qqGxǦ9 i{ws֥:JmS)"2WH$gL 0&::%OI凘8clĆ.zP%?W yG G*N`'O˓bKc AGyxeçJ=(*¡%%Nׂcwp='amykaI浊Q_yu3%{HqSq}/՞/Nۂwoggcax4jf][^}kL f4J]Qע:tRJxZC o]1א#OBm%n$QЏWcxO-FL!`F'GdIK䎄3̌u17}(qskGlM+O>!ۖMr׺=8nz+z]DGzK>gsRv>6A@ȑxeF_)ΗvpLeO+Dwma}Oqq~k*OH?ǒS.7Csq95k MӡԣR:u.+5&LO:E { Hq8|4ͭ Ñ= Bz]/nrGxC,'غ/bA$5C l:)ydz<0Xkye.;u@<~9* _ oСUE ǿ89orGayaҾRS<30Gt/z~ )yV̉Âx涘eZ`Lht_4L1 xc4EuOK~&3~i [[3s?}Z2\%+v#8eV9Ũ[0_f_7a䶢a-E_`|잣d(s Z8Gm|! -pl+O.^OS@NodGu3"-jXi䫮ն}|&JҾ=-|M"^/㥕E7էڏdoTv0v2E8 + qH}޿ׯ%f?2x}uɮru)?=Fo%L6gfX GW#OL 0&p ;`:k븲8.{7Vz%RBK4B닀6Pty*PO|B, o e>R1ZnRcmxӲiJjD)׽cgh*8&ҠN<&{&W%_%o#=ޭVf۔*4dkYXI$[}8[r3::VӍY]|~X]99{*; )O{CAQ$#>/Ğ9Q_9>*XpKϨ"m݊{OB%_&UEW̜8loD;a}u#Z*zOL 0&6nFq#]qO2``OÂQ(.6 HUD9Ty9)z򫸪s/k7;]B807%FM'T 3 Nut*]m+`}^} ^F8`͎j7ֳBL 4:+}{2݈>ϑot#%ruO+9*=soK#qQ&"e&eIG]GaVH!#'h3N >m#kQZbT_*m;On4/D6u/嗥7/ zeԹqV/}]aL 0fIxhY*J1&"gPɿ|Gɽ 1U?L,~u V/*?v JoчKpl>{W_ū e~q)C([)A@_K< o.Lhe*`L`և #:V~L[v&ʍ*Mק-av +' Æ C77t!"raÆ VoZ ;d{xcl.oӇ@vצrq߄)?)U9u'Ud gzc'H0}?~F%ױ_ iK/#L 0& j4ƳNL1=6Ŀ_<`X*F+䄾3?ue!<<߬ݓ/~=}0pc+o<3C=kk ~IcbTN>^yHb+77^3Zgx)Rg91J]Mn ]"9f]zҀә`L9pX&p ?~Z?"m޼p>oF}:auoc]_BC0 EhiН !+Vr Da4_-TC#:wALh]2-{L 0&8e'kt9:0E <;[޼cm`L 0& pjR5յ)EFO@`LAFSXK&`L 0&֨p`L 0&Ln `L 0&F~kT8 0&`L F迍N&7 0&`L X#F5*`L 0&n#lF'`L 0&`NcL 0&`ׂۨ9&pg3ʭdL 0&Q0&X`͛g퐔͂| 0&:L 0!/v88/Ǚ@c瑕\Id`` BBBгgO5F5, 0&, ,O +nxGe ?s%P顸TmУc4-#K5B(B.m&,Oott|MתAyq\}ήy%Ph_ 斠hcm ߆DgӱgdqK.a 39nS#Q}"Mr- _a5XVYh-@׸OYB܏uU3xd_dL X7-ǾcQO0DiQǢ!bwd7[qr5MWސE9Ww玡;t|w1AuhW_do\5܃B]iWSC.M9ӗs"Ѣ$'0#FӱeL%)U6#ԔPi@o;v7=Z`QFpj%HqW*ݞnTjL P2keNjjւkOB#bՌs;ak3iV\Á=sx+Nvy X*T-q{ 柏ᙇI/EBz-jУ?4:TAÂp#"cРAPTؾ}6rHDFFرc/Κ5˺ZmRWfAU㋶!Q!׍,F ׯnUMѦpо ǰ1*4vMq0?ku׈{>@836댌 0&P˜G[G2d{!.=ipݴ%@r-p;o x!eƚp<4sFZt˗MeX~?CxG?$ w&]}#gG'ƟڡEdEcnȾwWf_M;qŞۏq~Ӹ6/Uz; A6\,ܛjt=B7tl"b1!+lόA4(Hio.=b_1MsPt233Qo߾:)kRN`H/;_^2e<:œ#\7"FOضt#m?hw}8~sظ娬O8z {uOffz{[DJ#&L,͞/瀴9ũi(@"Qm+ $#ʅ:A{㣻멯<<VyK!tà~}gLr/@3jA=R|ܬ-AVa0bkP:/$vEt+ SaOQnaZr**BS~ohn&bHC Wʌ ci(tGI:}j@Q {%2ʵe(,…P=#}v-ya Whd%պ $!܅SRk|an"}#: ݂ #O -.qFu^4H!|\P?CvϋA11iW1/{[AyDPk3]՛OQ펶z[[_%bj5 knَ&wBY-U=࣏vxÒ2* !U4j;Wй>CrN-&2ZT~2P]-zyk~OsL(g}!ZɳOGrI9 P0c0d6Uf + Qm[å*G~%_ WT`j|G Z%+>IdXNib4#;CCpA@nxb<62C2qJi64qqC\C?d$G*t 2䋼L@u16HƎjj'g3Koj4 ,&?=le6U 2Ɔ dJi07|B٩ smP WגB߅71܃)[?[Yѭ[7IRJkfc!kpHj_Y|3b$ Ўغt7P㏡B(1!R>?o}^#O`VG(ŞKqUh[ru~Gٽb.;O.b~K)~?Vcl}b6j%lNYVnVY\= G?ϋ8w ~$v@|)Sh<;M lp3~&cq}URf$8]|zyJK]/?H׋?ρF fc|TFEByeZTkmI m|U 486!WWz4F]_Ls;Zx꫿ yJU,VFkdG@J@1:O%3Dvh*-d~fń_9*~kJ+n(z_ZzVJUwۚ1(%[b9l\?d`5Qf6?O#ݡ{ccmԧG:_h~tF;uԊuo QA7)g>9Nq_-~D^_jĭZk23q*ߘg%ޖwNoE?NhMa p5;[+h,%U)lٳ۶mk] C۵ $%E_e~]F[cP-싃˩}/U rx}^W|-B#񻒞+j]E4X_#yJdm6bj*ά_E`3Uǻ̈́fp r~duAEHQ4Qcڑ8[{ryϽ7u#|`4:JBwJhVW5*FFLN~ê.}l|ՔN#oܛӠsJK u^KqvJ<~Tːx`|JqI7 %*+Y)D\4;TUށ=t|+6rhuir@LLޅG~a +X΅ sUm!(!TjbAt9g*jhCdp9ndgbxqhD&@_yl[8 &U]'`H8A9um^?c1%'l]^^4\-uz׽h3Oө8s/9QԗNL[-O|Wb }鈟:ʬ}Gonɧnч^${S=m[Х$=xLAGΈ̒Xw,6!^ǻ̓JK*"(cwnl= (tZ)/JҺGiy%d\! (Rȥ|L/{7X{MC_քjcѮ ~1,Tώ*>Kz_NY6Rh$ -{ iC:7d*Wy#ٯo0ŒQ|T]_Ew}tc^VʪjeN%? }=Uee4YKl]^?ȡ9zV!6;B?E/2ڻ5W!]Caא-~&S[ӊP95k"{חi~ۼkGh{x7 yDE7n5k?Z' 08ťV47d_~dmG`}hZcx'Wekh jzd:5\Fݝl'w0"%; (oKHƼҮVvv6rrFAAT'o¥=<ڬ%#ksq Eñ9gtq\(a~ԉ}RfϏv9H͊mp$ϑڻL-rp6tNS*oZjl33ی2q6kEsj q99\80f2" ; B{t^X4anSkȽϯ@W%Bsx%xI[suU4.F6`LQePo wzb2\1`L 0&3Wxx؜P]tsKfۼGL 0&`L&17,[gbi jb)%y󦼀c%jWcc$ַ:+\_Ӫ KX2uN: q+=*刺<$33&`L 0؄E@H0/+sR|끵.axw $R(i"+ED, E+xyzUDQ()]қtB -$$l;gfgw&w'sΜ%̙3a&6/` &TvE#&/Oā+32%(@ P@(.gc΍xce<%vlXrx@Mc2w^bW&aZyuO_UҧŽۯ)@LJ P(P_j% 1;T6at_Bc#`\,89g\5kFǢo&<M5s?t{iw+W]ClNʝހu$#fk/`ח?:sտh\^-QUPuhLq6lPt닆,1Og C\W_EzE P(P1|N9e;~w?X 1D*ߣ_IpɛVh1] st3!>~+|tFN_s"͎E%/N~D,''9$#Oasﱹw;gG('1i?ڄ<_sl[V8Yᔝz(@ "#-Zj 8} ʺv"P>ؖIJ pSjc3=;]͔< 6bh48Vm8/?IftKuG!7jCჿg]Ǒ͚^&R%=X7_ lyXD{;֛(@ PCȃTze/^kZݸ)e~n= w5V6_^}0%PFm:+̓b\\9fY?MNkx-Qᶭ՚G^o<(f mhyza[&PXRyp?!I0czJaq_};Z> ZX_e. |Zw˱2AI;OM8'j6isD;*w| O4sj)ka#_1k};$2p\f(P ߍ kc︮?oZ:J- >2D~D`!3,K#f٫jɪ*tCvin_G=xG>^Dz0~LO{y&k qW -g :ʱk(7>3ŕXiTn^ NƬeb!1_gRN2F^߷;qndب_Q1يţ@@i,6Ul]bxR2tBb@: ˫&{٫[ggL ϯǷ[LS# ݂ٷ6ڵ3jֳ1<Ǒo8XP@爡u7VLɅ%*`V{ݬ}pʐӗ*]s nY'(tg}\YiʨUKƯ25~bjH\2<<`R;SSrGP-~zaСqLq[c\,|4*y/yox?"ǃ?7J,%֓b!s.APuLҝ)QxY,b:ߖWl=&}ꎵ}w=ZͽT}~s }vVl(%QcѢa$_CNH=?}w@[.p|J{EWl{G0K EL̞MTvhܬFuWj5uFthўmЬCSqPT#-͇ĢU(۱vTBx"uGXFwOgӈMB5E@?[= ш$KHF\^VWǿ? jgİ-{c@бPjnpB{vhOvqi!lr-`D1s1&_+zi|v%HN P 8Vlms#w"{mzv*Z$ά"\d/)r}t4W!]Ơ5αѯbRu:Q`WieV٦+pk9f^+7fW{t$͞lTIW'G7vr6YOaͦ58~*[kxNIzд:y|᪎>ǴrW|C|1ވu`r 7]yA\[Ǩ~yU`m#IZɕcZVcuW 0Հ1;3WAEFTd|)W] UoO--Hs x{-P&W._=MvתG|ꨕm؝h)<^_tU ]>@Y`_^1֝A1h PLak0E# n .ul@ P< 0/GĠY(PWOq&3J}AS( +j3/naO PJN@=tt\(@ Pʏ?^KE1xWcvR(P1CQ[,\&3y+NEk<\(@ Pʏ1姹l (@ P*=-(@ P@`_~%[B P(@ p#(@ Pʏs, P(@ 8`)@ P(P~cɖP(@ P~,H P(@#T~ZÖPW(@ U,(@ PX{Ja(@ P(P BeP(@ P 0/U(@ P@Q0/ EA P(@R,V(@ PE!(Y(@ PJR|pX5 P(@ B, SH' U[D P(@-\GEl3n\^[vQ(@ =E+Q,KR, (@ P(?~Cfiqk [CQ(@"NY(@ P(Pr KΚ{(@ P]`WعS P(@ (@ P(pWv(@ P%'䬹' P(@ w;(@ P@ xǮfY_V1jxl񱘰'2Wm1Gߦ>w!ޏ~ ?zWE1'ˤ(@ PeYȃ~/[+~xA?b䋟* 323 בo}nnOg9OsKn^dsO(@ PFȇS_w[%ۖyRPۢ=<7:XA7d[qc?2 V|,:O+S(@ P yOlk`p [o2~8CuSto9=^,M}o`?&o7xHtsC{؈G0G-o'Oz6LSC:"ѵ7݌DFW.>4_ 7=R7(@ PXX~9_XROqLo[`hކ{ž wڗR*Q(@ P|xG޴+{卼Z/EW rs]_pC+)S/mİ]"AH7#(*X|YI;ku<PXՕg |u/ {/7Ҕ CxXYmLSrB P(@;(_ ߱r$1w\9wnƘ#D܄q kf`\N۸͞LmJ#yodqzpǂ(6T> 5IcП(@ P +PA;녭we_HO 뼟2hQyʓ%[1@(j-Beyc9h$?m߯SNJd5_!ً(@ PDX~Y!W,w{ƴSu-,EГm4s-nPh{dwLyEyEېCab[J.A 'k'}/Clitϖ+(@ P3b e`>g/a~i9o#zBc~4ݯQA BmǺsP$fC86}tV"܎`B1B?E6u_AFڗ-ZJ P(@ أ–O>|`NS!f;x%Syj/8!fAx1>K'L]@N<~B*%V;c;% k@Aol{;L)*`@xJ (@ PL`KE$7I~ Y|dɯ>Oz7TbhNP-mP^9?}!j xL߾ScO]ɘ(@ Pb X/yri~*&y1A1H P(P~J4/?l% Kau(@ P@(1 (@ P*wb P(@ &p6(@ P 0xǜ-(@ P` +gs)@ P*ߢ/Y+ -. `(@ PJhޫN)nBg S(@ '_s%0%t]YD cSb(@ PeY@ùr Yw P(@ Tp}{*8O P(@,,=֝(@ P:@b P(@ ee(@ P!_P(@ P, 0/Gu(@ P:(@ PeXGRRR?N)_1VS(PP"ôBE4IENDB`django-rest-framework-3.3.2/docs/img/link-header-pagination.png000066400000000000000000001057271263353514300244740ustar00rootroot00000000000000PNG  IHDRq iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 670 262 d@IDATxXSW ,Q=몣uZGVZgUkնvX몣:@ֽVq1T@$@{CB `J\T5..^^^Tz  DS hS LS=rD#&]]]Hd}"@0;lj sͮc(o04$BD"`v9%;Dnv!"`͂I4SF"@ D YzyN D%@"lO 9F DKDf=w9 D"@̖L=5 D"@J/ܑD"@0[2[W1"@ @(xT)xdxTt,%Y!wЧI Rتvr,{tK#׉ D կpCEfbX9:Z6>:Gw8K DYu2 JaxVJ.]ڻ2*xMzzj16bsxS:aSCZi h)-ͦ7d>$2_+zO(YpC|D 0vs+9}CysKYTtykY&,SqḾ=lP* Q &$Dx6 CN|qs!> -+׏ {Y!a AnBy@ PnV|1}-cX^;u *)mGkbvJ͈T7_IX2 O 2EnP܊`7KْͮH7>ٸy]}{=|R*rQfQ(3u#y'΅]9Ĺdg\W+Nǔ %0闙:G?/=7FwY:2r!x|ZdL DE@diWF jGlm D+++xyy!>>*[5K~&pC\ ߨa"iH D, p*VB[;_ۦBD"FY2uYU>B9?6 kH' D"@`Dl"5?P]AR 0 q6b Φze^8eJ痡gz]l:)Y9XL"T1uY!ƿ"8B]B١dq&κh\m"@ DBD Fh(\@FLg#p"4b8#`qSJ gt2E D"&@""@ D )$D"@ I D"@^jªPvj&#3"Bʎ4Bʎ` eGAeLP|#x`a|^4& D"@@1 YL`, D"@^gECK;@s뗹#5~?Y(%cܮsG`n27PJƎ]?ODfɜj"@ D0il$&B&D"@ 666,>Wdrɓx2G"@ D5#T*@zz<=RsEf\\,,,`ggWv D"@@z 999pssуܰ$7DE0)"@ DCN,hJsE&g q> D"@G0hE D"@K0ԔVVV/e*"@ DCMip9a#D"@ E!@"(, D"@IHd "@ D̢ТD"@ &\dٓMj "@ DMLUXl U[Uķ 砙 gYfDv=j;;^؁Ps:*V8_XWwvoهrѷMWL Db" P$3+0РAm@rmUvr $p`ǎY<]` '$pSMx|Jء^5Ӆ fHҭ+c}֭UXQ"@ DjD2b/ E*E:f؉-'[k'Xda킟,TL7&p* M'@NP*"9x{h`9:7P "}rۆlPf0~O\J> K?l^iLQsiȈf|ڝƴ-M8 KʨGm"@ D?/ؙO&caɶ H_1,QFD&ٖTggLڡi#/BN3&F# ]AUee ,j 擳Dy{?c-~`?a<=Oa5e\ 4 ]f!T "N煪&J9r*bXAF DH@)RG=+11yO*Zea[:Lt+71w_@h-Az>N!u{NX{S\w)[WN!AHѰ`#U D"@@I(6xd=mR^ǘ0}DYjL~3d4rb(a'@G 1_אni֬~&h˱{wgm(pzRMC8w#2K[xw[roDy8v tD`ݺ&sN\vi̊ j)"@ Dl$ b9H->AH( =Gu^xjm_"/\+ u Cln#;мj)DVjܹ]Ĭhl:TWz[|#L rKk8r$͟ZZT swsZ=f<G,i;@D"@xA"KFFX>z=\dY/U K9HOQQ&"@ DzLl.Xš  rO"@ DճdI"@ D`OMw6 D"@x!$2_U"D"@0FD1:G D"BHd6D D"`Lct("@ D|!lT"@ DDR4f D"@^SLkk)23)"@ D}rpz0=Wd:53K”Q'D"@(8]Lpz0=wrdbb*d2a}'D"@xM pLgg;H$|LZܚKi)_AʎPJ󇋟B#/lpg t=1Pvz68AP|]/ NhiD-A1C#Bʎ"%eGNe  P|#HЈP|cqI(>BSFIdNo"%s3q.% ]ĹdL+t= E%ej"@ D Y O D3$@" O D DN@O̓ХRd{Ek8ç=@(u8+^qEQĹXjg-b(+-H"n/v"2]eP"Ʈ&0L0+߻Pvz.E.R=\N@SY|ĹZ&κ4o8[]YFmck80}̲z̭_闥/s8=sͭ_$4~?陞kn27L'i1N\sWaX%ZVJT"@ nYI{XYYs'񰵵D yA D"@Jntf,KKsEf\\^u89K D"Pev\{LLG0j D"@`nN/LC1l D"@J?tI"wz@ D"PHd$mj"@  ɉn"@ D$ ,I D"@^$2_M$D"@@I Y-"@ D&ʴTHMMEV!'SY\ z1ߦ\zN9&D"@@% 35 |4 /ԞƨiE#9;sr 1}A4׫[ 1=ZWW^@KfI=쌯~^s)X> N;}U78n:]rsi8|r"o-)>xbTj9x m_J}|i 4A{Az_v͇֘Y#D"@@# P$S+T*PpQB[T*r3Q~}T%f\cnnz|y[Ia&M*i%̞8$eݟNo޹|SKӻIKbSͧWVӪ\#tj[IE hERLf& NDT*؛* K? ̾LH{D"@@ 7^*}+UnZH|q شc/u,,h Z]7}0qz,^4rH\ WΗNt!?a޼X6,$6 ǀ8|4F}⒘UEcϿQYsD|ގgٰw\2co?F'%< }y`ٜ|V,R%a©A:rY D"@CiYR@/+AGjud޽R̂ M<5PkGe6-TwEDDu-`FyrdԤl^z=łP&"ci]\G<\OgPduN ^y&pՊ?FoD"@( DS $f&W .-մrގѭ$0糳mt:XliG0iU5 \Dq;sl m΋۴ޅuu= yI'(Gs1 . D"PV4'Sy8z //(+׺ҥ+>1+Bw(ҰyXnink-mQ.bwY~=Z91OW(ٸ#h!շad$~71;ҹ}%Y ].m"@ D4((ppwhF^`nŶCaRπ"I?CI1gm]Tb9q=ϥG2\HNoipwz=|K`~uވA)Zؾ LV;*J*W T[q;u ^T}c#OR=>:[0_ D"PWN&V=,λ)ɽd3"jG$QUt".^G QHɽoŕ,dwzkV LWpi837?fl#xdչK^_]1#q+#8pC DRJ@n77JRBVbAfOn[G1:`'-n"D"@0kqqQ4 :'Sc|L\旞L„iYSjS"@ D "@ D$!D"@ EAD"@ B )IC D"%@"S6 D"@"@"S(d"@ D@K@yh0l&Np+갤Gc[fMNzF}L,We=¶5{-N"@  "r͚/e5n&$7O\ӧa{Z{P)7Lm]+)v2W)"1c~l௩a؆xqn{ b3|'Gq*b)f6ǚajXf/Ib a:f='8кw5*Q_ǼлAD"@0[D2!rCq]aHWÆЁ[ eVCFZ.r9;:X2v^°vb/ۥ>WFl\Ha*K5ʆ/,%vb3#-.+XM_1 ^&P*Dj\/A_#('C!+!Y6.h/chtVJ Gߪro?r`+*DGoD"@xz˖P%M*7Mg5tuh%wLduh%rb#| 7 hs4?ϳ(jR`q8^EIw.GY8{4lbqg . DeUw;͡|ND]ס6WЧ:m*8>Y D"Pz $2Jܼ4 d"H LCmXno,ViT /Ɵ6W1]\  zTLxe6g%DT$mX4(q/ӏ 2TwlN4ZC#u3Ԕ )Xr*Z_hr\^\x D"@J1e}s2-l=sDt2pa~~/orDrnBl-B IEFm, ZB1'0r0%"@ DJE2R7ϲf˷Vjcrqqr\ Ib0-@gD^`X _r=ŭ56M@!`ospxryb*x6}|& Fs@;~Mbw+#9!"+?̘ SgC7y}m.R9S['~$vH}m"@ DX2kdd \1)O.OBa ksr9RcБ85DeQ,;6Xyoݵ=jн3ڌ;E-g8椇a4Ԡ?xx?sQz DyN*k~;8:AxIcP/-bܙ}Ly&?CPfܺpkaY̆3+ J_q_DBR1ҟןXw% =V ᑕ\G˾1utXyǃբω ɨ=|ѾkA+qs|60,Z\g|*_ϙ\a['L{ ƌSvhER0 Vm_s#Uk6 Ӧ /YB/ I&j6m&jKo!$K-vlz5d8fT!.X~Gsri{*;*p(:<1^pM(d8=,>2<=lP #fw``MNN'DVM]t {cٹfwb%B-?.Z A"T>X1;ohw.,ܣ5uos!ߤnf@?탪-_ߞ7ܥ`h_4Y*#!->1꾴oٔU_A D 䩆pR)WRʽQW̢X 7^ a7yY~c,9_afsNZ"#Cph!x@_1uNdKWJmK&0~ǪH@@?ODɩ?\fE̦iMߚĄkKGÇ0asnr, Vxt_/{ugӡA'y# Av4: ӧ"%+MKɱih֣6k#V9(wBN]xɸl7ߏ$.b[*NYv*N/7=zϿ F5O2giv/(*kF 1l?m,XVmg3'²!X6 w{5S۾|7!VHAok˫S+8?!.#[S}*pt)⹯"6e "@ fN@,(ug\߳°r nCjos;<2E낏X b ȓLШ~$6'XX0̝^8b>8Y!C x:e0qmT;uѪ"Лa9?c0u`;xDE|K^ÆĽ*{m9/ަ|˻ *{筏ZX@vIwƔRl>^kX$* ,]};AM)v\b?7?m>U %U K}k'Tk>l_B"@0c [ÓèD8X~{ԑ {7Գ+E*eE\T1WӒgg.sp8;PG#CJY4NjXd Q {L+gwlFTl57 7 Sbko`+ (r> ٚ:I;=od/d5x&n$q՚Sֆ*K=> :֜GeFj?wCҍEgO }KAl!Aܾ73'6x~xfOu$NʽFr 맂E3嚢,"&ޝQE|AA5n9_Ɇ_ڟ"@ fK@ ;)J$ zN<ɴD-nx G0S Y* R(gV#zj~apS("ּSUA.©r[ۋy{gm3Wqɬڀi=nҳ#XّԔ"0i8wl5 XudG㒹Yy/\țR'$-3O=ƵB!5^>CJ ZgTtkAIź0r̙4Ҧ% E&cgwz/x5h)8+WNbOIv Ij.`s;9+oWn`)/}\- E:x'|Qa΄ ^/,jݠr14,ǀs3'sw0q86'v,lmQ}̆ʹyĒlV3z{$P*2ncQˀ\g*g~=uw uoƵ"|E98r%B{s2# ,T]3ҙRGz!'+ cHrs ُ7bFZYLڗĠ>s o;l"5#O ֦XVX,˴XvIwjY=v{'h߱_W D$<-\I# јO"@ @P{TQ+&/Õv- 2t4- jokS %ꨞ _BĄ8%'xk/ Mĸ35\y+D`-mj>m ]Ɔ|t;k7eR' ./AA1|x{U "VuQWuE]{6ZiՖlz$Ayez17(S!=ƃX1JwdFϴs?}#5ٍek=+,^Q,`Ć#PGLc:X.MGq+aaU jF9?x`7:ub%h׻Ͽ#oq 2llmX=̆WkmZ6;}Wg~5aPndRj#%$?y;rDXձ&Gp; fW΢DI!W&bߢ'FZh)8/: ģcu{\j|䌝H!5!rjJOU\T1K kK0q56~ zUeQA9lx}*;ݳz Y*,<[ERee2!Y` /y/r`{k$Fmĵf͵6͢GoT) y #W٥-"@ H ..>>z XKPq&5@LYUɆsTXT^WG.M[D"@J #B W@ntޠ!"i9yxQI6^DMwg =&WcТ~|yt VU43] Dד@AL@&D"@` y "D"@x |ݯ? D"@bJ& D"(A1ѪpDSyPq'b^`<w4_3YOc 8ykn=GfzJX)U97+֋2K%hBEu :mwm&n(3q3nݹϭbeZIu2 siM!l)b"o69!' Y#DHd*iBWzk@ftT(G.-$ R?Nہ ׭@HD_oѓ *ؐMXZs fD̛X^:΅dq"ĿXv-tN8,ee׭^5\Q(ǿy\O+I^ɡXU&owU[8s->/9[`O}᪵-{SAn=mg^CXfiM?BD3Ah>?WU;+-\𨸚~IƮ43b֒18f3"Y|<{=`?˶Ei_)pvNBXJ[\睘+)=n,R!"@>D&zQ0ѣ2ϰG+~_6YDrJlXZ¢{bv|F|,BY⊼2;e&GM~[~nWS/expjDXy@o=k\ .Cc"/Nhh;^{f؈ŰraC>95Fݐ+6+PUc;7ʤ T[|8aڰ%B, (еx^p;3Ŷ181w( g}wM"tw 1 튺PkO{hĮAŞ3eI?D-~/[G[Ea%lL\Rbd[5ŽJ"BT[H :^ nQWpCU<{Ơ34jɫVn]8ɵ0k,0s t4ly^Cch|cOnlh4<S=pk`3oΩG,j['! g&`b: φwC+mY{8 {Af< W숆ta6Y8xCPtF+ܔ(Qmlq]mZi{VfCȏawf_\+|? ]XnDQwgpon7<ւsH?IDATsW$__S䗵ZFvR0_Dl]tD'¯ny{7v/ehѴ RnCIO Mm hwmj n:h* W=r"fk~Tء'pdvTc$]< n{Q [O2Trg85މe8wzMʟp?L{< ن}'"ܙ _6MKr v,_+ѮU\r;]!1C!wvNum!nZ?QCC%_{Rt>N g7))4rw R7O$3;*T:nY>űq#-q1[1忱j>g<޹*E$܋JU1mX;ӟez%3£?nw ُ`ΰ!fSݴl?|5ϻXи䪲u9`?rweU\c rƖ݉G[w8ĔabӼV z{#Z AEC3¾$gcj^\J6$oE"zLd>7F*[[7ãe~EM9jOr&~r!/ Aȷ62bl"_{Zpe!x_Y!dQ8ѩGi=Ņ2njԵJT, hv!lWH uF-R/t:>.!*)oc[,4kl?%n96Pq6ꇩgΈ FBĢr Hf34gFE S8.$(?8k- \:MlJQ50W2WGxLYTif'FŹ# $Ee!c n8qpa (~0w3OIǑqvnhF9oNj^*G?r?Ǜ<{ 嚰m iYmǣهށKh~P|ڍK[zc᭝^8˔cU-pԡƯpkSTYёAF4΄!‰E@C߁#7f0%2 ݪ2d>)mR7sBSNv{ N´?;qwЩ/\DQ0㰖fkm]JX>s23+Æ-ٿ%yd%Tl?مǖPFcҽ+1:Us){^^ 8csQݚe;bh(m3k1jWOS:S z?bsh}u1 jTƀ*1dM7+5J$wv=@'rZںӎl܏H16|Ltgoay&h׼6ULMDDf`WEtzeĢ]~QI ~EM&c?۩:W:ƕi!h/7p?8,мF%.Vӱɢ[LTm>C#\>x &2}+Z±Z5s PERS\٤2!Za: Rѡ Pl]Uҹ>ǿ81s*M~~;D SҢP>7׸VwK/ 3DXލ)pi\M+b"n3ԁI\%b$[7,ؼkzd^ ߌK#=cُ xYǏ2揥"<Nw@sV9~MQ%]Z{~E:J2MvGcaG_`ֲ)ѧtmm9+X?URzTBjk6]{8L`FVꨪ^esPϷ;QmȬ?^D$9ĻHk\Cž?-Bfơ|Tbm&Y8z[7iZ)Q(zu'm|-jʆRnNZ*xA mdٸ=΋FEXowf3=,m]C;KХO7&{2jxO4V]d7YaY97f۰?+q*YLdZkqtf6kmyJ97xXOUxy;j\Ѫ;mh-bĪ7{,rUnPh  ꁒ qvs2HL."&Dx;4~NIξ8ɥPͫ&CIS2s"egVۗ&c`: g}$rCۏ>4H;E-DžbX)1o!~2< Y6Zs܏dwW͸ѧn}~ ҿF864ˑGy{lzɭWamظ`ْMLjk6Q?^J(w,=Þq;k74bkc#;bоOwmlpuh8[_&U_DS ˹֔͝9P'狃-ᇲ岼o;!".wA7F>GX/c (| +G{IHgcΚ/kA"@Ef%pƨ({.l#נX}>oe?k[Ϥ9mqla}ܹzǜ5`oz55yn O03M>u$"*E4rNn:y!5ߤ U(YEYDlKFo PMi< 6R hѝP9/Yi#88Cܜ+ WTB}ؼ>(v0 fST,ZZy칂 vΠoyһ,"vU|Ϋȶ1aM>3-Vgd3\{:lkni9O&(m:gd#vLU¡d" UgpI3G+T{RGd:4>+EO|C/L3i埨T5kG`~#cOo{6=_J8z$w0m1#NRX!{i* LNs!zUN`# j+ٲXXOG~^'. Ga\0vC\?F‡iʝ;wOa3Gs0~l&u#ynq9zVȑa-'D,2//.JR^_bԨ/bϻ`7Y7-đ| j6/R>z-13y_'bﰴ yH;`/."ӖGT:Y"{o:8Y&K7]en$">9S_\) {QFR(..sظh\.}sLQCjgV~SWm/B2ōQk(=~CfKBZ /D3!{^-ٴp4#E5rMU,)FCŒoؓ}{/\O.q b3pM>%oxjנ`]9c9 > dq9qWRujHб]aʌųTX"hg8X4c^g–Pm󷳶Ҙ?s/&ҢNaX#l[Xz6ς#M^ܝ0~= ~5?@#|~< ktHc{#꽫W5]-ؓiwfV }A b7i7mYSX36&L퉡ӷb}g;ޗA{wvѓmxqzC.*5i#'jkR=;mu7ϢI \m,wѥ즄*2=\蟤x9ذ+ыpbG[{g|@ NxTU3IHH .MQQ HQAPwE\E "kR-(M:H0 ^ 6)d{ϽSdB!!s=w07V[('iv>}HAFaynO I?VxqvZZy=-4 Ih#\1p5 k[Cm,dNk~8Ϙ!QOoa 쪔 \9GKs vl )G)̕ɹ߬X}vwق" :nA,mG(sOufpx3W?^c#J.`NfȎ{EeI}X szOջw_cJ[^a(etJJgYdE6nO6eh–v_IbΒ <oES=>ғGģݤ!Rso`ZG"f&?.‡yIOķ&(\"Λ];#G3Ȫv|Ƽ*&>0]X$r]ĵh;(ms5",iShK0/bb܎{ۇSCrGƷǡy'0hwsi41`:F&'#(dê# 68]C%.oǙbq58 -B?Z9C=&C臻8}Glo/{O>z#Nʥy>~VDAUf[ [`f奂,Txk8H8jh"t,vZ?;iu=NXvEtߋik8׻B<1|IO^j|LGm F s= \{d5#.p+k!)StH `==@Xd-ݢ Ls-Vkbػa?։];!愰v߫ik9=/(.{Rp7m}ԩUkir/N.D0Uq_9-`Lv ">Sa-l ?qLqJqto4OvNԋ_,moݧ'"E] 0&7כ0`L 0ې5Y[3m`L 0&P[,2kK3&`L HEf8`L 0&@m 8l ֖ 66 ots44AD:BM8:v; aM%ﺯGʡm>n̓E]KtF-Kn-T'ho9.׾t$_>`"_>8lYi+xviGiK1g\;<1?3Y|X؃ ZM^ ,Uaɼ82gj:#ؘ6D^2yDy^Ѹj*<7R*B;tl1ه1sVv,fxVOV%:ǚ(kauUS#]' Cf|ν0sPٸڞcS `6,fj1Ә0w;b[o wo A u-޹z{}p> IVv7~͖}teiXO>W+ޅc{ q_KJrrqhRWHiRڛ%H?`L"8IG1 :a=b{r?4uVꏌT!̓~ASSy |r }t-}D&0 ͗(܁_ B|Q$6ǖ[,jWc}8U/O=ǐ_%pu`}i ok)Yn e2YeiOr [gD!"kᏄLD,iKE|fdŜ㧄\ӘZ<ǶICеU̜/~y&| _|;>aG9SB aҪ4c"/sl_A ~%JC)>Dg;%t~uf`L 0ᗬεӤc{8D\&^ ADILH),<"t/fLx'w41-M vZ.Hڇ=,9ڵ&YīBԉ@pTW1Q3k -#,*ĜהœLG4GKؔB{fi/v ͚6;7z)q41B9/< /gtz~9d*Y8'zq|APaTApGJ=lWPy50%54s_:`sB)(]8:~k5oYfy583Do{mI[LGeC& G "ӳ' kkΦjg4,&Z,DERi"'p4cy^hآ7l ;cHVeҙ>p_it_8vc^LU`L 0@a"3%TsƝ*P_܊^zgxKH;?ƸAnPg"aŒa_=]T%6$ɖOcFaL 0&pppgBy'ȋp17UZVHI|9Fuǯ'r4i熒x 2w`Yַx@©3z?ҟBg MR6]9r ‰G]e:%n(˰?|G3i w- *YmNbx[mHNN8[Ocػt FC-3]԰6UI?\&U-+Q*y{C[br ,eC-V\aah"N/r0TXwR*hxF“ˁrŤo0+Gq^:nكwAѲs~ a/`L 0ppXsB(!W6=sX2i`.^FH8y&Sf~liM ]q쮻 ,0 Xd*I#%s<)eՍ(1Ĺ irFv޽ЫgOt|$0ERdB@N,^<-e[!{;"ZtÄ~H=lxj>q1$Tm>k#rޛ%4oX65R_#ʐy$Alr]!ѓHLݍ$ErŔgx9]bߩSAPamEb%Yp^jv|H*g#ӼT.{WT`xW+DBwdUb L 0&ʿ`TDܑR:1_B~(heSa֣07/GϖbsFJ}]Y9f?@~6Q[4ݝAhOip|fLN&\Hw,fY84=U .!)_ 2]܎?%Ez!i+-"nZW_Ń"(V!6/^~EJ/+v#c7˪B=I v"N l,Nr iz~qϢ҂#cƫc.RGhN+UЖR%Z!#-JFN0 =WļBqw@Zs {.du/E 09hi^m9rS&Y[^m\tN#~me|&R?Sa@O3 5HskK7Z~xxC1y`L 0i>毧amw(iUDzsS"3< n=_g$ @c\BzayR^EX1oj6ی~&qkZ`nhݼ-2;{ F7خ^BlBWU|1<\G66DdqnHQxi<$,"Ӆ)nZ]+i0o/O ۡ-ǫl2f)FIP*{V}oQz.$.`و%NRΖS<:]%bJcf'<N&d4wf[Y]}ƨJ[nƒy5P$Rp߳}q~6<;mTNǮwb=H. zVA[An;2`L!БUtۊrôPǍ6_2*?]j:_͞N kLZCbmoS|Iy L_裟Q#๞j(Fb(;/+Nz*_←!b^e=/Z=QJ k.MP&23sn28F=]g(bMoCj#1'\4X)'ZqB\o5466C?#piq*FWk)Fd;)U\SAnw+;&`@d\G&`L ܮY2+O(]p`L 0&HEarVL 0&`2`L 0&NEÑrL 0&`,20&`L 8L# `L 0&Xdr`L 0&p8G2&`L >`L 0&p,23dL 0&`} 0&`LXd:)g`L 0&"`L 0& t8Rΐ 0&`LE&&`L 0`p!`L 0&LL 0&`'"H9C&`L 0`L 0&NEÑrL 0&`,20&`L 8cs,r cذA>vL 0&`L@W<nw 0&`Fe٭! a`L 0&EຈL̙`L 0&n[Id޶ r`L 0&x #L 0&`'rWsdL 0&oXdַ'eL 0&@= "<$"`L 0&d**P&շeL 0&nQ^]~c(%݉ RG-o P. 0&`u$p Ḱ#{ wwu 0&`u&p LAVrw3΀ 0&`Ln¹08&`L 0"j2t:saL 0&;z;\-ÚMGQL+ضaipL 0&`!Po-J&[W N ™0&`L ԝ@5D 5u90&`L 8@=+\P8g`L 0&_d9%^qL\`L 0&PWFƾ(/H5+N`L 0&PGvuy[t(4G~&`L *o4! P&`L 0JnJ-K&`L 0NE \&`L zXdzϔ[`L 0NE \&`L zXdjKԸR#E&Vs/+.0]2ՙ*jS9rK:R=V))DI^9TNsc2Bc[F0H鮅eޕ߭Zn`+x H3J]2ȟ/ ZdS%2. R'|,)Sg ~*M0Zʥo[òeH\ SK,o믲Bʑda8c%o,w{j\>'k-ڔ}|L=Y" ę1#0));N{(\:{Ų6|(>@=.W^Ku|ʮ4R$]~Fk {j?S*T eS *ow(yUQZ>ۃjWQ^XK{jqV8єM_B|Oƥ?@mNEũ2ZlQKǡt6n9Mq<D,{IlT!0/8һP艖~KdUh(Iކ#V Ц5Q fgU|}0Hhmɯ-EgYZ0k2"s ΍ͳH4ӵo_xt#K iЦ0mqF!n )=-կs@\@[>m*Ŷܵ !I5QJ12K߆oHqEb:S…WVoh7gpj ?N0d|%=&#K9wW.446”%2P#iVxQ:2TgZCQ+ĉw"AB;Hע|L\_@KU^EXdu:zQhJ??Dڒ\ŦTS[^|:J_#GQUXVV4WDlZ/H ~z"p#hDWǡL@Q&AM"_$>2߈u\f"d&!+u Mh\5!CCNErs|IDJh$$ pĬ<(/A;Qe )_l۠kdK;`d>am%Aic ^J~-.pcuReqV$̼\}KPKlL5Ի5NTOopl>OEupb5)PiKhh->m!S= s7iAQy(C =8uo1(J|l)1P'A) צ k[Q񅧔uK LiS3gwHNKe>:%:?p^ B$v߿_${ T"緝d /"Z߫\~YOneL w,2k]| 6L-RνD3IV;jLoO ѨB3Dw ;?%yȺECCzI?!@Id6A{Ts"-Q7YE.GKV$KP6\b{>#L~J?b^=ș͑͜("pa4hU2 +s3=}䰌d~E_)JRN!ӈ2ߟb P8(MI9"x7 pwh{%XwPɯtU@ꅫ4hI\30aEA+Ai>eDav-^䤗23T0QAt@ij"(O".} J9 ܃19)};\JþFWdL}$q-=N7_(H?1UwHY*i?U[Ew]b3Yќh`ْ5YK7zkyRȡ&Ay%KA]}HS䗓RgdL?<'BS_wkdvC|!~-¤50(Ed9[Ak 0USA7wGtCyۘsU(tespoJvQx WnDB{}֥_Zˏ1&Skn`]NearM U,0RS*Ds'Unp(\#l2@% 6*M{4|KB!WsH?2 !a;f6$ +BGGպ +0uBĈԾ8]"@oab}8x.Q {ݑ\ _)g'roue< zy|Ōp C( Ow3Ziv'!z&nɒqƊEQNp"N6\53Hn)P7*^Z!EhI4&2ބ=O>e[Qt勖 F^Y=12h";jvK}r+8w ۵.V-&GWR#jSrAMԺQMM{q@wUZ>cO&i  օ=y6F6- i!hy&<' tJ2qVz%_oZf^rS+ ѧ \;!J\+ !U[)Τ:*hK"4G jI/"Bd'ԧ|ژLwc )K~H/V6[f-Τ t l %)F*R{kb[cqi\RkMcL #ltDȔHg-$Yբ(D-Ev>@d̮o%4"L]SjJ^%\AGמ{YĎ]sד荶dM2n<A/C DSAvC@l1*^4^ֿ#gt[S~F<-1'Cw0 H?|}LimLѐuQ,{y~@Q" whLE: ۊUOޚ&eD dXre@-_2]vW]Ib⛈ ?X]lvo4i,Tƈ2N~ζȖhAE3b .ͶKb\y d m֒}:|]TÉ, )?m%dLY }Le{tei_+e#jKa6r`L БUtYv  qLĦmhHsҊix0EKX.;N0 YC?#nDBogdU8]GXGco*S:.4L^)[ab.a6g->}ޓx!\1sRo8}ȉOɲB =nΐwV߳c]et.;c`h[Eq`L pyQ)7ţ*ƩihY:WS념A5BM\*dv82ӥF5v߳U˳6L}(o"aL VPIENDB`django-rest-framework-3.3.2/docs/img/logo.png000066400000000000000000001210741263353514300211130ustar00rootroot00000000000000PNG  IHDRX H\Y$iCCPICC Profile8UoT>oR? XGůUS[IJ*$:7鶪O{7@Hkk?<kktq݋m6nƶد-mR;`zv x#=\% oYRڱ#&?>ҹЪn_;j;$}*}+(}'}/LtY"$].9⦅%{_a݊]hk5'SN{<_ t jM{-4%TńtY۟R6#v\喊x:'HO3^&0::m,L%3:qVE t]~Iv6Wٯ) |ʸ2]G4(6w‹$"AEv m[D;Vh[}چN|3HS:KtxU'D;77;_"e?Yqxl+ pHYs  iTXtXML:com.adobe.xmp Adobe Photoshop CC (Macintosh) 1 a@IDATx]DN{wt9X *(>ۧ`;bC `TQS(WAD)W6?^%K2y's3OygFTE`F`F>$D$F`F`B F`F`lFi<&˲;)a|0#0E Vx-7"W(>n /JOOOu:{Gl7~󊋋 F`F&X*,C1!—#0@VRrVzr?R3#0#1d #0#A V8G }#0#&XЉgeeeDFyuW2#0@{bR80f!.,,!:3#0ьh~;! ,ZaqijXF`F !„ #0#؍[F4y"=+0$I?DP^NNNי л8z,Egi/*#ʩCgz/8j? _EEEl} a0@hi6 *Q֣*ƻzQ '33svCAD^T콟׻7qip"@1@GB"fF`#>X汲=J0%W W-"eB~8Y=Hߙ(3Y=ȺCFB+q#h&S":FA3iCzھ(rEYEq#aF,ْ1D*B@YI3HG~Aߐ@o$FÚ E[ :`)jE(||mMhQϟJ-U]D‡I7*|0@`'kEt4"$@zDsɟQHJELЃ,-DtD<7Red|5#$Ś_0"wƗoHĹP/r|zzSbXo\Uާw g%"]y {F`#>X\P-%TU8t{:s/A9)sOL҇O"`NKw_R%JЊQ:oZHߴ*T̼ٛʄF`!C֧dXJ 9Nk١HߠugA>نf;pղeeE#xoS'jiz5"]x^އ2QG6'ኲTgMW(`F9LBa Ko 4TȇO@9LCza5TS_i |7,;ʬcDz``YJÑHcDL5OC<`3$V#0#+pJ ŇgV;&3͖]y'pa%R#Two(T/F`B3Y4r'2Bb]eGS8hgձ 7ǐLL`4yxKr"kӗ_3 gb^9C/#0E Vh5-W>;d#!wGjV#`kaF>M(YXPNZc:kDh,f*&kHg1ߢ0#`'|#0!F V%ntޒ1@#ɺtnHЌ=!#KT*ݳ@?А>n,\1̚!Y:kx .Y U;q=щ.yɚGJdgrO~nT'#Ǿ 4Q.s&YW$v$6-=WX%رcP۶mM9;G˵J~>s{*EGYȒxV0x6L4 ]=,l=T)-}| {wa>B!qڳ?ƍdk ,C،AXB}~S\Ob5 /+-ÙHVLՕ …Ca}&{4|#Q؟dյ8 K>W gb6eim;_/sڥ!O@?5XACQ'|Z~?"Ym5 l?vm5~TS:2饑!Wf 4Xsg؏KԕX(G,+roOACxH$kΝ#Jhsx-/+-&I60+ A^5zpP~aߌf TqgU2Mm倏􁀏!%ZxVKǎ `{ uIV_TgDqȾZdZk׮U'Oۼ"x:Y<.ܵ4B:5 ʍyYC݁qQx;w5T\t=8׮<sQdi1RtT4#6'yI `(yj]ɴ_+RWȿE"YcX{"Rx4xnKG'.W#Wɉ^ M&0]6tq΅5IiG̾EװĂ/;, J'\> <P])// ,=SW"{<+:ުD.:5ZH$OБ De+IIVܵ',/D4sFFgddhqq>sԎ}r8 gOt[hCw Ӷa|l/{xCDh,>[J1,ty Ya4H1h>|C?m^lA x\'Ҡ|2ޢ%:+/c;a kaN--Y'C{uE!ԕL2Cu%ĺ&x&Xdpwd}$ 4^# *bCYz]ᔎ^)))Aq>71Qb&Ja@.AYm~f/VZsH ȃHֲ~.?]BRWbҜ Vt҆|nkEHY(NOF[.99<3z @Oh'0PIl8/eyv'xPzzݤ> i}!8p,ٶm!- 5!+V>:1VF"YaHť׉{ԝVRVg `a[ѡ,:E11&;\ǩ*d[<"'d-ۺuk.]/ (m+\ :CtC ʖdp T shcץ[nv᧳HY8]ZRr(X DK@h _Î m {(C&X2d݊9/޲ehl5n^y@k:EsIK FЯ[RRVZ 8Pt:ipur~جNTu9 H3JU[ڻ\Gڧg"W%T0 _:D|a)sBSER2"f"v 'ȫGϺqOL+d p1 DŽmtc5&XQ@nG$dy=E9j_rXM75Zb\Ž ξ(+Dewch˰`&TFݻq:UMw[[t 1줬o5:di_ZNɓC'̜?d-GѡV)}&rscEL-nS7,w9OAd[^nBuҸ‘4}v2<_ٞݫg&-`[]UqIPKV(JXCJi"߷ pWcҏN7@&tOŐ~ۮ< r2#~Jp%]##Ztpws\[r|wjG%\|;0JY1s6!̥^U]PQ YOٿcC¤$Ti >ao [s=7 k?p9/Nn+,Luy#y[ٮBmz[ Fa󋱩uD>(5kh[IA޽a=]/{}]L]i( `~aO{kkN7|mNmz"sm/X`Id/dbXb>{n匲_ wTsQؒu!,+!vA P!IkgZuƞv pk￿#qd̨ݪ^<,غc1¸٨nEEzԎ2Aÿq}_eԗ|:%a {L;;thzQh"ҔssR$񪤝4GYMN̊Gt]Ts#u%eI`+G|/Ծ'_?#OIy祥u%|_oSnѨcNZCRxOoѨbS5|㗝obn|r|i0^lgi1oSѡ4 'ˠ+2S $ڵkۗ^xv'!UeQqj(|XtyyB^W̫1A֜HjN!l El}Ziq! Utu,uQ'5xv35g{.Fr>Zt*dh~b9,~RwXejv((G 7:X { .@򑼖\ Sml\Ln$ˊ]l='*٪9)MlzBEs%Pnlw Rt7gnUk &=Z܃o dI\26='ozYLA^$dYbqYYX+ɩ$YktHcfA+#H \"Y}Q_J#NGa*Y{BKtJ 知u|嚹KϺU ,ܯo- =Ҳʢp=0C)Β־}郞 jb1us> ~cJbT Vot2|mCXngQ4 }!ώ?|ȪQ&oE!Nz>7='pQ:aSKJFo!(J+pE|bc322:&Mb0lI'/}3mj\w(.{5.<$jiPtUPV4Y>/*D4ip)|#GPA]}H &Y>ޮAgHW\KmK"`eDhH "Y}۵kgcynH~o]Vd嶜@`ή7_>7I˸+Xja uPG~iXa z4jWu_%b'0~Q`} IOAf,Z_mwЩW4!M=,u** :؜.Xj'$Y°%'f5)B)"qXX4 nΔH,q>>x0+AKeE _-`"eNam4w!Te:t 3>$Gc|߅|^^v˗Y'YTII)ݣ'l]`!RG@Haś\"WCb\iؠC/KAʳh9n@5#_z!Ye<› gneQtW Ё|i)L/-* 4mŒȗO,:.нu,].˕7.ym瑸'RբEw*tuDdၐ\󽈂<2܏QnWJvxBa('=zl9ó)]aaaQHm:݄d{r1' Um[bخ.,!hGC\R+h7㣈:&7#QVF+oVe4Jڹ`Ӫ;0>Q^$k"lEdޤL:/O\0KBw5+@^ ,]Ƈs?S8P b~+{:/Xu R ]:<ݻ9Gx'7"O"Y=Ùw嫮K50㚀p W@hS8N^t Y`W=zu8JB>7Aj8\ W3B}y9R Ǚwtwz ǹ?E d:aS4]0(܎K(",+krtӮ쫾a$%%ݦoCSzX2̦ G<]dY\_W(i"-!LU h_2X&:Dz5T g c"++ϒIK, Qugj[j.WxE"516,aK3j܄<"4zoIUOZ{QR4(ܰA R~c0Pr&C;9WU&7((xdyfm@SlB6Q=iFu@O3zގ &GLRjׁUS-C/YOAUr\|:d$k!]!䧚IhqL֕D%+_qmiNz$.CIs7[/YR D RZb][96jڴy/UDZVd[\ԗPb y;X'͉[a"±r<ē^5-p)f3_y6Hzf/+SKȹq4*J)w>N W-B#R> 5 dd^jUQtxN.&NZU8'<۰LC$L :뤭}AoM,Zźaj2*v<h[FMKֳJ{|$h3zqN//&XNBi0EFDCa>}B~ϣ!kFs7-3m@'R6sF@w'pLEo,].J@r@>Fߝ VۨG"g rT41A[ 'b[g&!kVX%GEL5_ t0"e43B:ȧ,mt5' #{x"Z\}Ӽr1\klʕAB,zg \sf zޡ<(dvّ E/9HQ9.BEgZ/}2 a$ۖpV(:JaB$JFc f?t%FY 32 eUto6HDV~hg ZAff?`tꋀwviAt XoҤɃx!&pv? =V-D}`[ ?t 2~&lPuׯ8=D{YEc-0LHz%2.eT)Ze# 3D< +"GO4gD? /5"Ypח޹ #eKjjf%lIXS'O'xS 0KA5"YBmSI+zyܶHk&X ҍGl8_#1 }Qծ)ԨQC`t,.&RW4I{jL"+w8p`̏3 Ws@ 6i 록k]h$X]_,$G&u~.hyԹr![R"}7)>Zr~G#-G9B0'@A1LZ-:!#ohm_ʄ,rM+hFK-yTϞIѵ욨(ӎ;BU-WX4#\s1m۶ux8CcX!ؽFqÆ5"&X>달Qns$`#|dΝtO;g(>#6fɂLsAFŌ&9J!uJ Td.?@^F#8HpJ+0>i@g8y֫JiJ_y:9-"`D~FF❖"p~J^{qǝp#iߓƮ{KL>BٽU\,))S:edd֍Q_}i,X5LtTN/8X@nVb9~?'MgpzN( h~)>t,E] J|{B~9uf#}uA8Pu>m]RES6ݗ(pٽ;6}޽{PVr@;i{tQ!xߞ <'u>p ew3ߙ6i\Eq笄չ$AT^KuDXGsӳ&[(fe_P\LԁRD|\ FM%H_\:.UEjjXo` }Xƕ$4|mD*U/E@3, W}'t:jZ{OZPgcPDa&`׮]nrr 糺M.:ğQ*F]:C/N$ '^gcB֕>3kQR lυ&J[DY|k\׮m1DR oc+C֕.kj`NURb|mi(9FZsHYCyv@/dQl"9w>נB_ȇ@U9\epx_5=0abO,P O-YV,7dY]V3 Y_N\ ^G]q[cu%Vzڏ,1; f1£ /ٳg>,imϊ!l~R@TWvL, Rx݋z#p<_믿^#,KH`} L/)`=]’7 +Ę+$+~07lCiΆE$˽ТI#-<9&$g< -m۬l:W-gryƍ8HѷZ~noce!ބ|-m p<~_ 5u .r1"Y"}=&+˲W' Y_Hy\`J4u LBm\IY[dda9 +,Ĺz Ӳzթ&LQE333 ~`k{+L:M~s0T|TnI{=55u4fڰ !״]TZZ䊜/K _ɺ2eb"Y+#l5c"PgÚu$k˖-vՕx[\ 02s#@$ 4D5EĪ/\+"[33[*pBu@pV]~4,Gj2.N: 5X]J2"}ȇH eQ$pUFUTDȶԗ…C9dT?_r3nLC|ECߡ\,G r5CevՕO6'#*qɂEK swRW+;ޗƂ/ϭ^IOOi}wEíH|Mca2|r58= Kx'_\$t¼mYGCHWWUK/\}-}Ǵu ꤶK;ӳWKˢ5,<z `?QC -"rzmޝ!ϐ3;`+ O` Dy`ęַ urPBڠ:G@@͔{E٢-|>G#;}'?+mX~ !^ +_I HM< w#En C19=,OҢQD˳,:=EyٟMՠ :Hօ~2 !G|0`e2N!g.qXu-@ tEdDߗARϪEu)ʁ!Gj(o^c[w5 1oKqүuUKaݺ ɒVkk.ȟ*Qygͭ} J6$h|4삏Wju ] s]@~@/d]Tihﴺ\B{BKg` C,//w`_w Oz0kh!Yuն/w5ʁ&ͦOx tXgϞ V,?8Muթg@IDATS% :4сHֿŗ,/xFֈ0S\͸>䎯ڧe喧3|?eEV򑨣o'r!w!/#{kuRC@%Ydzu-ݺ`>> 3#EH/Le>,;1`9RtBg L1N]FCuhhi[hpКg'sQ;O zK>;}"/rᐟ&)6c3niVs%T⇃eCf&`F"3isP-!. nadi0o3=(73@rJLۼyot%ԖЇ-Ƅd}M%|XEDfUg5 aZ Siok䊔U]8>7\4`X C[?f޻'{g-.s@@KXZa2GuX3II*Wɿff=7KNa_UA>ؗ &WB61j_OYz.uHW"/qlZf3%Y]Yuʪfnv@ r&riLtXΝ(=w@3WIQ!c;kg+%Y3}ԩۼT#Yeez9DO7 ę.:+G_ 8 :OLa",]dɘ^?EoBn+Z^,bɲ#o"Yd %k!HI6͗J28=# &Xp,Yߊ=z\դTھ]>s*5дXw;vtP՛|zEiӾZRRѲ0vYgm?Юψ<E9 C WT6/A.E.:rIר?j%`Guh3*,a2,$(Dk(Oid-„ Y*p. YB0$KWWLQ02E]Z֕Bvg]0yHs*Ν;$Yf?w%=ݖ a:3`A:j*Ka_8t|.Cާa $d:Ys_q} ?+^ޗyiYgny3 d'<;94Ӓ$y Z/H9DphM>Bui3f`e%#m׭n "uНZ!zF>_||e$S3Mn"+u֫C$a8%o׻AYGkCUÙ Wu9+W"Y`BõmvL Ei$LxKtbWE2-ǫiB^F+բߧG sB$kꌄw>l ,qVh4_|Sf%P'C~\9mz|K'O )Ktt7\}< I_ A$|/w.-|w _W|%F7&oT-=:Ϳz菶e#ږ:tRW|ÏGc @ y Ϋ1\Kn˺ʲZ8hҰL%pV;:,]i,a3:Է%ѹySu-{{t 7]NX$q Gw Nǻx?{u(ܼ~.} 0ZqKNQ5A$ mK,YLĺ߇&X}"v%>އ W)۬,t\Ѣz/WϚO0&,sZc^mCa7)wέRxgnuSeAY#Y+lsmIԺǂÇamkNR Ёᰜ( gD@ G'y&Xiv>IB'ͨDt&g ic|rg˖-G\MDlG$2: Q9ս*9e 3Д 4-,QK $L Ǎ(4UyYwϋgP6M!Kb,ԟ|+lXV]@e;0.]ޭg"oaet5R6`t)~2(..G }FPn- <,GUebt5\ BY$q _h~_-Œ,;u.|-6{? ouq׏^?p=r&%d异Ң@-`dM\B j0NoreFq0cdȜuq+A)ZyJ0Tثk@?M>C kV&ԕk>3B-XBhU-M:tR%Ihݱ᯾|vJf41v2|Q\ L_ *[ݷ5,Z;+2!>,YƥeMoc5%Sn^7dȿ1sp>T0mo)Cs{ĊN3,s҄MAZ٨+K k P/pq)H\Q@hX<%%(Wp HLaz`[Aܒ m)\vZO0;B< PKnL2"WTv#)dCcUc`ˋf4jz(jCX %|i 4]~%V^R'Bݠ?.&IRNv%N fM8Ιt &LKʆ&O/_QxG.9s# ~Y7GZOG`Ǫ10 -ԲhnIX,{N/,܊34{Oq_u~IKuɰxkO$ n}Qi-F:;3v"N4Yeog݊NŽ_ZRΜQ\' /d| ^NvQ(T `Vb̲_<Sx蚏,k02Yv>ԃfdCy.:qQC ~En&49X=<|etrѬ>.?!aV leV\aJe]㟃E^ Drsaׄ_5٧%#}Aޗ" 8E݇h޽2>TQ-vFҦolɉ3moMB/PѨ^'!r1D {> {1~$"WZqt4kriӾ6[ `Xr5}(FݿbX}̈LNP/mƗC_9DqkxnL}Q_nʍN[b=IOOmZQQ gY3<==ЁHCxY=?YDzgGru{{Ʀ;hE֡<@p-w8gt~-0* LS AO=n~YomLWH։xT߱#dB{ GNJk<҅#@NoHff?\]93ɂƇZ~dekEَ rdh) 70W)]9pKj?E==Y5h;Xٽ'6t/JJM:E C'YT5k@2:cp_]~/'K3s2/C80Dg9D%YãdXAGNq~})p"ֺ \x&M(;_}} jCodQCJ3/Z 6o.Yl#nI[gj#9kU+VHq]X#m:o]o 3ݪ.YW4@`(rQ bSD?:RX/9n EOl&Y{O z, ;Tn1]K4ǂXhs[@sN0 ĈO^-)1|ZGI$S HJH Y,[AT>qf\ +OAw}A$`mD=Y ١?Z#:ult#`g5M'QT^?0dVuK˾ +dDXviYw@g+hKZoV{%WGgff4@m#ȕ?It= ޶Ch8Ԟ=ɂ\l&F>ͦ+ޏ?tCU )k:t4C٥7`[Xt@9jD|;ʎg!32h4k uy }, l\Fp[/iAR@耋P}>+&X%ih\V[%ʙ`_WY{OS1^(*0Oq` 櫻}/jC*cqKd5i|@ C~w 6#"Y4y!>"w`VwLaqk>oKb\f$,Y\k&M4ġI,uB#;5A7`z֚-umoaY W Bc\QAqj֨QpvN<;u/xÃ/#YdK膡vZ}f Æ*Z-饅_C0#ɂlyX?XE"QW:w $ +w[N0J`{ѨЦLiJK4@1d&W:c/!ش@; %q0Iܿ234=ӑmlH"Y}QWO`C V`%L* SVO=~-c͐+ j{n?7Em|@$"Y3%Y $+**6@Yz=V;[1x0k] Œ=Ѡ^N݉d:q6$ԗNYeor zk?o>s0:']L+)!$S.K?9PWt{RRR_y-ן,_p,z- 5 )I&M 9f=mT4wCK$4x6ybu ~ )'B Lu@(oѠ KP}[X'6cH/0n[~o{s'uUbg.=0UM̸Wjס:GS]iӦvI$?ЋIV^ze/׮F.ǦEDni5}ğX?snqX,C1Hk}v²'i!V.J۶mPI~o,3tjok~UuJrƂطXUKS8rF>6D#Y굫o M ͱ VScp " r5Y(~>[p0t$^ԗK؛Q aq&}V L. m 娒 FxuHJȯ|o`y#a}[r&'im+G #VZ4| R[GG!L>6k5}/@`m|ʮ?mo3k\rUS4**ֺB8B\J#wUz@Nz_yҲzaHeW<=P9ҩue~ו?}'* 3z`kC)hX>Ni*׍Z$СVmЁiJΚh[Y#Kw¡$ Áo#l6@p ktbֺB`YBht"=xm ǣ0x.BvVYgl~ݛA{nՕkcS]A;2$&[vN0wT ѐЇнШ({v'E|~8hy|dO|tDI ;Æ eL>ZQ'x:cF]몺0//Ѡduk&M0q@m#Yt^z 5<=PS$5lF3 TFNZwQ={&Au~:+YPbCu ~I `|"'4 hH@ ӂ!ӽ}ZVRr*v$}Cu1t3hhn@$:t~:_;zR 9qފr’CobUU, (x3+m،!4,1kϳ6mڇ$[dIΝ;s,=Q Y+0*L*" 4"x5 W#=_RRkQx0/->kgJpk+ 23O vE۠sZq'ڲe˞X>4uTIشe ?27ٍK$7y<aہ:In_;caI {23xpz w|JgU$K lWu+}K𫦇(82k:/X@n}^GXר D(#Fq8`uh0D{ )W^TN} ?3-)ixfO;@wfXv~tF/s"ٰXDg5 hc)HIZWS~SvO:dԗHg%ow8+i}ť>A=Jb&?tM1#ՒCzC{)ܡ[5&MzB$ 1XpG VcK%TwAHž\ 9k_g]@)W~J\3mX$:\$4Q6)O|1M@$k],@" kJfK43,YVH|DKI߿)x_EDky $No*$WDV5Jue'>dIS<#c 4BCo8s.mt%Bӱm-EE[;*rd':<|jQ\t?³)(D{XQ:ݸ׺"\Z_"q1(mVApl w;#z ](- ]l]~dCi=W$aos%U<L [0Q99V!+XW~`Y)&5X\)7 Reԧ!k#=YQor?e`k,'({-1u|lb@K,7t}M(uҽ٭[?I߫W?(=:V#>YHL[=rͤJ~H-vɲ+Ǐo`5U:̶]" !+L%R#=_XXbu'(3KN ;ʊ0 Is̮\{#г>mBYk!4ǎՕ߀LZ.u o׾TtCP)_Wz&f_:E2FϠM hh8lJrF!E VHnhzZ*Pm'b܌7$]x^^fοK DKEl.RCN]'|^4wٌ˗ m۶*z%]Cz#ḳz:?/g]t$, Ŭ%uJJ X7n| [YN-;QTYNO ) TA`ت=ږ˂i[j%v >< eV?ՙaJN!FޗH"Eί:(ri_Py5=gsobFYn|1{ s}mEypGϯ 9 $z_t8‘OCy]_/ɂz_v-_ z>$)h̭`>]Ԡ4,g'L-r5~#[x(9}%_GJyB:Q J iX/ZV IҌ:BL`g3HV?\n0$Q\eɏs6mÊE$jr_C tk(ߴ&qa=Z8|G-5Y(/$d(Ao{>'LjI+&X k <ѦǗ\:tV-7cszhVբ<-cv:c_ё=20F $ uHzDdMW:P֗Hǎ<۶mZ_>Εո_h'&ՉeN:}DcY\WJ$ CɚT`ʛAOl4b yhA<'̴*&Խ%L6M<5B|k׎, DEGqe6%~>I\PbQ_R0Q_T_-<|}N@ЮPZ(b}vع[oDj5x\ IV-ֹSþ+E r$_G챁Jd*t5}a#F|3f1`}H,Xc4/vNYDj:IFycx*6sˇc%14<ĨUϞw?a ն !?P9Vҩ$k ^ h[hyz?|9LSFHgcF˪PyF/8)k]D>ߐht"@# ˊ(7 y`L0W#^H`LW#F¾`,;ݽ==3==3=;,]]uW5]_:ULwZ݈k??QURH$:=}_qeQ'Ydh'S}j?_f*7r^8h/;iVR@'&`|JՖG]4\m<}"GgAOU'cQzut$|C`{e>BخhIvGft$BY|G@iS沽:)uu>fς8ol< K{~wm :=cF=D嵄3o@;TEq;˒MbA%,1 O֓&?M^vϱHgZFфqZs+*>kutqR_rb蔯g"k AЯGYbZ;`%b!^rE@bm,g#4n>+%:aѬBz[@`FLs ":-J$o.h}Dh밵ʊvQD9s*Ϫ,:AO&H,d|N7gpR߲{AN; \N7X9 c' X\ϝ5k&t "YxZ$y6Nu1օ\S+˚o3^}бۣ: lLCb}8 o3fL§m!6 nFcA YM'߰*5] 8 k{ C0uGQ\[Vrvckk7O3=3ֻU+tgz0[ B~_2&Y\6ݙ`;v|2/:Bs@/UJͯ;;R۪ivpUĬua#{,Rڴus/XZd!ͷ@Nnֈ k`?NsKQaۜHF3m{U |td\>[g7%Md9/e_Ӎ]n1t3,&']8Zf-Y^П V/D/BV%[߁\xS{ *?lnW)-YbRDi 2OwttD{YfjRÌ̖&]>VHs+gץ:ɪFstaOv~(Y\/zoWixH4EJў9k^׸ɂCVVZֻvr-_=XsJ$YkB{mg[S`]` H>]V< BN9LUh,֋X>|L|ujL~dEa! "v  WoHUh/o%cKt+BK7d\te9&?Sk=#Y<"YMMM5h~:Rjl(YfG*h{i]mW{?ਟ߻WK~EK!@$ m|~:ӮKws` VЈ@:@;L՚ei A1ؒ$d%j.,G۵[cKgu/`QAoAe C?SE2H;`M՘wNK$`Umv5H,I*߈/y'g^cgK~`${Q1h};RV!,iiSrpq˦%v0J:e" >(K3@Ε81$ߥ/X6*q}?H5 0\GcXV*ߩ(cP__V%+~q,ͫވ{-h \RtW%Mdahy"ESqP+jW>:ZXTs8ȋCB¹:\&"BT]ٰr/"XNtciL(ܯ`Wٖsl2N!?#k'=2<֞D᧰Nd˖3@.Ur:|G>:d#(T 8m`91**6l}jOڻmeلo_8gi՗#jiwS'YXHUcqI`<X蕮4$bNDh͑s~j΀/>Y {]iudrY7Yt]A^EIDgyҷ2 bO9Vc1WHYQP&sIh#QJ\T|V5 gl{YM"}0Tf0ʢ+5DxꔋAodK1zi]/!8}oZWH:F%m}2+ٌ֭mȏ=ba(L= edEݔh+K&\i0%|:ɺ $k J£!kbE 0sU(_$WRq>o ޡ`H1LA?#utHfuNs0gYPq3 OK* ?LӋɨ8ؕh+K_} ޱۙ˙%={Lbe=IVter +3-roIWcƴXQg"Dr/nC3H-PԳUɓ'G),Hř&Y^xϡ>sFVޚqmb)KkoJX,3dz5d=$+PdS%F'ݔEqzϭd'BBGүO jx=,YsLk]!ݍEEuf&pnA^/L1\T "}GS[U_?ޱYvY~)vI&<"Ptu9v1  LNNQdɡPXڲc OX-G7VT|9Aڦo3)?|V!^,Z eN6(!rjB%(5ۧcUt 6+;pv#Ne-Y7&X!bvQ ^[BZVTY^`݇=THyyKJJArɂsiC =^bu:1_5")Bo/^ʷ:"_28EKniIDAT%`I m÷X5ׯhHt}d\wK,Y0 OE2 I]%z U-#U+.e&H^*Wkxl5gmy,s& ztY_Fy^ܡeZ}]ͩ8&mpN9Xu o#ǀX}wgm ht 0ǐ&%Ð[p>*DڇWch뾒P&X9% ru-9UòaU ]%уעCܪ+6(%U*Z'k"^Z7 uhHd/cDIVH6*͛mhb|ju8g2$d;\9br 'mK"Y?L2KӰrsA_p76eNYw˫6bP_/['Y`[/:ȏ{%]}ۋ?kl܋4{ߜ+OSqM1VN \i36x+@Z6[~_Qi{ovuMQ:tXdcqP૚nHY[WGM_{!^44kՔ24 SJDLY$ܓOYBIYʶ0 6W{:3lX = 3 e="-iLfVyyX]ReX8$*< Y6Őլ3d7%]zv2|˒ڢ `;0 |F־{EkM: Ȳ"l%ђ Z&+P!S `|qJc dBÇ p[Hnڋ,i9 MF"HOkDwnpRl[#W>Tѯs4dG}sl'ĪXUX nQ: ,uƾ RsƀɏnkBa5q* UpO}>&cu$t=*ghݞH@z⊯^;⋎; JGю:ɕ/~ YfdzjrCAf,V{/%ߚ\ӾKv~?0wEwΗ*+ mzIפX:,,$akNM=RksCiߎVQ;JJ#"9xHD:fNQ:#ञҗ#!lmG+` V:J4;Fȍ (d]dȘ{2Ej8^ϚJ-:f\d%U. ^K&4;?i/^+̱0_~QjZ=(u=/j.>Ex;(dI N\oikXNoR7僦 , m/l^@0;27s1p ؏ I$Kz.db7M$NQ%.1^ CU`NR)\hf!'m6 ǬWnP!bE&W}j"Z@[ܠqF``  k1 CSiG”97Xw#0E VfeB`Y1_<7+XY'HlR|0#d ^!kPsFA#iӛu' ;k=Ѻu g/+i ACn#0@-XEf-Zl,< ջw̙czF(t؂U-__!nvYERT -VV4`F +(sYA5~֬l #0` @E`2F[B#0@N`9SFo5N0@s:0#0&Xzp#0# `uΓ`F`z5ի 0@">{[a(9[P #0#*`0#0@!0EEEeYPUuUEܯCxk4]`}׌#>ۥ(~=Ép kz\ ~T. W58REE +"q#FıXl˜`ف =V  xYBVd#0`bs*++5B Z=(O",N|2 k@J"`H%u)+2bQzJN D"gS~ "kXѰi*bRAXrqiX3-yP%Y{.)/S+P}Ja!BF  glXGZFgNV<{{'BDh\|Hx|@g>!B⒯*n"a'EdI>Yo%-D2VH7kF8'F- uFqD,YdXt|>LvM'؆&B'?$ y;v)w.0 m94 fvŒ8CJ{|^ϛ|+O"|Їkll~F8to'"L!MIБ}:pj݋dNԎ/2fV0`CHun;k#5"f/"1脓YZ+P')"+YJ>7$#Wd#t|))e=f@hN;!9p8%˜`q"j"1 BENd}" "dp-/ٚN.LYBDW@!"n-"/nֺ䳗PK6X`eV0Y҄23CZӗHxl%@ыȟa'"iCZ` M AH^TOvAE͆fm=!'U\8s#P;,妎:ctY ".ō'BD ANW}uZ~"„0MNgC q e!-jKÆ 0!%H@798KKvqDD3N+8M0JJrqך>h;8JqZ$UsJA{n:-'APU4_g%2Y$#0!@AhT i' rFiM`8A=r6r}{#ܰ6җ*<-!$3>*\ }fy`3N0YB6QxE Uџ~A";98 v"Ff2abح`A-d1<.?Xeu(E1#(0iiXD8 G`;PB. v8SQ@vR|>ٱEk뵖a96I.S["+OÃ1Y|XL4hV',^!u+*0@"ϕrtEDIrQK Ӂځ5-X6E1]DȪe)h3 MLK+z"YqsU3Z!x<`ƒZUy"ak"bX,kgDpdD* !r jЗHe, '̀VvCŵj!ctə`"` [=)gD p4`u( Af@}ؐ’.@iH2[S;p"&$ݹgpu2FhiN$ͅ VRx!#QD(DjfdZ>&.^tOV "H6!X?@( 4#/ݪ{:diAa/=,.T2r]agKQgi%+]烣P/`:=Evuا!] }.]WўЭo"bN' 3 U]NJ[6gJ`L ҹȌ@ 8 AEBҵ7]C"+u驸!;!Y9Xx"XNiH;Z: DHE4g hjrDY 쏕Ed J`:;ł:A"R#vY/@2ԉsEK[e6/wHcQv=t)J)фm*r-IT2$lDu=,gYt%^(_Ζ`ãi=#,'YN:C"),Y ڷϩvR|Cyd, 4WmOoާ‚2x.7 &,pcic xJ{a VK. #Ы /rNh)x.{Ă:O^nI4Ke33.0;@ B8 N+˵+ˀsv#}T*`XcLqN,X:X1>ɞ,[+). {)!chƃ::Yx},V ,Y1wt@1$DX WIt(?J\ȓOAځ#9r뻤'$Bn`A`Uo,0;˕Pc>cYa`#32ё/+G0Z[ iz.;S7Ldnɠ8# IL0#0#0DG(JCii.DX^iN;g#<%@AtNC#l.3v\36IIY5G6'yJ< >ˌTa2;\d= D>HD֬:iϝ?iq h9azgsJ@h`Tg + (pk& v0'@hep tp<` Q * i@1d 1 g򇂡((JZ m b :@@g z @[ ɰ< āPx9\x\ WF2 ߃W H(JebQhT냍&b` Vl/v;q8'\ K.np$ 91Em0~ C%8 \BpBE"LeD'b(1XJ#ߑH$-=i OH*%$]' >Fdw2|J~H~GP(hJerI*e&ŒJm*j-Z +͔^!-]"}J AFO]-^\L̄,UB6P6EP 9W.WA*MurG!yQ@|BBB~GcђiE}E5EbV:ۊ(*)++SLWTNRޡܤTbD%CeJ 8 4,x Q=ڥ:&T۫vEmLKUYKKIOү5U5}4Ś45'´r굞jڻ۴u4tt<%2ty{t;t?EmkWgg?164k5d&31lxFFac[c>^Ҥϔl4M7505^0zᎅ ۘ'1l!gkcbȒcYny׊beꍵu~6T-6m6llEuv:v1vv} yFqcfg[4?M9,_ȢA'-'!~gsA~MKsWmWk0Ӑ<|f&r;}{#ߣS3̳󙗖WW׸V>êaG +{o/o |v Ztn vIВ%/-wPCV Z8 L.,&cGDqDuQ*Qh\txtURϥ-YroPYJ앧b011bٕXVlE8ǝs+w/IpJؙ0s2D&M%G$קSbR IWe V^=.UBSKl A<^)# 592 240 RDv:IDATxU9 F "A`(* "o^\*fPP (+DV#&D $Hek =tWՍ眺UgA d@,  @# DI%0C  @ J(Q   @Q@@E  @ @*J` @( @@PQ8 @@@7@$!@@ %T(@P @ ( Fq@ o DI%0C  @ J(Q )9sԩSmɒ%aۿU\jԨa:t/Vhќ2K̟?fϞmZ dNNںu}Vzu;SsIڀ @ A䈀ZnyN*S)RĖ-[f?ЪVj>5o/|=sv穀|OD@* @ o d[@}:ЫW/k۶/^6o<?~}ֿ[wy;Sz @9D [JhtWW_m 0B YfGޘ{yf/^lwuWt \=裏Ni1@<1'o߾݆  >6`#S0;/l*T1c/\$eTb{]p)3'&@a1 #GYݳ̳iӦS >lQ $ Bx7nzy.첨rg+b?}WvI'6Ԯ͏;8kӦ;ܪ &تUOΐgOzp˖-.]Yge%K86ӧxylѢoJ*uDsʕv饗BzQ3'͛uQֵk6&OlwyV\9mѶpB|ԩcճ>}CرcM4~W;wݻLyhzQz׬t䜅)@@bPlNi+ /G}.4?o\rPizN@&q*]H4lЉ' 3C~+VM7d֘9WdرN(I+h3\xNHI@Ii. PƍoΔoĈVD kܸ,X ! 1 ;<o.פI_|aӦMs9=y1h+ m1 (ݴe(Qp Vpo=SVZ5'$u;"կ_?+[~''bnLH]tQUlo⋮}תU˵WJ_zI-[ĉȻۜxk4l0{饗ܖUX1C;k}٠A\Ν;g9Beh@b&Z|0Hڒm֓W߷s=yCqJDG["h vn.]LCH 9\F]qNpbFD/dvw = 4? "60 @y1@)[gnڵezBXbfN\J/(Ί*qK@);U42e[q >N 2Pz`Jq, @9O &քdu'%pknkG&87ʿm۶9D묘DbPWkWMVx"8 I@i"ȭ}5?{)QH e%?8il='ALxmc X$/K1V@@2)SNqWY=D幚:ui$r_i'Xr!JBx6lpg.$x$Ӧ @9O &е^F믻ԢګSX|:dU){ЦL|7|Ӻuv ?bNOi\LQ{Ma <)K Q7umW(]ģ5mM n3wyǽ&!3O[['9??>ӱH*  @ ,4n:ESC Sf|nq[駟v/ U69,/ #yF ezv!?ӎ'z6ǼB REӸO=TwG '[6ԻDo KjsN>!@9K [UVW^yŽnѦCvvLM:A{׮]nn#=n?ڊ@/;bnzN z̙3ݫ`2_mlN^,O<[[vmH*ۣJB%Layo<}쪫r'w&M\X ,pSvi%˲#Ve H xC99 yu %KԫW/'֦MLOjڥ;Z&ύ`i'j*=Wt!lw g$`1@r@ -" 8rH'R&:PSC59@b$bj |ۛvX;]b~ps7oAr=xG llY$sNMGC%Ӓ%K k۶ <8+_- @/T)H,i{=w^7yqm+I *'kӃ8idr0k3 @ PO $!ȓp2 @%/z @ p2 @%/z @ p2 @%/z @ p2 @%˄okmigC ( ԭR:4dz*eFY,4nc7c3*@ D"Ph!{fV|uoS D% MtK}P $,XMj'`` DO m~XԀ @EZl @n9ݺ,V>^2}Nk^zPʖ(b?/b/MY>BQ7HzsSUIۼs}x:{"5q:gwCJ֠Z)}n7 یypTHեYeX}& B|e&JEe5]zMeب=1~@@#нU5GVn&xI^eIͷhS;{R-w1 *]KwB"MݍYL7軽g ŭH=͉XO<<"+S](מ9qv{1z:e=aP]Q 8-Z=쑾M<Uޞt |ӶI$(.h_F}JykQi|XU-WƺtN7?aW{Sc~vOtGfoz=CG&wjJֲ^9{#n-Zj絫a^mo3[WwuWqvxzj1os<|mV R郰iAzEsqfߕugWh'˜Qyyvf-n:^yz^O;1 -L\l=O|on'7~[OoFXey^+ږ(µ%aokv$0@:{Έ~j>Ǹ{쉍*PIy$4P^ymW6pK6ۤӼR)/lvzVL1'tο(^6g _6{L\Di۠|P[bBM>"O{Oh_οlcj0]%]أcy|cYc%A3 !xP&=<13x9N/U*Je{>vOfmr,C`5~C@>$F/n.| U~<[=ňAFMϼ %jz|OxR{qfImK"TWJO?>~^{:R@mY @J Cx qŇnPr-{) -B@@w^g` d!^b @ * @ T@\ @PD8 @ "2 @& &1 @@!@@0T0!@@ @ p @"@@Ee@ LLc@ @CE(%K,---9 @@EJf č*n d%J֕c č*n d%J֕c č*n d%J֕c č*n d%J֕c č*n d%J֕c č*n d%J֕c č*n d%J•lƌI5zms^zuŔB|(D}:tIV+\zVBd |Np^֭6x`tҮ_>mꫯDB&MꫯNٮ\҆nK.[^iӦa{';ﴗ_~ʖ-k}u} 8YbsZ*U\jgĈxb+Xj `ŊC '`3gδ~ɪVj7|6qD۹su.tSNu4͛_>BQضm1g+Rs9GɓmܸqyfQ]xֲeK׆k٬Yn%J뙵a8ͳ7|38#}Ҝ7Jڱc[ٳguK߶AYJ @ |rӷovUV{]뮻5 &Dk͚5}?cfw#^l=sVxqk۶C}I}}v{뭷\{hw.őPxSݚ5k 7ܐL>O絒=r ͟?ߵ{quO\ڕeuҤIְaCK] 8oݨQq2kK"pѢE/Zr\U @PBtMֺuknpIL( /?wBdzj5o˗O|כn: v/nuI-ϖI$:i7߸_I> 1cd(wYg9_O9L`ѹjժ~GcǎVre'R!EM"JT۾xR{OvOr7usvǺ(6s1LbLX}8餓+`|_d*Y:udkN?H0(ɷ@QS*?OC/5rH{7M^(P]Nf\ >ߙ*T/7 @ !V84fo֭_< 3w\{]NE… ].H9Qʛ}WdzMyvڷo‚~Am7`S"|?^Rb_2 ydGM"Q#}t-ӭ^z.(vSH;j.n0hb11v/ @ <\FJRV^~ލ@Hp(X )yڴi.䦲'2 L8G/?_~qpui 6iʭҸK\'ұ^Jr^#UESCPdjC6 -Z8/ޕS|)=)_Ie3S„2嵩XL"S =Ԝ4X<1P L =P]|I*%s+գGc%+[BK7}m>) yetW"QUW]<[{{O:M=}'ӮSHJ3)|YjCޠg}q9]N_'\Ƀ|2 *;zQhCN%nڲ ׮wfQR2óz wͬJ@O@*+pO#J,ic\ jGF%&: #qf&ϐ<)9azZObɃgmBm}U^<Xe)1VT( l#oiH6=i9y4FtJ  h LxںB!\ ^zɔ Q1@@v "cz @  RlA @O #Je: >T3@R*@ PϘ @H1[P@@@@>cz @  RlA @O #j6h d޽{իSl 9yI3 !P8wMV6mj*THi [o5s~ %g1b}wVtiر!:tp 6sL駟jժv7?`'N;wZ.]좋.rkڽ{թSo׷˗۴iˑ ח~W￷CY&MꫯN./#GҥK\rvgi>Smݺ՚7on_~c3c [dլY&L`۷o[~`yٛoi+V:8vo9om6|pW^ZR`{wlٲe֠Aܹ}vM7@@~'SO=e6lp>}G}d&MrkvZ'DtÿDv}9%at%ظqL7z[oe='&!p}{Nu]nܻvr"EY~Vn]{[n6l07']mv;&;v\l۶m_جY/O`5k֘DQF\<G&!Pށ%$#KPI{ @%OݍY7yg$,dmڴݻ]v!C8 olر&ոqc+^U[vN9q9O6n82 p^9s|#&Le$\4ėZy) 4];3]Õs䛒kԨaPLe 4ybի;oY`݅  @'+#pzzMO 4Z-%E#lӦMk\~tW]uPc;%k~^{wC{c+m1pT3@R*@ PϘ @H1[P@@@@>cz @  RlA @O #Je: >T3@R*@ PϘ @H1)-On rKo>ݻ^:Gp̘1hymf3fp]=cy` d@KRM6 *:d$gϞVtd č@\Ԟ={lĈw߹wǎGСCN3gO?dUVo~8qܹӺtb]t+^{5ݻN:ֿ_-_ܦMfw\??ڶm{@[r >ܖ.]ЫW/M<ƍg7o5j؅^h-[t4/c֬YvAǠ_~VD w=vnj~WXkJ*mW_9sX"Esq+]ժU_oRJqk߱cgVlYKvJ*M @Hiq =Sawӧ}G6i$zڵffw}wPFaK,X뭷l޼yN@}>hz[Z;_,߿oo@@sŋm/{WDyȑ֭[7M6ֽ{wk׮6de7J&}ƍxNTn];S\[ ?~I4tܨQ#[lYz/&L͛yIJM:6l?U׮]&H^bŊ'| ׮Ia8q~馱$. S+Vtj֬i7p&#(O]vY~(T&/PI0I47^x"kUre'\$TOQ!$j|ʺ,\Ҙ}/߳m__<@o\@^P! -/| (xɂ/.餓NzSOIp-lzO]KdH۱`ɒ%M/r)K7]KBIffH2֔le2qh0@@~'T s &yv~ #+CGx _gj2((Ƀ##/&o|[pI|)tx#!y-ZSL|ЛBC ׮OfիWw:%K$Ԗ}a F XWQXJ"sa8卑0 i յo8lӦMZn$4klzZpѶqFן"GɷΝ;;oďLa'|KstMcE֜4h ׮ gI:yԧD~˛AԜ4h-~)@H4yRH[qy%:KL)FOEkeʔ38Þx wc?jW^1%yɳ믿ލ[>%O)/vkJөS'rΝk7tr$ƖJ㏝K[9Iڕh g qڥ^D'r uMmH1+SJ,A@F.&g #=yT͑X&/^Nh<RBğR =/YQfo-~-rc=ULc\=x]w٨QC< @  Ģm<N''(Vt[IpIeǣc$^e(2V']Ϭ]]dj;V}$ %W_o@@*^*LIjP=iS `Xiu  5@3W@@҅# @ 5*и @*1ׅQA P 8  $JuaT $0T/C @ 1 s] @ L @HLQ (CA @@udQ %J^JA d' M#mE-*Vh[l۞={ @ aeim߅o۷ow{F'!@@\ -ZJ.> z,1 { @H!QRhL D6*A 3w@b"  @Py; @1@@ńJ g  bF%@3T~^}@@LP1a @*?>s @ &Q  LWC TLب@@~&ϫ!@#W IENDB`django-rest-framework-3.3.2/docs/img/pages-pagination.png000066400000000000000000000237651263353514300234110ustar00rootroot00000000000000PNG  IHDRc`' iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 384 156 _BIDATx |%Y|  PBH( %hBIH!! !Hhhs 9M8,[]YlY^dck3wVͼݕYXTWW 'wj ᤤ]ɉӸ8K9FGD"kR   &D+rڳ."@@; J,"`p cP*r0L' ]Q$a}Tŋ[/ܛکF@&(""r\rWZr8#튟^1())׉NЮ\j{u @9\7[:fphZ$&&BPTq)q eڌxxƟ"u pEnDEEH-! X8N;%P D pΎM:#A "@$"wc"@ k=B"@$"@@"T  D!}   h"kZ>DgX"Kl(&B#L(^!a HChL3.\c$סZ^B4>e,EV*ݻ@!hDV[iL>Zrث^j/ᭂ@T7˓**cyjvӄp<dz} ̟ KDan}piٻOk1q̊jgX{VoE<<-c~3a{x+)_x|GWo[ԍIS}r $᷶_?RyߛlzlY@"i !)=I5yωR'Zǘp?2& k c_4o{$Fbx~l8, Xd2yj G %1#3Ѹcj [1~4 .__+Pfdu@Ѫ[pT7̶ OL`P$OŃ*\n,m+p@DBg >u{H8%pq͆lZppO緔K,(d08m.55SxJZ,zHdH XbG f g Bt}l?IÏs8x_\o ObU{b_D9 {Uɜ6@ ocԾD%dܵ~5nϰ9hYg뤛qϕ+zM8w|4]jO`&5T=jF=*>qVCU5)bvDwq1y-X7UH Af1e+IQ ~ݪԀo@zwP_t7Phpr0*`0jC+8Ǯ 3cp^RBlo6+ƜJ1d7c9o*bI hǣa@=b0_ V8j= "ZS9*+ibz2a{.dk`,<E 3"y=;X I)x<*6b4L?gN{cf/”t;WdųTŅO#nLygi%2~$}:c%!5+ `M3}FrUkYI*4#=NN8 ;/:07^XCU[gM*j8o=jl#О] Al!鶗X;-nd.EJ Sȭ74[bٜ,vKZ֋ 7^^,#[b_(W-Dafd |x/w(/rse0f=Wd3N/3sq$S {PRŒ#VjjjҺn#[+9}쵇[cq{02p';y¶nq^z\ȓYL0٣ hTI]ܩ[@{ S>Kr?R+g)Up՗Z\@}) Z|MDtE.@WlL ƉJ"@9Rj D@r8Q)"@ w]J "D#@@'IJq>=RFQ%DHF*$ Y״_JBuuu D 10̎M\LL u"$NU?!ًrTTT#BGA#֣  D%%0 pK$B7L=S3I>ȟ3 GXy  u`HIqvݛb;qq>\"@1i~j7֙P;WTgi8g Ht̮QhB>ę8&Y,G }\:iR-D" m> d2TgyC'"@$R!**r\3EE%PV" & iRA"@poNGBB`'rB^I/$DVt:*{.Í)"@@"nwBk.}VD[ν Dv]"6C@ZF 6l$"#@\"@9 $Dtt3 85V ^ C@C#ZR+Yw, F%Zק+-9r&Es<˯_܊fD8wT_Ar$Mvכ3Y_ ]tOT7V20bD yUܬa Bq0$>nm" tpΧl4,Eȫ>m݉Af|pּ nh-gU&M!xvŋORe =٬5Vv%[İ]5=K λZ 5=(&]@La5&$'<|B:e:|&G?gӶz}viS.Nh H"n4}O5Jl=8 5m OB̡5[2&$qGieeɩ1}Y$e23T%bPw]=1| ?tzCE3s1T>vCI9]ɜ.gXPt f_Ը>8Y sy:P1wAc,E13Ux1?x?ffٹD[kl|_1GƥgFn.D[DtYLvbEC|=D±]X(EϞ7.Lx;, l?6f,$aBڄ_beXȯ" Cgc咩,d=\ha[Q =c8‘jLݯ說cXe5X[pf Xc:ɭ.NDU9ć؅s~eHLw:Ѿ͐3B˷cf!&~BLjD4sFGƪL>gۿ  Q"DZ֭_Wȫ 7cGyaZ7jQ@-ucЏàyliXu3:|fކscz3zMY jQ/qIll1o=l 5 Dq,8ڱ*f蹰 ԨY]caJs>g?@Z3l5{3lb`ѣGlyǽ[x6rӎ:=nm}m+9RqqRc+FDtr̖zr~ig`+$^oͅQ1Oڥw{ߞ3c¨ Dŝiq|ǖQ3+T N$~ij:?m]#^0iǾՈoGԈA76"e5]i.N_^iirmEA/3v}}X`SXX 5.IMZu7Fnn}0n(D5JZD'nУGZ3"@'NT鵥 D+x;UJ>rҀ"*%Dx9i@ r^N"@OM`n|#  D@(wmPP[k}ÕJ Dx^_Ά M **=3G pכ"@x8[]SS ={fgÅ&;M&ʪa0J© DHCs_n}ֽJt#^yɆbŒ#V$|b#.̱'ήO筲s>#{pgKNgtc#_f#δŗXr`b4Wegiz8giHSK M3"@rޠNu"@|9R" 2iF 1uʩzvf qz'CCؔM@#ȉgsB(%e,#y@/_[qM6;N-!M?[JhӒ|Y< ]8!,y,()Ik}i \ 2]/p";`¹Y昗sO~r,Bq/mq`/1# O`z-O㇈krnaXKA:/kv?ZA0!.>D6gDg9&FtsS3s0Ϳ}sD/Ʋ|'X -ƴp6G$̘g0HW@( [ 1ҝ5x "j A&X|PvG@ 8Nfp\7pt 7`LipB  Br!_(8V*ʡP-+t݂4 ( *fLWqp*;2 >7W;p7'PEBP(cGEbQBFTUj@:PQ1g4MEh{:A7t!z=`1; db1jYuL7f3biX] MĮa`m. v) q8]= >Ix59s:%0~ E& \B6pJG"LDb01XFl ^'>#~ H$[ Ri3tt4@L!]QdyBP)tJ-*UD%$Q!$@$AR[)Z2GT=1)[jT9^ ittt- W&OUA*Iur[GשCXY]Yll Nq99KP, r4MƢ%ӊih=/KT0l_Ұ)y%ygy|||B.fhE+)*+q N)=Q )Q<"PٯrUeL꬚GUQ-Amet9:L/_+{wOkjhj4j<$j24c5hkkiiתzMfhkО ٦Ӭ3+ѭ}GsKի{g'пoXT3  valFUFdcqq $פRKw-X4S33o\V G M-, -y-V~V۬ڭYX Gmlm*mzF-vvvv7OYA a~GcώNNl*Κ\ja>3yEreukӭ]=ĽGGǸ:6/.^ êe{xoC )yk+mv=[w? H 8"`EŊWf;Ak&]腈BC%CBkCJ×o Xrʡ(UVZ:y5kkNGcâ뢿UVLe8Ǖ9Jxñ%#qqFK\%z%JJO:4ܘON9Ǘ'U]K`(ڥMӠUi-鲈`+ p̨y:K:u7 {{pG/8׫߲~`sƘ47m칹f qKҖrMsKr?n ښ9o%c-[pдkOf?4#vGgu؝=vՔH ݴ`ǽk*,=O̷eǗwWT4V*Wn:=C* }9ÞtJ`dyu4h/_j  VkS[[\W\׋GGDKqFZcIpRtѿ9~qʳԳMPSvxs|sKDK9sgϛ?vABEŗ.\ι<&hwe}MӫW][q7(|8cDċɔ驂O j>3>w| 2<>ߟͤB@!D+GļΝ3h^;sf @fn9S+`g[Xka>_ԌHҙ6wffyf[5&|E~hw?KM% pHYs  niTXtXML:com.adobe.xmp ? A IDATxw|?g[nz'% 5((*Hz*rvTxARB( I(%BIvS7n6lnfB%|?;3;_ZƓH$VU"x/@0GNDb;2R}Ez3Jbt]tI*8P=z422IMM5DTUUeE 0'//vQaaa]tٿՈ.겲_?B9 2f̘ǏXl~z׼cFDDp:u.يۺu+`@ P(V\38t̘1d͐q]ݻQRR=z BqPRyQLLL߾}1LW^Z/^ 4hdSNb"?uv5@Puu׮]:tp<`__$%%EEE'O^~؃%ÇWUU ><33 ^|:wl2._x*۴i&梆nOŀL&S@@@FFj>ׯxclwqڲeKUED!!!**00w=0JrĈ7oV(={ܲeKee\.4i˗R!Cnj4J1crss xu__aÆm۶NT5jÆ ڵ˓呑2THD6 wG2&&f{o}EEE۷СåK:tr v;0 #ɦOP(/^VGٳgxxuf4g͚uKR__ߔ訨Yf544?;vW\QTvF.fTR%&&?_׳'''t:رc)))v#\F۶m?sFFBHOO'^_NP8qb:j"*//ZEEEDd4rL&KLL>>zթvqРA?^ܱcGxR)Lpmڴa+Wض4og)**JJJӟtС~z׮]DP^^>gΜׯ?32,444 ? `0̞={֭s3gΜ5kýL(Ry gعsf^32 \lJJm$Y`ۍvUWWoܸO> G\0LyyyyyyVVB>|xjj*{ Q^^Ϥ^bF"%$$k׎SVVj$I۶msssJ%{թQBBB pGi6}}}FOd={fffrR=j{vQXX8mڴxk׮2cǎ?8qbD_7`0d2nw pa/^HD? d2Ylllff&o]wk.DW;vHJۨT*m/Ξ=#H$g2LNJKKkT5mן>}3#"R>^TTj^ڶm۠ 6S%!={Ǝ1bƍ9FtE2VHHH^?msmݺ5;;{ѢED^ry\xw_c>| CBB;v(l u e]|K.^iiiyyy OAQQ]we{+99㛣Vaaa.]ۈ#F`tR=.8&&&88XՒSQ[[KDjի'44|ܭ[۽AӱmPP{;@8{?hѢ{~ӟx)Sh75ZTppرc%\.ohh8{,p7]paȑե}v8uuu6ljΝ#"^裏i4!O43 >fɓW\7n\eeh<|pڃUUUUPP0f̘ Ju9,--9p{KD]?~|رmڴa{ מ={2 ӿ"vZMMM߾}s 82,,ȑ#*v֭[}z0uTWd#޽[Z]XTTMTR(Jw<@~~>{wT*Umm-*/( ^=H":>OSSv?{zt9'''wV8aÆŮA`kXvx]'Ex]'Ex]'Ex!0_ {\b 5,v ] $&| Y*ŮA`kXɉbpwd ðָ!7 0?A`A`~S ތ<f?H`bֻq;Nj3)D"_ <lx>mȅ 5,v ]bxR0ngo z$ou!Ǥ8yܴ0 3ⳬr LYD4ⳬ;m[pƬ. uP*۝Zߧe:!L{gha,ĸ,a,0kQqmwQg'DfM6}D_[ D]X Y.!Rut( RMf?6ߥ5zn" y^;qD"9~w>!WS?<vX3k.և +sSԎrd`+z_*'nnѮy]~7.~־:`V3I5A*b^$_p-ԧORID; K_At}pN.;GVrjDΟڥuPM|VXIEV voBwkkHf~N5~ۊ mLs>tYDץ[7E5In= }ӗP9-`&'''##CVȴ#F( sssϟ?ԳgϾ}>~ԩ|"?~`Xvӧg}փ/s=tv#""3|p6O?TUUUZZV_a.]L$ 7ՋkV+;3M ]b 5 0 c&{u<_\,{Q]߯CTɁ!,a" zY[cf 1㈶}:WY{rá "pxۚRCWeVDT>P.0:Bk]cӳЯ'oW߷ל tgqZM־+mٖ-[>+Wiӆb2>s56mR*K,߿?姟~b0`Ӌb8Mb=>]ޮ];N3oݺO?e3^ŋG.M>s< 9îNPn 7 ۡ ㉸ ㉸ yv {h4;wζ8qL&XzWc.]oH,D\Uw(D/}UȵUy]Y9Di.*r]޶SN5}}}ׯ_i&"JII9sf>}z=8V݊۷oTrn2:;SV3IƣێڏǼXeML 'U(nA:v5=Gvd_嗬܋/2 ;s?<))ܹٟwvK5!SSSE N[GWns݂4JLLd8}ht\ĉ\o 1bĈ#H~۷o7[ly7*++CCC٧>'nHl3}I$r,_9"ꫯ>=yC؟."h4ׯO?͕Λ7nʔ":qF~z|A|U_~63AD҇1Yfj54KP: VS#1V#7o޼yhժU}MJJ*))9wܦMo9[nDQRRnݺѣGX,۷G^h陙f_\dIL&SNNΒ%Kt:]HHM;N?߿a6ʼm6DĮGD`אQ\uD"9#o-(YIIH9*HC§6KPudzoܿj_~eח^zi޼y ꈨm۶>(%%%M6/˛0aBXX``2e˖9:jjj6n@.J`f"ڵz"9sɓy_T5MrA`kXŮA`kQ/ G. <. <. c644L>f۶m[nXUUyf[֮]gW9؜<= ;vr*͜9sڵ E={l6[O>S*"$~G6 I8%L$^>j(!NYYR4i-{:t ;nQ\\\IIIllKVWWkw>{liiiii?O7|6&&vڕ Ü9s:vdN'J,Xpj4{?ܹs7n7n;naܺukMM͇~(H^uDbZ?#qӦM555{ol3۷/##^sZgdݻϘ1遗쉉+W[yymZ???۳zBe-Z;~S6o|8[FD&IPdee\rݺufV]dIzzŋ㝖:u*==^|rJJL&Z0a;5k 2w\v/"ZRӶiأx"FzI}g+Vڵk8gΜWΜ9-`ɓ>>>lkk;5kv:}|m/{k܎ޖv[# * ! Szm7 .\{nNhѢfgg7_|w6Zf)!W쮋=m;` ͛7+{W*2 #JkkkN~~~2h4̦:th@@se ØL W4l6 ^\`Wim]@ Vl6s!dw<9e !+]A`oA`"Foa}S.4; GPmח4$$DPn_ۉ,\.1mf62)00жH${q] lwu0!dή̳ŮA`kXvx]'Ex]'ExB7V+S^^`P8mbC`!Xl,6nETTT}TʴJ\.@f6[ʴae}heMeF͛o<ѭuVUVm+ZX26HN p %ABV%dYcڳgD`0M;fK Z7V$22tDo㭷 'Lڔ?O&l6>q|!^9օW]WV֭[YYGlGYn-M8iSRR܎|n:Icsw :t֍"#(j:]Dt^]]7kL"=#ݻw'={;K@@OoCD/ׯofLpN @8ܳQD~:iDcǑ;wN?}o]N}}` "ժjh49rx788qh߾˖--(w)S&QaՔ7\l2{9 W]T QiiO?lED R~pFwWw)ݾ}?OafO?gk`` [0f̣D4|{9 @(tзݧO.--:iͶ2 Rvя?dX,~~{]?QBBBdd͘1'Ɩٽfq/ǹ^CC1 .[n7H;zw:ܾB~ Ybb카Tv˕+ׯ Dw!'O~qdǽ4H7_kV[f<ԍeQQۯ\),,~N-,~С=Wyv+ h2VƚJeN.+ Wt."*-Gju^iiDVĐkQ׮80ڶmuhw*Ap<. <. d2l/ @K`6[||@jěcc#ʪ/Rt>BޑyrT* v)[F=\ʖ۷ YFDq!'B` N=. Y,B y3'0E"T6>Xl,6 ņbHND2VQ-a6ָMc"7 0vy +8=ňVָ=$B`jXŮA`kXfܸu\:kaŮA`kX7}QBz&B`'B`'B`'B`'B`'B`&=]TA`!Xl,6Mh\a2eq2@`{\ =.X,C`  TV4^= ņbC`!w-%܃lT{9{ ņbC`!ؚ!p㞋jpMņbC`!Xl,&B. bC`!Xl,6ɭ.JHb!/rTBjKM {9 s!9q ʔU54z("#CR 94Hl$'F*/*rRl)/cm؟و;zFI.w4 @k'ˌƛ7}G%<Т^}co:#@ tQhM]ɓ9qN՘+lyE͙3{ΜD>8lWrqU쯣F=sv9x>VXntӦM]xN7:rUܹGޜ5ffQ(˗<2yWw>GN}jɒ<ׄvصzM{ݸqa6lx=ZgS\9/UɊys*"襧d2eRt:]f桴4vcNNCrr\mt$#Gpzw9r rMFgeHO8{,ϒ׿ڂ=S/t^]Ǫѻ.2)B6aN7:VJH$\ŋYU; %"0N'`o-_³|EEE99Y<0jɒ+W~+r[ׯ9r$9T`;w4P?vm׹]K.8qJ)۹sGVV֒%Kmbccϟc6{jS999Da2JR+fgg_iZ-;z᱒xԨ_33Ѹq32.] ڴُntjܸs̚2IFcW%''t< ?'O$&&]aۨѨu:}rr۩5uqpi4꼼XAnt5]m$;LimhFUpG(Wע4Mx@MX<. ^uQ?O_1 y}6Y?*laNU5hPÙDWTT~k9NǾ)N~~enkr"tQEm w޺ٳg%Kў=ʽjٲwo3L"6lh=sIMMeW{^2d=Ԕƿݾ3!"|e#y:C*`_8ݲй9W~ُ1&dg咪͍?oPo8uMWgJ$cBΛSw*E'On\~]VVΝ׋c֮]v϶PDԩSٳ ?{ƙӻƆ+s[>r[ȷ2˚G=j2ϹLoC  N I ;9.)6ěw0ET7bvcffC=t]YfT*Ԑ!C>7Zt2n"W츶:{?<=p/ycx~<{T~Az(^]JNNvV҈hȐ!ozvvV^w>Yj4U[[̟ %&zj_9yzo/6*J":}tΝ-#)O'w={:aȑT* Lyr'8(F=CmC]fʔ'׬W^ĮqYR;FyKe" ݍGhӑ J_IY0ilq?ώlv\QWg~D&5jj:66[>OTAFKVy4uqqq\\R0'OXV;jZȫWR<@rr'.KɎkۮ,dKjmǘP!+#ce Y V[ &URn_w6!]\Gr2'Ea-dٗ^(+\+4˻+uW8UbiU/fr< i)ot~hƌ3ڻv:QPPy+sQ pF=uZEјcte5ѡ>rهO1&953?X`~u fugƒ_xFKY$!zoҰm=kO%$|_c7\QЗ{Ca\YH\J _pxGx f;^^>:tXjF9ӗ6]~ GHB.*3l亨Yfggg͞=˶Fɓ9Oy;žޓ@_߰U/ Sr;Ɔ~hHo徧3#]/f™eA~Kvω=ŕrrdwD{`48}[eoDv &Ⱥі_ٷzxG(}ql;Ԅ^x~Z5o>ٹs第:œ&M?naÆ׷v'+֯_n˛:u2&WN])>ʶjrIN].!p IDATMMDEZFD*ߢrnkߙw8s؃O }Qp#x]?~n3yE:u'ffjN-^nV=|83???11.d}L0ey:Ziլ/beMUcڪ3s.,>݈"ULfKɢm:SY\Şy_mq<3'w W!"(qF_\yixEeddhZJٱc|K8VU R__Ϯ4y޽dggk4je&LGM*tun[6*dųx~!$Q^src:O; .H$?:Foy}BzkV<{Om; Vo4uc.HsQHYܽr{䷷7h ꢎ9_WWWeee5vwUUU7>((vq]v7L}ZEm)cTckKn6owbLΥ":KB$W櫐zw~u/sup_%Sl?:pZ׶(TWgcXU֝A!U:y2穧䓕+VȰt֬vvu(---55w>܎Be€WfIne3v4[ٴ6#'J}z{fv%nmn< Ǧߣ r<4~ }eR\'YuݡsN(p.ǣX;=E?Yqf?ڛ}Jh-ZGv}|J~Վ]3l hn1017 SXRr\eq ]+ U ]}TsyF\vG1W.ew\wtQE'Ex]'Ex]'Ex]'Ex]'Ex]'Ex]'Ex]'a2oh4 tLH~4V E?}"Z&:PEtQ!jhE*R**@UeX\@DA*Uhr~#®*@$O{?@+]TTgl0Z4A;$lCM`j/hE'ExtQ9xU_2j0[.k*VtQUc*(Uċrv/^uIٞu-/7mBh&! ˢCeQM;\TF#y3Wǘ/g"?U8WǦ NKTy@505DDDKDVQ]1;\V1}c-~SJWsQԴ07>ߕ&ByovMxJ.ʎeip,XItBPlA݉ȷGdž_H] bn'ZkZ=c% _N3@nm}/?ty_.Zunon g.F-$@j~kOZ+*Z]vZ\+ޓ]Bikjx;X dA!,2${R-յϽ_s'oĺ͙‚xse_Y ?Z\kWKO|~8n2̶/\@+'Q11sZITT؁~jTm$^wX_70RJR]]Ba.\*J:+{wRm۶<^I*|[("H1<-77kQ }U3vۣe_hExtQF,EYWN+wE5jMKW.γ`-jՈEebl's_Ϳ`-;zv+;+LD56xT }O> uiBfo3{^}HS5eҀ{y]q m΂G@REݙ| ? !cּ<1>ӭ̣DĮ=,o?ŷS#6Lo:-_2{Τbe*bh]Zʵ(Gv 7S+j5!/ϳיpS u 5utsAd"Gr(u##?nb?\u'o"oE7.t;vrLDDJoxcC[SR5µ;zn&ɓڔNy*ZED5?I~SGL3PhaG)cw;;ulkg/Xu-XNղW#v`IrĝgjO V,huZjJ7-BA T-;V,SkQ-(O.JՈȐqA1j)]HkYz? V5[-i`""4`j 6Zw o;lT4r\ Y89`h*e~-$Ŭ}'.rҽ~IDT:ESMWKkVhܜjZޘ] QFF*o#!1('C1=1VKef0S[l{آ?b+T!ScYH#'g<ԿmDdpL&YX_ZR7ngE^4~ "Y-Y uF,{6 1! a.ʑQ6PKqE<},I$߽F6.Òìb[/ԝ|{tl%n~~L+FٜfuOX߫8UUXr(FytTϝ}&dYd!"j-VKmZlZ u/ZV-J"Eu7ւeRV$$e&Lf?B$I&x|fuoµta'7ixxC|djdc/x`IuH:5\j zڶj|ۺ#$]4E%_;!%t-t5Ete(5=b}`q~Hu:) k,fB=ڊz\^jW1/4ݲ~Ψfq:-dEts :CWzzuo;|-) Un9EmW ;+k]5~`GZaУte=XѸׯWayζ8{೧;\譑kfZ#Df蟯T5;O,Nnަ,lQydu!D-u|,'5GW^ݿo^<yVl͞Ro Ưyײciw]Oe-%iGd-1\de?sk^IKNпPxעFiȷߺZ,սR9YV]N B:,5oZfBFyAlZcFhIW+$r^]stȧd/Q:!D<+E J 9}6 fVRϭHzO2fߚK3z-E9of۞@sg U?[3}ƔOsg?ԯZ6'&L{ !.^N1(²lՊž ǒ}cl9 =UD@P2ڿ1Lm"z85S VHf6#>uoԥ>VfeE./ոΨUqk4AkDRQ;kMZ%[[L%k:dݳq׳,zs\?vHQ B1LF/\ PwywKC8TX^[[Q]z@>U.[aR~7PkQۧV6[әl$[,Fc2"_ڷJZUzFZZQ^~غ{WHQQ|K+K&d2vl66;>vRo2XU㘽({4Տ<^%ޔL\|"l"E)3,hS$#JL {wE݇k~+{zBP8ds!"w>yzVU%QKT9BS>tHeeeyy1c.K/PQ;i "8)JwGqQۺ?ĸKͽ~wہvW&x< VF–U*?1U׆u-˖Sۛ?-ƨڏLE?P+p3pO]_&{y|]ϵMx_- Uw[W[\}_*!D<.ɬ`gEvmzʻ]|!pӽrwӞԯܪŵlc+*n{/v6L^z񝍿B(-9f6zéݟ}iSU?G*w7уϊQN{Q'$Iz_o|̱l>G_)ͳvG8(,ۯʵџDg>jh38 HQL pt_a!Wt;[24ڭ&DW8z/{2 גBC|"]|Ӹ D:g̾5iu N7IӭƑ/g|q̟%Zͼwu7aKO18޿a`/鳦.]X4qj>w*˖IΚ{{?Z.>_?5yoϲy]ݛ+Oڙ轢jN11Y@b_&݈cpҔ+t}5iaO+f.[EDu>(mjR÷u;trvQva;m,v/dGb_&mFi!ˊwbӜ,`mQE3Dz%lDIw@=}pݮɧE u,g>1žMNM_am'rpm}[v>B,oB?H~}D |9㡟7zoKęee3S|zLU5~0f.;-뼛)˖賡I'ݕpɧ% Ph IDATu g>1BzNYAqxχoxV-s[0fGOhgIуV3z涸*,ߺ34X~Wl|]ڧ?\|L`iE978_g]&,<ꁗO;^kzZ xMy_^zLt=c.[RU3X#řc}6? =GlSzeg_Z&BF (:]+3=FQÇZh':nLnl2I,mv]N+@Խ:\S׸qDfeEv0;٣GNn)9l|ՍiJ]NП~jMa( OBt?#u-?xX|쿝5͠s:(0t#ٙ}ۣվMQnk!H }=ˢ7sRT7/%8fxW EAR;vH㖄-]Q!)JY!}[.hǡ͝Q!)JYy}cHgi-$FOYt7ӕzӕE !}=xJ)i\f)Œ~Bnm4s{v=GS~{mKK78\25Yi9/N6%]3*\#G6轚._g#b Q<.עڍXmZO^8uB,5oZfBlmU&,&mNqszXy%ٯޗڌȘzL#lw6L}\U@ EŤzЊ}.!gNi)']5^ɓ/Z )ά}Wwmhm&(NHxы>^!z&M*ǓK}CZ!N-ŧ GJc+pLN5hH噕Ի92ѫkF9B8_Y*8eg kQ1ђ&|ڙ!}B6gnk߽зnWٵ3$YΊs}9 ݈cq=h @P2ZjG~ԆIH,t#PJ݈.M5$ӰBh5msFCUP) @JQڃGKjևOB(^y3$@GIlI׻h $JQd4>0Ec'NxY>{_aw! %˿.>xoq8i))mТBp÷aY^jÇXH< B4~(J#IcGjH@%R[yIiy7=t.<x 'RT^M61Gĥ) @˲ܯWxV^ں{W:lw! %`x=B@"KnMsƻ *EɲlNMNw- %T B_}_Z@K.;.+#۲$JQ7lw %`? ƻ0E]pްJ{]Hd rkJʸ]Hp x- , EARQr<] _wyhZXa-\m$}읧HQj(>Q}dBaOW 8fw˾[V]M]y똻mڷtofi3tyVmn6'}i;[ V~ۦ\O͏&iBȘX+jыnPo]Qvw !NGF!鴑$1\B8_Y&BvXv[flHJI ז4|k;1rS7˚ԬӦ?p.']!$I贊Gjk'~^;}E s̙V+p-]odbgU`Y.7=2o7:&q5tE4bn@a9?]B1Ix>PvLÐ>!a{Y1uC%USxkaťW=qmEݴ3!.^NQqop@jNt/[^X2%!g'uAhy%ӕzӕE)~*fW1'g)Ji`!DC/ڹKrd6_pdWayζh%׷po|\B l!DGo'쮚9\:"z>ܜm#ZO &{nF7:Bmk$.~H(u=FMXLs~eie]{#ڟt*RTL4f!,m,ƱC_B4tɕRnO5 %M[y!'PC-7Jc9;z11B i8I=.^gd/%8}/0̽dwvI^p»Hok BS&P+_0oaa{$ґẅCh<5υ~݇Nn3FuٸK `sr(,^٘5`ZPԦ{OrJP(z. 9i$i숑 h/RTL/]/@ӿmadC:ɠo$AJ4˻mFj5ڟ8=5Q[U;#G,9Rp! O@Б#ǎrr;.M[\CEwsg-PR(e!Go.6]m9O^wW'XZy/C [NCvgW@"T]rԵBb{V=5?_UqkƚWU:_l;++:aQ[ s^l.SOٻ?~oLU<(o+ |bPOqI6-Ze8řc}6? ՏnSg7lq.^QY_??k?-{5Y(eуA8¿Dvޝ-}Vy"Z+ O~ckj!~POiyA["3fߚפVȁ?8sZf޻^IݰvaQs0}YSe[_,cR~} n;CgeKو$DIgͽ=w-/֚gYN͕'OK^k5wQRTL 7F;}\듯IK {|B]Qo0t ]-"qFiSuۡӰh ? ;oÖ`Y{&?jnCO7i3M#YV˘4>`YuE;h-R9-g#Oڿ*_IM>-]|y8;HQ1Q+ܤq6}"GJI ַic!j&|7'zK` Ǜ3y㍮ZD[Z1ClJ1ŷ4[U1 cλi̱l> ~ҺAuEޙ] 7|ZPGpcDsRTL{>P~íj TULݲ1KWMӽeK+*q9<+:8XV6yfU|r*]^۔2]8Xn/Ǔoڧϳ*ctޒ^)˖I9bX/{>2i4bn@a9?]B__^kE1"=>0@;&f@pgr{C5.CBڿ.ݡKX$zR@r\\Rj7b=h}Wg><%{ !|:pFּia]9YV]N B:ř;qtcܿL5OXOsУbQ=hE³nڴ}/ɗVgV>==k.&0Ͽb=@㭛1R+DTڤIcXxrIoA+鰥бT_HXb W{WЩBҝ= ݈cq=h @P2Z*Gu5m@Fܡk3Rl$IJq9>ItygUtuF!''amHQ=EAP) @ R(5HQj EAP) @ R(5HQj EAPCp8\UU;3 YYYM+ڐfsrrr BPUUUNNNpGkUiXn\(5HQj EAP) @ R(5G]MYYYMMM@w* A . U;ٶm) : w EAP) @ Rk׾+-z@DPEdݯV=so638uuuk֬_WVVVUU͙3G{Lp8\:EdÆ \s?!裏.袧z_b޿vf9s嗇馛?9rvgdd<Ch2[ĄkQ C0| _K/wdY...޸q㧟~ F'LjB޽{/YdڵB} !f9#X,pl:j&(#Gzcƌٻwk2#GO8qŁ@`׮]&)2^y-Zsma&uqDR`X&L0}tx뮒zPN<'XjU]]̙3wڥ8x㍜ñqLaMf#F*++ˋe#O,'''G n;55am՜zɤj}>hlad,5_Ӎmm۶!CĻ v{QQQ ˹,I"B5PBXBORRR䋖#TPܵ IDAT) @ R<]ލYm۶Ż t'V5%@ Euc;zj EAP) @ R(5HQj EAn&U;IKKϏw HQXMM\*Нl۶;zj EAP6ms;effg}&˲$I,_uU\#w饗wk.&MB|Sxٳp|A}7aܹՏ=$Ipxܹ7o.)YfB:jԨg),,>qСnis9rыw VwW4{+0sb޽{/Ydڵ*-w{<8޵5#GD6lXZZZ999cƍEEEgF^RYYY^^^,C?&I|>Ѩbnhm۶ 2$U@7`[Q^^εIJJ|.B(5HQj Eݘjݶm[@wbZ]$RT7VPPPPP*衸) @ R(5HQj EAP) @ R(5F܍Ļ t'iii) ]m۶pG@ R(5HQ"ruuu0w!lrV^;СC?񏯼xWRJՋ-z饗].ׯ.Lǻ.pTZnUW],HNN~}>^WWf͚?uuu۶m[jjE]iӦ^iӦ:swW_}U՞{v[ ĄRiiq7oޱc"==v߿W_}w vo߾o nh2y䑪GydС\s͕W^{@x\!ׯߥ^Z]]]VV&0aV=tȑ#Ç?|pÇBdee|믿~ƍwqG}},g8J(&L܁GL&!D^^ޑ#G%%%yyy:!"IKey޽{/k׮vqGO?6mZ^*++;???)--y={\#F!vcl[nEL>9k٬}W;CM9R?o_K|% 1mQ{2\dnLchgB̽Ϩ~)%LS4?⼴ \/~V& ѡRHGΝBqyr- Г19(`"|r@Iҿ*}Y*ڋXA5_U,~FX!93Ewۼ]hrZ蹤X?~<## Bp7kYmQDz^{F$I8v.:w4hn/**ja@yy9עpPH?YꪦiƮ9"Euc HQݕ$I7!!I<HQXJ ɒ6>ˇ 4])$鿋}q)~2Ez,RT7l\5{Bn嘝 Pսf) @ R(5HQj EAP) @ R(5HQj EAP) @ R(5HQj EAP) @ R(5HQm&2) @ R(6$) @ R(5HQjhdYuF : Ba:Ib1//0.`0dee:L&''%$P) @ R(5HQj EBwt,2tmrBc'}'PRZIENDB`django-rest-framework-3.3.2/docs/img/rest-framework-docs.png000066400000000000000000002255041263353514300240540ustar00rootroot00000000000000PNG  IHDR% pHYs  diTXtXML:com.adobe.xmp gnome-screenshot @IDATxl"7g6C(6,d<󚻌ɫf6ֶI4FoNmemKٶƉږH586UDHė[{(rokY}ȑ.$($% Ģuh´?/>X@ p<-~#fCަTx;[k.fa4qC'$GxB@ p"-4Q3\+ДM{ 6tcSgS.ˀ٨Q 4A`km0 F/m2p핌WDZ ŠQ|ս 0s :[LH +΁N-_v>BqPNPotл@k_71xmXY)pfwν9ٺuͧ6RL:3%Ea!˾FGZNfCA 3QW2+廑925b)L$׬ 'G(T_]^30л۹!ߒk1#=[h @,N™~LSڢWU1(zM%SFB5p󆄍{6esS]ÁAgRO >M>zK[EuW9K%}^R 8=kY whfڠ#_z7~Qk4F(cnJWAYN0jZ%Rwji<'n|CK[DGF&d-Uk;'Q#d_ϓ$Za(Z~`Ϥ#A ,tk'ؠW‹u/ץga @u 7ݶsenW7a]Tɕ654mSptɠ8υaROoJ^~~X=/{-!h A4*yR䫼rKmK5&Q䗖Hk- hNl8)H$j,[ti_ys. EC``$OօOEvhKun:h@ǂjfp]F0; Io6];eQo3v-ʷK~p VoGgU|Ᏺt&f/'t;=  G]^' ]QJOBpNx&7eQJa6|.KCa Ju !-vֱpS3m~S$M 3^JynL,#bCfgDzٷ+^w[Ҹ"|fb40F(tj64$HʨAAG7|cbAPɨ488s$0{V&;K팈-dzvo@ i ~:&L=hNanjEA]b8}LnxwŽ0Ac zwXgo $RyR Dh-g!Ifn~{ʖˌvY胥V]lxAIZh44i69.M|}x}1_kuZO+Vv*}n"I1djE#|ulqw8Tb?<&ˏ)yk%%bkle5@ pL~C4 hn5N:&~͹oÓ {kox(AS(  >He6_ʡ YHk_~.J *Ԩ*c:\j2?4 Y'j5Vӣ#BZe벼EО < lG'Ugc:el;ѡ,M']KN / 7/d$ێ{˴U<Ѷ*u,IZi %InKӟ l @Z9I{&lW5۱EwqEr*?[fA\IʮhڿJo%]X8|F?>j(| V<ɿPFlE#lhQ~nNJ Uł.rQ+iv_y=`3K-f[b䈢B#|l}_8jıGx`MrON u{O1p6Գq @ ͧbsK[;+^F [w̡}BתjInZ7O^S,CUEXH2,,Ej[Nͻq}DRsytBf>~ll#A4! ^(Čks>54GYUXv53]S5|q2 (aww5{jq @ m*UMm">ϒ7\a:G'ifmݾRܙOXpcѡNk&q6LhwVo}#Qc^A@OvS>Txx]YӇZKŠl1r-9:`kU+›ї 7]^͸YPi$Z9glf W4VTopg~C_ uZ!~$t\w{rc=Z|@ x+_Iuw:ޜҲW/ xJjH>˕yΕ+~R@ @+د-أϣOzڟ(GDꋎo5׻;`C&JAAGDZ@ hTzHZG޻*ny}#/~.U @ Xg? @ @p  @8PƁDH@ <e @7$B@ @o< . @xHPl6[|  @aRa!q `|㸅? @ZWF=Z@ @q @+xu- @q 8na@ @Ѻ}C @o0 @@ hݾG!@ p7[C @uonߣ @8n-!@ к7Zr@ F @h]h9 @[q #@ { @-x㸅? @ZWF=Z@ @q @+xu- @q 8nF?LÇ⦅Y\w}$d^’< @ Ѐ7ӎ]Wl̏ @N)d_{K?t3x7c'O:\.,@ Fv\}a8&zd{Ih:֣2 @ xxRA% wˬe2g~WY~/v!w ?-(Ϝ|˵X} s?s׵hw񫲹^ʐiM.e}vk}/i>@5 @@s `>UsZu7~ >C%ק_z~"o8?_|/T;'=$zn~[IƟR?}~M%g>oi=s??>w=?q/ͭ -]\Sx;y}uO)p|祿't_S/A|Ok/JoU; @@QF{0~34O&gg?Z?o_~z?5z^zOƾҗ~n~]lW%W~x`K_^}U/LͺB!!y?ɿ+z޿{Eno_LI؅ @SϲAs8Up'̗ow l!ؠ:90+>׌W`#fx$/)(w^' 1ھl4O|M#hˉ󝛆|'|_}j'Wqz[;'-gG, e @7-p}t.}LO> /w}/w¿ R}lӓUd߆? ϕfw94ɓ?Awhg~O=GOX~!i%h?O_/}Ly'|u釪O~ϟ%/"H'ξ_/_|YTs}g>Ml_8>8zUH|t>MYrPg4'9׿?tnU"LvZT!;ө#)Gy=CG;Dds2B,Ac i?+7k >]og>GkJ_Ψ?!P &% @ PPl<^ ^xXr}Lo3ÆMW~=O34*Qϒ?[6!t)0R @(RLO{} $\~{B:}_|'¿̻?,7W9ELw{+ #eOݛ9^Յ_c>9Ӫ3{|@ΟYO|{_^?z}wWSIa9,i/wW}<=G>q'eaR @ <7ްas?8XW,?V?x+K~wΐ*6<~{?2ߵ~kou}W'M_-o59]}5[g 4J O3ܱ^*R @ux,%#U ԠM7ē߲odT[s/чO|Rd[f_Q} @@-TZtkKƉQC |Kip Kײ?<#  @ /3#}W=_|Y};g; X @^ƩV'җ^5T/FofJVA!@@` uU8!.@R7jbF  @FPQ@ 4⍆2T @ #xa  @@ h.C!@ 07PQ@ 4⍆2T @ #xa  @@ h.C!@ 07PQ@ 4⍆2T @ #xa  @@ h.C!@ 07PQ@ 4⍆2T @ #xa  @@ h.C!@ 07PQ@ 4⍆2T @ #x=!wZsP5ȘޘT:_~ 5.EowٳӹmzF,WktfKI(- Y=4M"jB\*xx:Ϫ]i8Хtʗ @ x"/^0ƙ]eCXO:i3ڥ\6לEݨm&!絕6+RF-ɉ=&9u\:^܌y'( @',x8F; G$ұ*,!5ҥ֯8h!5NK.+v^#>PDtB9>\a\p ϵ1&{&&/3=n:aթ=Uڄ @#J$2FqX̺6=3bAfz̼$%de!nC*?]{o] 6 F=U9 z^K@ pdo.س"=h:?]o [~.tIMё=# RN}2k+!0//_>g( 26hVLC HȞ&r`ۻ/rQWxsFˇT\*q/{CB/eGet,m [aӟ4:܄"X~&h. @"x W 4Ƭki"QKI6WmxnYm4$}I2;dAjC50&Z?O04>Y_\ܖwY4iG%0њd%_epҢ2m v c:BDT\byl'"G.&t49Gd⴮#+Qwtts6f  @%oD7קldї&^K;.. ބyXo0E_Qw[,t$Ck!V!אQMJ9KxV7r٢/6D6g%W+3ʾ|%Ft%|޾]I'2FX>0/QUU!c|B @s07\[>`Tǒ;̋cXIDñȐ?Oì`%Z]&"<>rA.aMlB(2b.<9a@v=@ 7s4v$ў[vh0z՞SUJe:ki; Jh1 aX.2|q؍KBmP|W:$}$*}7?&ex2N&h8!$t( -~(@[Fso}[G/{{caqon މK=xVAT$Y ݛKGgS`o2Fޡ x:FUhS eD{0DEB8)DAj0=H!;|B @[I4Wnt_!l* >4:9X/oRBgRw2䉰}K2k7@Z lm2-ʕ"XSs{]1ѹZ ?/j7^MFIjqέFZRq6pw> tY^? 9b 4޿Ѵ][˷1"Qhᩛu;$(TeHnPldzob*:䬠k1VJ$.?Hi*y8]idh4.W>pQCG2yIٗ@ &@фzlMJW}.w<ΖIWY2x[Eg+4k|FYuB&l;;b]w!uuM I^UR^&F; bd~|NV1H w)lܖ~|@J @h%̧jޮ֬ozls$>݋u?}!PpDDʿxO:x}pD:O-d螙'I?]beZpfRcw ݘ) dT6[:_ڥJRJrx\ĺq8?iY $ CtR.GŹQaU;:š  LF8Q+EyX 8@ZMFxn̡"yJi"^ks-xaZ&6 Y*D_hv%Gh.]ϖQuOћ˞`ds3JGDRy`XӗTfLJ7'McLd]3%.'m;zSz+8˵׏ӓ`̟tDevȞ @ZO>WV_z^Y5_>:kZˤXM!% l\m*GnܽAjB PJ}H=G+o-r>M\|qz.YϞ:xij@JP`frm%07v=қt}F+V?p @`}$8МLK^GTn۷P9*@ o<t$mݗnt_zDX@ ЊXъ6C @do3J @@+ h^G!@ p27N@ @ob @8'R @ Њ7Zf@ ⍓qF) @hEh3 @NF8@ Vu @'#xdQ  @ZQF+: @ @q2( @(x+6m' ni s \흎:oNi}=o:l7\M|}_%. We[& M6ڄ=hֳ>G&XsvkcѽijۄFE+bcެ'{.ω 7gUIO )nbt_Ƽ@4#"Ryqhͥ6KpG$o\h$]UUةY|U:ReT*۸k޼!YA+fE!/6tw Wno!)Yd؇ ⍖IoBf.OU-=(=2*zE`#MtodRHM!xS*yyĺƶ&2&CE5}JM։N!ع Ö6䴭J-6#>vVXǍt`u]2 ̎LIGQdAm4_bA6m(L!KG 8׎?PM(zŪ*Qټ0ܠ߻UmS˺+ڈsp{5CZOFO> V[>Sq$2 K?W.K pW*T&mpٵaLW7W/8n^9&Qk inL_HPSFn.z<'&퉝_ݩ~6zcBpqF}6ѝhl'F=-˕ ]PU%7kII V{w Sf{s oB/F6 pu_ 8/_p, ^[K˃ "6"re:~tt6˗oezgz~܅1pXx?"ZLcGs <0VgdO@ڜ={5Pl#ž88[* 䋨^Ov;;g%v}ɅRBڴ[{F}YP!ȟu/U{ٵˆ)(ǑLh9>4Tv-P6C"CotmLۀ1cQU![ ypCݭWN{%GJp[|8 gd6].E}K/^IN# %q۠s }Y,8]X] .2Fc$}sm {^mc4F7b)i I+o0˅lhRt]!ř~Q9y{.1H3 9 TĪ֓M$hJl[LXn\R+K/wBr!{]CNNz] ID29"g%\Ro.WvONtk򏼱gY,pEdë]i$ުk{Yg$ 4Fz=\6- _YMoSݻ[ IXo?HFwH8 %~ڤ@<O\ r~:\CY{}lӱ M7k*.QբC"CJq2Iq:T.kM3_Z/R~пk4PR2C '1M]~/n;H6)s\t̙5YH{&K-xPi ~/DAՖ_12:+8:!Ld0 5%JdB0ZHCG׋Wj}rS'Cn<@hZM۵kX*V[ǝ:=9ⱒQ]8an Ƭ[=E74[HJO ڃ2th5^ ӐAk3{*R=)vV*FWUmY6 &UG^-ZH0Qiw$*V8^1\ЙkOfQ>Nc]7/ g0 MW_\%9}AZ%=Z;COϨ&zc b@hbh=D XZ܄5I/TCj4rtBV&S%?#r]ƨt~iMt#(&9FQ:C|DNª~/GiڠFUi3|>j4F=²5Nr筷W =x>:K#}U= w :tt }KoE]naix!̆k1)ʿ#/. <&e0UTx;逆Dݥ I{>ܠ9mtqat"m1]w׼ry'Zs(J:'(Vi3_4t:CTiXԜ}\]KUjtתD{i~Iq/{k4v/6M_ȯpӾ<zw7}ʊT;P, _dƩsŕMV@w!ufaFi#59 <#!3w|LkoZ @hER\-ze|dt56 dG;Y'[b}O߱p،OOM[㣥"筙՛Hh#5 <,y4m?}bmFA,f2;筜~G7ɫMGl7O$'A؅ 4S5sm M^ /&^Y}]Iy-as\O~ OuBT'b @ T5~OU @ *T @ 'x  @@ hBE!@ p7Pa@ 4⍆*T @ 'x  @@ hBE!@ p7Pa@ 4⍆c(|6]XN씐Xsr=J\dEzPUl;D֙~ٳG/G22#g/,*| @ x4t "SQA+&3ۤEw[GB0#Q,zɩ&*@ PCp8-4;aw%}sFV^p.nk3Z @oi"cWm"VI<+Klr}6)ua"Km8g͜HnIRԭYfiihb[.tζvC_~.D'-;pkbFӒ|%ΰpu+zjKm acs9nN]<>Y_r7d @@0DSH6ph4KDj?~}ĶMZ-NWGfk4ح1l(;;Low66mNm#GX ¥I"תF7jUӨh)VGH>po3~w4x؀+>:47ϮٝҷQ61-ϽPs|B OlQEXJH6jBse>wL%kla{Q߯ytBzjcw~cC,n̍!Jp91v107V9Hʎ ׳(JC != 03aҔmS[C.~DE3/|I]Od= @G6X"CJgP|>xCޡNb7{zBdtP헤tΕXk&J1jZR+ZcT1?giPk /e[5 K^)2,x6?_oʹ ;{ۥ7"1MK`p( 7gKFToOʓ^Ǵ:e5CBh)qmr:4tu5tNEk<־^@d8 GA  @K}s*Mʪfw|M{-IvtyhG @q H´ʾMk7NpYX* -:v3ުq  <o<; ca좓>W6a;4Tu @-+xe9δS 4S5_E @8-7NKO @h>קh @N @OF)Z@ "x@ @|}A @ 8-=z@ @o4_E @8-7NKO @h>קh @N @OkZt6tw2ZrX3L:ﲁQQ)d"ޠdnɎpU @XLT&&$Nndy #D2Ix._:ӜP^uG @GQŚ2}W$ill:c+`3ou\.Mvȫv/ @ƣTf`sd ~XKm|Y~;پ.-ȋ/^_F3Gf[D;B޺u9w7үf#df]8}PBJ32l7{^ |U|/_pùk N ez-5Yo\P~ĤPg|B cmЌNAiLl9f[d9Ff?bI?.I2f:ju]V{$WW2R{m+ tIOFNBD^g%~}ĶMZ-NWݒI:aC;mB4`| @8^̧:^̝ZX -Dl17NV%GWˡQHd +FY;l1Ebb+qB}U z''ei,ȇn{]ԣs7- ™e%q/iŸoqΔ^B2.~^ؔaF猧"iLW)Yor^!@%x^M &D IEU9Wl]:Ẵf4rܯl"N'@5zVub9I;dqFeTV L*E˯9!2Cd( RPΏpSFT @"xXX8S.'IJDvH{&IUtmY6 \ ޽{LIQB=pۅWIRU); SZs @ prXqr֍P-lA [%i"FM tZS&YXƉWʴ__JMwcq~.6Eaɥ3iV MCN4)u}Õtp] @ze'ze|dt3}}.8 + @ht#[هkcO.aRa| @(x" B @uz: "uϿJ@ -? @YF#@ -xtj@ F@ȽC @t 8sܵBΞ-셅־뷓Z<;I/9W¬Qb#F^<{#*e$0[n|,WV!@8V۰K>KWs[6oh56f=[ VʾiǍQ5SόyR;܊A@"Eu2mi0G&Q8!w@ phjt Pߒ}gXƖ`rѩKF;6%wxsFߛ@y@fwvV~lWWڬ3gCv3"v3fKg'|b^brLwz:c;UlZuklOb|S(ʵ4kWbTliuF?wGp$*HR\R{+m"BJ5hc61O.[$@5|+~ÒkSY[u ݵgHyֿO\sVmЃU[+S[9M>˚h#15kܛ|YK 0qP4K*B`sFV?"quŏ-(}%/I; Cz=5+xId9f&ZB51`&re}|_OGTS[w@8}|M1> -2.R>bKF7X̄oZVd,oO*ѳ-bCB!#$/7yR0e4S{>YJtJ A rw8!{f*%ۆWB2UJj\RRn4:"Ĕmb"t~r91VJYK+/@ pXjt̀Y1%o7MޡLqKFc q%x,&b2[>x;Xz[aQ J:h_I&sRz' Qt]DL-Rs4O涓ӽgw6i,uըNV(N?+W,pHr[5Ph+Ex&QESD-Tbڠ$H3iBIRt q{-.U (= l'cj/ע([#H/4RԫbzWLUٔTP|B p(bjDͥ۫H !| T%`k`iM}ҿ{í1 tRӴb郚$t,f}%%4J{$Ybȁ%YwזD 4+<^kUskR\_3 ?߄j+yv}![|B pD8"X%τ_^NʴWn̿Am}0{Z %̘n\t5 TsiT(Kn2R񳲄-|zZ;ej(2t&XPQծ=5+(hBT. z_TThdW&BS\vU×Bjzg^>B(Vm:pS9.IZS-}ET!؇ @@5l,TEJ0q{ֵdBXOtvI2 m1R1 ˦b^ݟ jܯҥ &I>$uGwc4& %Rв}aSIwNJ֝PT>%zmEծDodv7ߴiaRVJӅ.$ɷW]"Y?3SUҡJcJW%VM]ݢ?Ld`Rj+zV<}zO؇ @(TEI&WCn;_%vkxq8Cat,͊ Yׄ5<`ctm7I47If]!}>@z1X~i|!^fQ=|>ӌe]UnLt7#)mTWk+kTb2cn[ѧ&jtH*}QRz]zܤs}:u҃-.QR^5| \wnEMyW>KD=^7l4;U.m !@%X{u(/䭕6w"@k3@Rժeы+%m @uJu˫2JkS5 jy6ಎٽT&Ztzf9 @@ `>Uw.vTiE'}QRgM` )k@j ިɃf7W[Pϒ @8%OuJ:Հ @@ hNE @ pJo@5 @ Є7S$@ #P @ 4&T4  @D)T @M(x ;M @)@qJ:Հ @@ hNE @ pJo@5 @ Є7S$@ OI=PG#L-{cJ&u2 @7Ќ4@bKZk!bz,ln$7%nS7SH 4،@nbh_14g/2='9 3<^ϳ8aww gRߊiɝ ae @ 0n7ƭ;W4ZST4ͨU*Fkt[!@ "xc|Wٝ_mm @?$7~kRsssoYInTal[U6q4V?sbK.ߔӬX=LzC6}Lmo!@Y7zVw>F?6&΢@2LtL")2ݟnLC9 EY5YبEdIgyk7D:1hh?+ @#$xc:M)JRܞ>&`DSuiZmJ$.$YhE⾬n_Բs96Ƣ=[TJB[{.Q4ӒQ{x@ 07zWu}FR!'oDccY}-%$0O؁fYEh͎)M&uF)njֱb0ՎMDA @1r]j ҼW"TX<'$Obb&IN` @m/>ۓZdTKR-#&@lA"R|cZ&i_g>IWʑHFR  @#"#ґ Lě m~6Q{Ք}\h hvaH-H4l>s)M̻Y&JOKLlŎWCd@~o!+zo'5-esFȷ0)e.Yz+_,|6w}q~i|'` @`~+jUVOO6  FJ JGߪ}FA @;ch0 @&xo( @c'xc  @@oA @`o] @⍾Q @ ⍱r4 @}@7j@ @1v]C @o[I(hw4#WUKۉʆ?*cBq*[}3x ֛yP!nlMl7RֿNAL.nT3?udMZgv6HwOLLfB_?IN'djc{-|l+F9Ѫ(M3ʹY*s**#S@ot@M4hz]4EUݢuT^1>_@UBZEo}F)9myH*b3[t?lg}Xu/^Lqն \l4jKӌZҪA\Fo2e_<%:^-5~ XW"\n.xʲg*7?'|:rmgǯs+ʷ?#*0Y9l#O7)K%Xpot]ם5/k>,7;ʼz( BI꛹ʲUC˝-NOʛOl6i]Nn3xUd#|X!X;!)wtuH_J/_b&|NIIW?sb/Х՗GśGg9O} cc0~Af~(Dðʘ\3t}Uid'p2}8OZSig?ڽ2ͥ#//N7GA`<og+Z59RT:|\VO&\g7Ef6ca%> L + uxq"ys'AJ̆afaDhkן&(I99xL:/ɖYTnνXe Oj01e0 B韹n*ÔUǟE3ߢ 67EJDzr>sFJC$m[{;.@Z F2 "q'ӛ:3&Pn6kJϪ0mӫ)zd VEnnI)QdAiYWLԽ25߂T,OǃQEcF(V; Sa ;f~,]aflnSrV:ST߭LvFԤg3-h3#<'qDvȴ4-LN`mH)*pMՔjkE=%94s4~ҧ1 ߻|hy.,V5!B9Œdڏn-q_V/i@EW;hΝz&}⍐" ˈ6F t@ѕgvʎ=NG|fj- /kHwZSNGrAvhX< (oV1pp/$ku)`eVC5;t5k2Zn!09U &i4:/Jer.yrW̤cR_Ltg. ׻4KzvC«!v|M,Le2t^*[0݇փF+**(}cvz*4x>H7tS&qOhI]+lN6&+nk~8#%xcaΝy]!>rK ik:r!kC奾^{Q5woEJ \!gM&Oi<7Zbʽ- 0h*>u"Hr8m7;4?gEm]QC*ȓ/4%UO}Һi:sF:[ݎ~r_t3s-jҗx“HnΘUr8y:OgcFi+TKd2TĦA`̋f2C;?ظwC}rg%ɭd&50)="V QVnr)qK<U[4Il_@VH Ӭ|K<~y:)8"}4y#O_98c 4Îi1ZQPZ֧\es20)S*O'jl FWqi\ܱ例T&?gq֔ɏ7ڿVLDɛk&wNwjA`LVUZJ3吧, Vnvqq0h~޳X1PgN C,u,h?ڴ6yMz8HӐcO6Z j$Xem5%MPe $Z)|FκB4$ on^B{՟m퐮?&%@g6i_)VF\HdҠx8&o?l$G@`Hp}cH:դN19B;qTD8xVޒe{=s~;oo)~F>7 RrV(g( gYˬxKL-`` l!$)=%_*?srlȷ0)e.Yz+_DotT*e9CEyhX> }Hl {b(Oџ29-:Upe+?h2xo#]s_~)m[Mr=&+UFc|zk-,߄-e V{\ݿ׫F/R凝F]h <5=oj|gc ?WzH@FCyb,P?:xO #- f7Ie˙ntѸWzub@W (,@SElӥv~x0ue WF~Sb @@E ~Χ]: @  x @ 肃] @oC @]ot.@ @E7^ć!@ .7`׫|777SVĻ;A8G˛Ô5Bl}n4-͏vbd+e).֭ϑE~|nK*ٹr xe4?tw p8I_"[J|8|d-Yo9%J&^z±]!@P~!-7߬+Ӝެ~qw7\7T,}R.yt;Gצ~n˝DuΓBpwRS my ,!Ӱ:fN87dͻW!}χe:q銁H娎-Գ;QwHūݦ?IwS=U؁Z-?ͭUz.9fox*@ r,s}"\G vydJ#,Tp7ONNNE0KQϒj׋C 8xm{i C/N9'р]|1qpVC?ͭ*7+𬙵dW'B4rmnڳDO%2X\[=h?DLt6BCJ$9H_~kVuRS5gȑ]k ڑ/} s- 5 Zbn7Q}rFWJ =ۚR&,W,7|3^oj 7+/']P3aY3.39i KQO@=ק?"rZ{.ˏ롬f3+\Лl&Q8> ؤyݢ[ ;+f^S* o}CTf7udȚLzZyуrV/GʰYLAciUcm/n6?_H)jS5_L44kb\e\ fYq.>y P6BE7(5T%NUY K;^kQәCNUKhd$rshӚ筆b[< Գ*dPnb95|F)F^ppVT81:}L8o NQ@Y#۵mQSs&?I]Ç}WwM Vk-ƎMGYGO*,oDL}Bv&Dzw&JݪO)*ᠬHYp/Ny`A @&xcz'۫g{yaa3ֹ3j2˵[f ^joM='m ygSSZ 仔)*F32I9-]au~{grmz5E݄#)VgvbLw;'}}sK_$s䄶:]{HV/ķ]%6,9)lyxKؼx%WDH}!x?NֱSZ&Hw*ȻM<߳u{却fR宫-T8o0+Eo˔&H#GHFF]ct'^[0h9~X W'sv'؝5*TnS?:8999ZKpv~Xϒj׋C 9�Q28}BRSݾ8؏Dv)([ źO7wUoXW Y3kmOiBzZ{1tP4#ae>-ǚ"k&촉< uAm6VAgu9T){hhE>#٥ڼEIKN|ưۍ OC\13Zˌ*6dtL^zI^8I$$ި̨!nXd0xϴiXд|ZB4w,NXI}{)FN&)9PU=[RJR6,+wMj8-Xg壚:p=MI}LZeeW#N;9+k2iZaH*'4/7Z$dR-3񤗼ia;rwҹZԐQT̵pV]%,DoU;nŖ~Xox 7FPDuOS}hI,Nŏb\>9H"mjxZAE!O!X )9J?E^9tؤ5jG |-̵p4+o&kyUe}q`ѫF?ޠrF(Ⱥ6Mĭ ~qS ,[z73rq;NƦہhz᥾W1 7^x8J OTpq=5}fq z ,4bAvny&촮y4(i7r6 S#SݶѴQG6V:`tT 픅9Jqg7]{YR]*+wdvWr~n|7&^ǤZ g;R9g1H " k#XSm.Jyj UgkUBee<99TT%D뫋VLF" ϵ5Tt@))wpb !*hEsT-tR/ˇɥZJlAe0˳jKϺa0[w+ @oOk=Q,p`0yOn$*vleեD4KtSt u?ϒO흳V@GoC01Q.&Lg%jh?F=͚Vc~z±1Ѿ!<x4,ZGI-4m'״`cz&\uv]ur@0F먇QO7d˻W'ȌZ;r9K|*!}2#bnC2Gf[=\<L?0+ɴ*J.9fFќ'h}3}GL$>S3SiVKEOo8ɔfX2J(i-BDcʥ! `>Fh͹6k|nKla>myzwoOrgFn-2HIBxTF~s>N z1{, [g/Uq&>1Ǜ!^G#wg]Q.AU4Y(%)l'+ R/]KQo** ׯYԶoiE#ͥQLtBkjNuE |-̵i>NX7,g j e-39i@pac" @`1BH!EJ1zBB/@RQ9yjٜSi[,nTv}՟z*enZSzKNKjЦ5[  ĺRڮeu_E+|>5Tt}_g>O$[g2-D HKj962=CBʥq%vyuu?UϼzcرhSJ\e65Ԍ ro/Lckv&Dzw&J{$HYp/Ny`#F4]cyQv$6>q*_iWl҅?|師`Yw)mZ vB|[nJ[.#n\pnMcXyy G9Bm,xw6e=0;P8's2/ m:Hu^Ts^q;#*mm=݈`[&{8y@`<\<)?"? >:e=]`xYV,g򢴽z,T?<*^J1!@@_4M_ŠGT}FA @;ch0 @&xo( @c'xc  @@oA @`o] @⍾Q @ ⍱r4 @}@7j@ @1v]C @o7F= sGNcx?\I0Z(7NMAZocz4*E≮=vms3 @O xhSo&Z4kZa= @ot}d%}HIw`(߫Kf`CB `8))ͤٙ7 - S V!@c*7ƴ;7[Ln#;D9(Rsio4c mbk" V CU7Ƶ;[̞$˾a&r={U7)@̵phf!}kyBNu*ܤӂu~S] @1x+EBf4No{}ŴZpy\ 0Zd @_OUOA ͏7X"wh{y̓b4e ^!@%7ƫVk2 i6_c@g-S.Z1G>é3BLƘux25; c\ ɱs]Ç}WweM ]}2pCOU+M[^q;#*mm= ⣃L 6g|n!N r @+ {zS*Z*Z@ h4ܯY_[0o( @c'xc  @@oA @`o] @⍾Q @ ⍱r4 @}@7j@ @1v]C @o7F @ 0v7Ʈ`@ Mo}+ AC& dcXxOQֶY1kI%}Iw|33'J)o+Q8]p|[?  WHT̆{1ȭsՁϊ& :7^B` 7C0)G|ZifZg)aˋV/ Hv ɺ6])Aiq"da} 3h~_P@ 3 9'j쮆§ 7zfMVËDz±1Q) O&]E+2:<;%XivZ`Lx̡dzjܲfN=|tRbi'gɅg9}>߫tX("1x{r`8)ɡvggX=snݔ'}#+K/3 8yY2ꩱ$Ń#2 +  04>t [?h0@ |o؎ 4W ~_%?`Nb*']'''^k"NRΟ%uo]D7ȶ;|8Q`$[9;)~4rm%` Hś<3M4i6<-Z=ȁ\|΀oXW Y|QҶ"xtKb:guht!%+Z?aVQI<5Ò.(1\777nSI+4@/@"U6UOS0y^ ۷5;Md{1_p&{ie@7M Ll:+q' [M;;u}32 (Qޝ0;W9`fiSW5kmcY={pɱ$fOSqFó7b胀krY cu~>8貑O>E@`0j@ @Ԯ04YZ{Sy/RT^NԵ/Er-ղ_4 jk [cuxAC}JM:_n6`bBk+(f}p+@~+S*˧Tw׫h @+hrfoU|Q @ ⍱r4 @}@7j@ @1v]C @o7F @ 0v7Ʈ`@ MFߨQ @Nu9 @ 5  @ .G!@ 7} ܨ4" dcws4+T ͹գp9'JQS2Bc..@`nf2G>Qj>!8o?rb}3^!W۫!a(\~ e3NW.7o+&if+3ŰEC k5@`Tr1/ZD o34Sqh``ׯygT=.jP>Q@ 3 9'j쮆§ 7zיfMVplLo{@O %bn-!LD0ʹ<452¬CdHL^7*GKrryni0U"?< ]kvg4'o6+W}Qkݔ'`2]̆ ʱF+L*oUVd8eu5s"\TS:3hulMp*%OVO$r6/'LU؍𓮃t jʻw(Rsi7c+iPH'pVFR"Ql  0֨?$2.$b2pUr/(r}|>bqw,NXqc#$I_i3۸-O ӎz ħlεo-Eb*sxV䮜p%c@YF\_v$Wu}̵p(HEf;;IJi~s>N z1{,<=ˮ>Bc+ q=EM.YsH*jU& E騿+ j7^vx2{i,WZ?EQbYH6Ζ$0{"A'AW9H!"^hƠZáNŏb\>9Hn]Ok̠:9^i./} sMPW!h*T6y{C,^fQ4_}OIuқ43>b unfo%`T]1;,;EHEE2Ṿ@wO*GB^:#J7,BsUJ3iwzHs[.#n\pnMc}j饀(r{5YoVZs_ؽ|F 6; r"DŽN灏F22؜=-/A패teY# 0^h':r;KSL{>𶳬YYE ![UEt_|J%|:zA 0M)7[_Vѷ1o( @c'xc  @@oA @`o] @⍾Q @ ⍱r4 @}@7j@ @1v]C @o7F @ 0v7Ʈ`@ MFߨQH@0cZZeN욤w;å坟#U.7Vrebs맏NXA8 @{yG\gkfk:MQ X^40X @`po N_&4kZ F n7>)wDJg[t85AS" OS|LQɷgEfۣV*'~dR"٣%XX&؝y#ZPոe͜"ߧDQ7ПfZlH8yZ2O|b~ Rx0t쌃>_qV @yܿvs CiZ(B'701܍𓮃t Wʇ̼)~4rm[>#;*-)gI_!?LO88xXl(uO 2~úϚC!J\}H'pVFR"Ql  @$;Lي+ѶY4uc]s;gkz$ȓ8AiR>w,+VH&}z$G*sê'pb@T*&Wb+yh)IYkسxZ8kl,D˗KlDb4%Y=y={U7_? q\B6_6o V-9TG1._t|>_ZT4 jg-:ZYB^#RAR~=WYhᴼʇ\oY,z*&@x5F;.?Fb,pAoѪf!uA*%Vc޳-#YehʋRQJOUMmP_l~txS5_iZ|5@^Go0JMU.-ϔΓRHeho,Ob[mr) Y"'TVѲ:U/HodV9V(P~ j4id'` @uoPXW`0˰O"!1,=zB^M7^a}}j2eٰ  w@`p}K.]o   .xtvA @/@"> @ t@ @  x @ 肃] @oC @]ot.@ @E7^7"bs맹^FQO3eEWgܛif/wM֛\ϑ* O1^8%?VM  @y3B%ݱ7'^ l_˚Ǯm:MQ X^40X @`po N_&4kZ Bv  鈁> cbLڝy#̉Z[i';>]Y]U-:x }[v(*&s4M*^u_ܔ;0mFE tBtǑCٚUF&>',uFx}m\I2jA"ٶ*Ń$fglb-a ?+7Ǒ)8؏8\h۟܄AQe,v~Pw_+/r޷0גʤNS *q!q~.mT-6W5]X5MIDk6{AeFhP! YoAx7_|ϡMul5[9ƝWñ@k x aS4v_=rǐkKͫ?>Ç_/нFN!ѹJʳi &Bg[O|iU @x̧zUT%D뫋VLF"qv&zAKk B:_nM`K@FQHR'Ւ[Hׇ @Õ;c^kP iL`U @Fo MW @:Ce0 @Ft* @ @1t] C @`ho MW @:Ce0 @Ftկp9zA ^]@Jz377tx'%^풭o>elmMhp>+2?L#''N#kN B"#T guRlx;{h$¤Hb:guht!%?1BDIKfT W@CzfgLi*[v:}dR*smj6ފը7Z7< SjINC6N>g2TlC6fJ7p#l%+1{|%Z<+ u}r]iJx<hvxf!3Ʋv*դ>@ ̧0[[q֙ ʷk ;ą|^ca[[ܫ}9[Q#h'-{:$6Ȋ,m JebcЬ@%i\`ѫ*^acr2պ̰Z5y\@ z7^vxs.7 ,}z6$OҷyoC6-v"+#'x嶌f[7MGrfh3+ @|~(AB&_B9*h U''W6>,^Yėh}uъH$!UV'3ޤ FKuқ4dP5Kyy2Ctm0vB c=%e53&ˡЦ6s\4xt65 ˰/ORWff*MHǍ1ǙL*lOJebl.]Rqr'3Tbf Q|Q՟ifvf;% sL[!/xJZ ${ցF22؜=?S!3 aV%VGL9nyAR' nO @ngD-ו{:BP& G?ޫt_|Jڷ4˧N @4͏4.G5F @ 0v7Ʈ`@ Moz :j @*s7 @_j@ a@1=zC @`o ~ @Vs7 @_j@ a@1=zC @`o ~ b Ż;qk:P@ƂeiiVf.7Vr(I;\w~N(R G(ͱB/j< @x~㗃tw pkpq38]x4yL43n]̕hbX5 @@ea |uDNb5Р'Yjlϊpl mW{@ ٻ{'̭@i@eZ s5|Dֱ@"&m^kVMV].5c fiĘ$b.>q + DZ|(욙gfxG%odc},4U^1x§~)q]Ɇq_Oso$1I2Tdp Lǹ̼KUħ* =rJX|B~Duxh=ڦ[cc! `Mڱ+[<-/\^*lڛ^}[%;zKS6 1~mJuΕωk{AKh6:ֶr{N|Ɩ3$ߠ)y߬]nhZfsCPSm}VSઝć!e֍c2-}ӑ3SVB}:g|ƺ/8mCfKM1tb@FJcW4OL _t]%~p#tSZ|99-n8P7F\7MkcֲM4j$ @FH{ U;}Qw୷Хbڋ87RU5M:q^;_uy⌛[v[Y%uׯ?]RucG` [`u?&cd(ڞ*rxyIvxa K󥱓cVm;'9w M3f] Ez+kʬ1/,A;  pnp*+ *-B@+=rߑB`>è@@ p.  8L|aT  o\`@@&@0j*B@@7\i0   p5!  r.4@@ o8@@p9 r  7FME  u9 F@@a"@@\N|府#  0 QS  .'@r]N@@pè@@ p.  8L|aT  o\`@@&0a5xE?\\#  qdu՟F2|?0Hq  xS."@@@V|i@@#@@ pڮ#p@@Fƈ"D@@i7@@/@1⻈@@pZ :G@@` o."@@@V|i@@#@@ pڮ#p@@Fƈ"D@@i7@@/@1⻈@@pZ :G@@` o."@@@V|i@@#@@ pڮ#p@@Fƈ"x1k߸q.y?/0ng૗6% >o)Av޼ќqAmO_e?svڷ&y6]wW_-  0ÈE}wH:=^4>ۆj8Z>bƣ{D9yiG[h_;/;@@v@T1Z.TI3Ps?)y~>\}x P׏ =2/ݘ!9|߀7wpWUǯL \ `|+YuJ[hw# yp32C5siЊCkǏH͖V W#  p0p@g`iK]?hly݂N ٮy;e.(yվE=kYIk}RgLuń[g?1*NvNxBJ<~XyWuMn~ūeF{AcMU2ȍe )Ǽkwg๴}͜27 C@(|+Imn,x\!_mӹg< gVf]UZ֤/1cOR2O+}R.GOgK _,0T}MZXw<S?r9'>*38nxQ.~|˯U{J7/yS.7.TQS^<+GwW*InhEK!%b}۬绂Xcϛ~y,R gmr"dKv@#k?fTIJtJR◧ߖ_t}Ǿ[H J9K̚:^:TM-\﯊d=\zմyip~X|:eAYmCw߇d7jP 7N EDH_"f/|^ƌҮӓWQe{rݿk-}@@^ 0^:Eٝ .\R4=?cy;l&(f>5Ny_D$ s 'E!n3aiĸs edCvbקg}D܏m'pCUڟ2E~gɆ$<[Lr[c5WQ ޑhqb~JX{  `|cDt śpg=,t4^_]v۪r8d|`\ۧp{dHݵovm-_ugTXK<熾9W>rXYxa󑹏="3/dOS̛"4iΕϝS,|4ZM7^_sg1sۆSPiMOTv_=eя?pE3/ofs!  }>m~ |}N e@]WI>I߈T{|gB~6|c9]ӊgPFw6{1aJG"y,TJϮޢpϹ{̚OomZ-MExPo~WUe s7"ǫtl߂er&kz/­'ÖܩfdGrnTU}'Xz! `>èGfE-p/01?\v-,){Toz,S7rC W<"LR`e値|g0zP +g f|$]!F BҚg~]ڵ  /wHҍMk6a'`ɵEuM;|΍?SS3J•  C7l΋Ui|u\g~m-OGBޡd_цgoueq?svڷ\B,^(jo?M?8͗XgiBbo>y )PW_$v̜$ LnGIoɋ+*Vg]apq f+-|r,ݗ.M?~r?@@ @1:Y_;|@IDATo!]x6%_r_P? XZxbu}|}G&|䳔WmZxyKƜM_4 norrvԸlyӗ`x`.W:nŮ5Tm*βϚl"oW17K?Y_ٔvnި+^&?Fa/  0즿 Owo•7ޙt?.ފ7o~1OT,o|^]0,KDíuFtw6j삷/5s|)vL(Xf@)~7qbpsF@ND?y粸?>f3j[oGvo-tm[}U\8啁G|kNUirg1x@&=B9Âa|aT4hί?-:h@Z5;X>wb ;P+]n~{{%rnѷ|+ox2^ S.  HJA.F?8sFNu?/⻪ŗ N_wYnWz?5-;6,Ƃ][}}nyK;efYe3hiJCc_#}:/(  p?7>u# 8Zuk13qѨI3&'>?3y?1o>ҽ6u[/16j' {G7 rxٳ! #Ye@Ko p8  N#zq*E@@7@@ p"P@@N|麌@@p *E@@7@@ p"P@@N|麌@@p *E@@7@@ p"P@@N|麌@@p *E@@7@@ p"P@@N|麌@@p *E@@7@@4=0jOUkjko,u/̟fXf ȝ~}Ƚ 5K{1{YqJƋ'U`-5^8_:z@@%7\{6\ޛ%X[-MMtmQ麝i1]9Gg{W=Fn4UfU-Lߞ4kܠ"0xn1cΘCJRU8!  @12^,ظvo4fS^ gHbɶ ۵U2'z{7Jg1^ߙd[eY饗917:$ɶͦ$  mXqt[xΤdCmrԦHҍ̢※q~jWr翾=5|$)\`- H@@o8Z|w(Odc׽תɑV^'6yk.o~o|+cu,?绪lzm޶mT˷M^7:6.c::ƖsD0ILﺕo*="p::DdA֫(IOoůoze_һL  k޸IR֥s=Xa)7qmlQg%+7l{Itjʘ)S&M(kan]m f_|]xD5fzNnMYP%,SɃ@ܧG%mJ:tjʵ'JgII;mYMB@\X.UY{,7\,Ҋ _u7M Wj4wC]?sF&WK^.GĨ_%*3{7\/[$;?.h_*D<ѽ)cOA5:uO%: w1/m~jȘŬ-6@@>7@qC濾R<YO'<7_?'w=]!XӑUGyO2[uɔ. ]},šY2uצW]@o*(񲪸IG^*]>xҙ&iʤ1Mz ?mmex%:pZ}(*Y6-lJ9VçFHHֽ)y[|J>}o06U 6Ӧ>:IcM_qEJ]D@\D.7sܬJ*j.՟*ׁGD=a3qw[P^Q*h6ҮO2J0۷eeW˯{VLj A-ogJ9%,yԠ[ӰL;)0(4*>>fzj YI{>[==&/~Uqeܓc^_z3-Mgw{PRΩYbVU*IODcʠE  E  K0%y6%&rұ3۟/mj _v+ˇbC@p2 '밑ԗvfM`mִaŋW5ղ{dJ  W|;oS^6@@  S  .*@O@@p@@ pю  8@|T  ohl@@ @d@@@E7\i6   p2U   .4@@o8*@@pQ x  7L  vӚ@@@`|ρh<݇CC՝m o@e ~k9  p[*pZ I-_+sDEa99]r<틒#6O:r(M[Qgbs]@pySG@^%:?U]Z?)OX<~|2g7%gԋAJ}ea~T\&/O(d/K>4(K_Sܐ1??/6鹚=s.(YJݦJ_,T ~G_6('l V|zQFM+.Ԭ6u_W&稷r^_oxAe`, _`nVߜjYe}KUw)! .-@ojN2JF[qq)IL}qe-^ɘ%-1ɲ-a',lj*;pU&5>+5"#5ƚKϸwk~і䩩͇Eߕ]ug/˯O ϙj3EG%v.xm>hhk$¶ĩD0/?M007.obur|e)LD/ iGj⻢}<>uj/i{%3yK_oi-x \㻛ٜwx{A6XqCoKdSa>et!2rd[xgMvImy|$c x#L(θ`F-͉$(Ԓ2_Zt;4dCB/\|gt% g[DQ1J[IR2et`Wߨ!ٰd@\\ 4nJa0ЅW`&Pt/_oT*_CjLtȿJ^>j_Ixx36nUz(YS/nJ{,K^J%״͝փx4MT*ozy G[-״ I ɕ6;m ڲU-s^XUŖ G斋JT~]-M "50maZfT=Z)u= כVZ+m_]eSdg[$)zU2Nmcs[]S${DzéէS&yckN>2ֲjoWHQhC  Bͧ:mXNyH~K7RCcDz ]&qX6]-&/v(•I3sKh/B|uӛJ6]6_W _ꬷq?~K*f=g ( ͐W՟/.ԓ^ SY/b@peor%hA-'UƾQE,'o'4_.6HcavK$fqMm.]sa #*Q%6e_饖iE++(9YVQT,WTHf3bթH>dž KwrN$ބS0MmW%eܒ+UV\h}oK,%לwڳaI3|%$oqTL\(iB!?fix[aRqA+އQ|E[e@,NαUu?L39KN)G[lBWZYP/)%]NbHD8>~  Bv_\4Uho<+}4nlݭnK exEmk%5e[)J$숼Qu3kLJ)l(k%<+^%(v_sTJ|;GA,M )̞% M}jթ/T颢}:]qMyAnJ`?))68;8,tw@ķ4,IFҩ&O yg!s̨ĴkyQd*  0_ܢPw vt`;fgoXUI>j PYcLUV~eK뵿g":cvP埰oe9csVL`v8[)=*Jg|Wf%<:Mj-o(nVgXa]>@K|gGK7Zʴ:x;h^:[ɯ-}ދ N?h"vʓQ Q^bPΉx99bC@npIn[S<\RH߈5sğ@@PG5"@@\N|府#  0 QS  .'\JsswEp7  0:}MK@@pũ@@ p  8Z|ԇ  oN_R@@-@hqC@@u7\i)   p8!  :״@@G o8Z@@p kZ  7-N}  5-E@@>@@\G|u"  h GS  #@:}MK@@pũ@@ p  8Z|#EQ #3T U]撃%WZ5Ԣ\yS/Z&pŕ\~w"%ᚃ}iR}T.*Z&ݒ% ` wh gRO?齓?,N؜[VwU0c Ɠ> kjt23`gٜDQn*qUH(tgv\1V[cf@p9.b<4EHjIAQ>c N^K_$dbW+wl~ۿY#ڽ\%V7%K&Q$7Gw6Ϥ%ܜYu(5wGYw{6 ݆  `|cuɈ @];&'vڱܚl×83f$սrX:e0E!L;cRv$MX{_Jw!ZnF6\#-Ā  Q|c`.wyת&,RW^/Ҭa^.aXP&KLiVs{bc5};xs$51m7W/jZsFm^GZquܲ՚4y+v_޵CiHD[ҮXhvI?jջkĽg,1-*zWŎ1,M[ҟ1 8󩜬kbŠ҄ȸRkҲMe^lw]VL"F+l+ګ"GY2! IY^Vzfꍫ[[gz =+rQRȢ~IU5mo6Ext׆ңvQm=wiVz̉l~{i˯}nTV] i!!ҕvܾ. +7wZ-ݵV]ofBHye L/#2*eZ/rgwUn^&|2E{E-[kpZ2tCL3Q*mlLӜ[:1f7Z&zCۮdcB})>SWJ/T~hz:~G@l"g-J(:JԒ6Tȗ['5I|L g ?JWws"7kvmxoΡ5V@@OTu5ʋ*/Rġ5FfhxxtMrz)0+>cCrg!6 F#7$ĨEQSnsK\&~6"K^S$R6Z q'|k"s [a@Aox3>zo"vL1gZlsU]M 7:32mVyE[*JE4"{̻ U76V_1ln*a7wMqWQ[n'Qg{Z~y¶% GH}!ラ[z@K"ͷ ń RمW -yc&7QDj]sϔk ƉƷ)miD6 X8#@w!GB@c梔wHWVԖVW];ᓃ'ؐu^K2LwkŜ+Hu/}v5J;&gjx zBy!$"FW!7.P莅  }`}whsv8zEcLm#M3j*eq,mGE_׶WJ-F˚^{;1R3C̨*YLta ?Ji(ܵq7Ih[aö k,fWwޝ]  ŕܢ6˭W9K͋QyF"h-Zvg,OȽ*o.QjnŠ% 6˵hlL8G#*(M}&ŹVj1LW1QW2V:96`mY)Wo\rz{)s h) [oc@pS9G?([655i7]Er J7<0'2D,>gƋҫe]>s7a5qRښҲv1Ga\wAIH]=Js畄~6?@,[oonl4-"wqFyҖHkCT%tjɲo7:2g{ٓW=fpGv#mz:*7r^N+D|/ԘvE 8s=xQ/onrpߴjO׺ļ!>UKR_ Jq   |*g%bD@@97߈@@g p^"F@@S|9@@p g%bD@@97߈@@g p^"F@@S|9@@p g%bD@@97߈@@g p^"F@@S|9@@p g%bD@@97߈@@g p^"F@@S|9@@p g%bD@@97߈@@g p^"F@@S|9@@p g%G؜C{.CCi~fMIUMwf4sws`۵!UQ-P_e0pC&5E*r{w}c  6mo+λ)V{{ZP_N ܽ8vC)tkmۮ/NXrK4^FǝU_U1/q4k!5! }}#k;%3CR]피ܻN߬s>*mۮVA * ֹ }m%gjΗя   0Rv{ܤsyb{5 .+oM 8jdchmQlMyMv@@N|ÎE]6OVğ i[ s, ̫²|g+CXUckـ}Rg}۽L{5Őe+ 3px(MRo]/&C!"I-GW}Hc$|9 l(m iQn_,Y|\lmxDmJ:ܖ4G%RSO6II{(Ңm={WGth3,,^bam7l=G@`>]:z]bPBP)3?>K7W\RDgb?)OX<~|2g7%gԋAJ}ea~T\&/O(d/K>4(K_Sܐ1??/6I3umڪ®Iw[~eb|–`WeԤ~QJiSGX}erzkA+GY_eƏ T VJʢ xImy^׿QJk8ҩَr؏4hIAG)fGhbw-X]զ+ܚkw92oPW@K|ni[F54S"`1ƴ鵚[ ,Ϲ7N&n ?>aaSTفj5uda[X# ?Rl{mI|(^$A]Uw[^|i\br飭 D2 j/4s }|/V'׋1]"E"v&+Z)81SlnnƮ\aW[ozKN,7rm$E#Vż_Tg[[aF$A_TvݞgO%5o{}@@Ougn]y/(7?ƊA6OX޶ي_& U/c= 9YW$;k/HҼhcc x#L(θ`F-͉$(Ԓv3j1'x9.=Wӕ0X}:mTvLw{y`n̡fa7jLɆH?`dU~^%il* 1r'Ɇ$TMIbښ(ò׍#n^~%T0iv@@;`|ĐM)Lm _V߬Uj,OrUjfGku:)X>ol 﨩Ӊ1p)҅^%|D 'mvaс~M6y-,Vy فv\.  0I@VjTvKabjSH LoXVbټGG+Gac]zJkW͝mm*MMiM"t3J'xNtu{MR֜|,uKeǭe߮fghlVyJ 0#glSjd3jLLm#PGzRn}}Q@@``N[#m~ߒ3c?`@/w@yC֭[S;󷘼R} Wkz$t%zb:kM%Uכշj{jvYo"b5TzκQ!?_\XeYɩ'cYUU'CqqLߺ50eΞj2rnlEN%F IYͿI>  p߸ V}Mג`VIFqM`Xl̯_w7I].l$l^p]{p(IY\a{k[}{D\X/=|Ĉif%6e_饖iE+pr3mEI5ruJU،-jk>#f[ovqPfN|o+TϾ#/8ɸ&W8M,ni۬|Ӷ.;! @@ E-C9RoUٵ4rD__qKvTYqrA-/XL:f]lGÒfW$kBy9;U,Wc'/J~O,YVT\bk>*|T"_VY/s&z} frR;$cNuvv8B4 u``f1n/iPyg[dV:&/򓻫竚bEsM_t&[ӛ0O@@N߸S>e- U|rсɚLזYqcU'ȫ_F+$CeuKO3UYef旕z7/xU = bJus (_?aJs:!"7NZqRzT$JxtZPܬz&ú}0=ⓘ=;Jjjh)6b쥳Zҏ罸Ds/b <+ՙy:IH*wUi $AN}vݴ;U}!Q~vw^_3'pSMaY~E@,w|S?7n[SUvjx^^|9y7CI}s|SFd?9޼E]=;Ğr@NG3"0۷Mgz/t:\ܺ! ~I;O@Vd2VUFq :* o(Gm T>9BHTYq@*@1T1GNF3i+Lik/ŇKns'ԃ[;3ci@@`H#  p.   X/@@ƽ\@@ 3  J|^R.  o@@@{%@qd)@@7    ߸W  |@@@^ o+YE@@ >   p7,"  @@WJr@@@|  +{%K   @g@@ˬ)VIDATƽ\@@ fÕ܃uW[^~9Jp$pQP~~B[̾ԙյM^9'fK'[ѣF+毭OOJ}=W@@`01b~~6'!鄴ܲV7Ռ պZs gӟ~v{'[VcϖMn;ZOz^Eq@@o8|Uhh>fŮ:- i i'7'lVJ pDvIr&EHjIAWwoGm%;o*PvôOr93۴嶍@@I7-WR&,۽/;E)Tw IE釛6*KPE>]vЊllo=hE" } o:GlmƗZZquܲ՚y[ĺG["MJeS{E8r@] čˏ6=H-^&i–bMxDB Gъ%+ֈ+4GMYb1w_;Գ* W*rR4l⩰#jV}Z%w29G^/IƲ] GnVdS7X24Jv3o8~" `>GTW*WE@!f=_c&efW״)P*BB"cOPztnոKcNfL+-H[~w_=஢ R@iBIZQs㮄VJcn_t#~}7aFSbs퀻WtPNĶ(rۢˮD- _LQ^E˖C|u‹\c^p "tuW<*Rh׆Z3x!˫ /,vWu%kT2bX@/vWwݮޞh/I9ozweG{EʢuW,Kp߳p~G@%|*GIzb6v];{(Gn\cI66nyFGie41dC#@=MhmT˗t_/cګsDFK!~MspnA2E3e?)>qhɆ\œ ?^|s6H{w׹7x)7xٸ(Dm˫ 2ehA\n.8.1Mrmn# 1pU[@6./t}cW^P\\vsgll{2u{(z9y>O <aqvu,(@@4 0fV,3MVȊwͻ- W#0X R fADzRo&%'7_^cz{M}A|mNr{K++mrl\ +W2[,Z`~2<\U?4G@^ ͐|kAǔ͂✠Ljzo`0lj[j>EZbt0[;ܳt~g\'Do Ѥ8šʼL99+)5֚2aw%Sw|YLKPY" i H++,Z[(,?T6eY݈rϝ?R̯5%zoCg}D$1w|Cԧ↊ڧF0uܭyv&]|9=M$\^oJm&sM[[ "1z/eY|L@@ ~#T}kCfjq?"/|mm޵$?YFPG.?iX;'g,p~58uW.VAP+\P>xwJYEgW#"[rJ5&^ 9%P~˧/ʊdC/ˊ'ؐ!O '@@ >e;/[g빞;!Ԛ͏\rܑrjyruޝ8֦R&<\c|؜C%[ Uo'ӏwXo9lmPnݚR `-|Q,Ξ>w\B dֱM_\*o^(V   88}#$clИ[/ujk:dW\[׃*.5g/:(hg$p\$DžL^ c  ?Ə~JݘF*e D'%@@~c?NzVke;LdC|;dp`U/*c  `|c?JٹYqƤGKL;ن5$  @7F} ύ>Zcцkݣn %_Vwy,T{m4[~#1x0OZlK+9,!dqP[7ܳ[oڗoW4N.PC>[:Sq;YVch=m6qvvC|mgU2CKdC@󩾏!&:ۉ9(^ H57[ ~|nz5 ,[-6i}X`>3)yA[|#ǫ[^+ N,s%ϝ xCY^-65M< /WGIEYhi./XDhῪeZIvxnj~/ܵmvy/{mada)|T罊\'F>9  ~7tϑw?͑'Ӎ도 v}ciƅXR9Bwϧ K/;:O.*>xxv!sgD>^?>?}]Wvw+~5{<u by ?C2(|͞jhc}daUXEf/JԀӂKjYh'WoW,CL6J  ptOutz> ~d|\/%3F 0Vy]K6,o9.fcb8[lȳ^?߾.Z|xnv-Vc%m|0w=[z"'Ē EvcmQ<gwl8UѨ%uyyj.1KbnORcC@ط:'!oDM%%g Os]`F:ԏ";fήr@G|ܜ\`qLE@Ag6p@UqǞ_5)9c)KO86 #m%QA_9S"jFKv\Ciܳ,;1bv v@@΍wS|XcqrCt '.tyQvDEg`c}yx5AGW휹lۙ9+ݳXWէ1mlaL.+K˓cSvV1 K ־.!ꞓ?B?j얏|*W 9* +>]L(V'rmNFto/LmGS3\Ao@@#|Q%Q]Uu\}}ֿq  oʙYOƭY+Sy?c{Vs ߬1-~Y_~ɗ-]p0!;e/SO [bVKȽ0߶\,֧/N2׻]dWz[Wd'6(^?U](Y|qVæ3CN3cY֬xY/s;/Ӯ  xiz?Qšb ݿ~--R   ~~~N7ta$   H!@@E|CF   @ OC{ dK5   /F   B@@xx @@@@O =5  #  zj @@75G@@=7$   ok  z oI,@@ ߈`@@ SX   /@>  )@&@@@ ^|#^}@@S|COMb!  @F   B@@xx @@@@O =53=HIukYoS"Þ*ʓ:G@dH`zdzGOY{PѰwgT]ls^ϖ]1A@2U|#S{;0\}GZn,V(_\7V_'w}Ơw}$6GA1W ue'8RQ@@!2?2"L[pH`ҹ>%d(̓?<yホju\#~+b6Lj0ꒀk/D_[;S1@@- )D>k] -O![';ȿ7 먶t-u]WX dL8d$V&Rb`97k*F@!@ (# CPPVP M[LƆda8~>-u.:L"8*DT$ܽ2kHgkM]9qdUjOtHdR뭞M!B^*ƴ=W;˱.p< (#蚒掑P/-=_e͵2[r%M,@a-(nFdyfhHV3ZE1 KBwԦNt$j1@@ 72ؔfa:rNhֺ2sʺr57 sw&Qloj ye[^-TO/x5G;zo(מ.?y(_yJ}is|c` ycz-&&Ye17:$- bgn=>OVwlL,6_\viQ=1.!p)"tmPvxv@@8U ,ˠJ B>ߞ392943Ed/E~%u*TANg9?|ONå&䒡YdmRϯ^GV2<}ya\zm9{ʜʒy֚:{fIS VWhAQzC鋔YBXђԟ׆rYϺl[Z|dߵa ]e;͎zC2ݫ#ae@X+䃩eMEѻkc֜Q26r0l}w77e߷8+i/\$Z:Q{vr劫lQ}=T/Z5an|:F\Q[1U!NJhڵLdR^i%ܪWdVTY\2f~al4%Zw]wG@@ ө[kFd\KCCpߒgнVU<+`溚ul=_:zJ*,Eb"+J@*ŕ[f/߯,G*-{2EmF)]{jxUUk3jb_F2=A)VӸKR"09)jj7^5\N2nFC dFwm@7K+7ZkV7m|`ҿ S7 [Kw.'Znj FLj6~C gcƮ/R~Tװx)WUrԲgXi'#۾,ԞػT`0$VKĥD,lP&IrУz;n$q@2_|# S S骂;uť/ ;bK+Kʵew*AO"ʝVW({H);v\VqCt)Gve:Z^ yEBUwfm%A{L9ft(u R4eeBES# )ekץ,"3rImi*בeCr  1Șz1]V8[zvO׮r a]OK$O|b*kEV~S!q{cC==2[å՗|=]anѵ닭뮄)V}LT. C#nyF\H8ɏPiFzDk֖sgZqS"Oجr k'W&/ @lZD!!+$i~빸!\˵w^+s=Ӌq%vGXP#9uz>~GcM:{qE/r Ց͠vunC}L,\Z1}疜d7|ͩ|αnl{W_(׆(nMki`-:UM L|>!-f7ZeU}rUammv@@`>UvԉBaIIK%ƲI2Yn(H,hq|rq{s "`*ڵrhr*+ROQ_nuW띭ko/Vڭr8d/SsdZ\;\VtfkJj1g.-.TݺO|xU{WqύEuOϵwnV6 <(J\$׹{Uw*" U3iip7Al)-I}^˭wti!SPh_`n7|yqAZkXR<.o vg;7[;F׽Nk`2c, -=+~EQV"l׸z}thɍhc̮ć*\17-K{'=RO?VOU׼ȭV#jͰa?oFLU0@@.wG_@@"RZi @@Ƒr  @7FMA  9#4@@ o@@8rGi0  i H5!  p7\`@@&@6j B@@ o.  M|#m   8r]N@@HFڨ)@@#'@q亜#  6QS  GN|u9 F@@ mi @@Ƒr  @7FMA  9#4@@ o@@8rGi0  i8xAq Sj8K|c//^gP! d2#  )@F@@L%  @f odfQk@@2A|#z:"  o@@L Ȅ^  dFfF@@ 72#  )@F@@IMMÇIENDB`django-rest-framework-3.3.2/docs/img/search-filter.png000066400000000000000000000216611263353514300227040ustar00rootroot00000000000000PNG  IHDROls`V iCCPICC ProfileHTLzBzG: lH(1B#+ ]QpQ!6 (bo;|s;s aRi`o7zdT4 y@ AAw}׿ƥrrR>DG(JCii.DX^iN;g#<%@AtNC#l.3v\36IIY5G6'yJ< >ˌTa2;\d= D>HD֬:iϝ?iq h9azgsJ@h`Tg + (pk& v0'@hep tp<` Q * i@1d 1 g򇂡((JZ m b :@@g z @[ ɰ< āPx9\x\ WF2 ߃W H(JebQhT냍&b` Vl/v;q8'\ K.np$ 91Em0~ C%8 \BpBE"LeD'b(1XJ#ߑH$-=i OH*%$]' >Fdw2|J~H~GP(hJerI*e&ŒJm*j-Z +͔^!-]"}J AFO]-^\L̄,UB6P6EP 9W.WA*MurG!yQ@|BBB~GcђiE}E5EbV:ۊ(*)++SLWTNRޡܤTbD%CeJ 8 4,x Q=ڥ:&T۫vEmLKUYKKIOү5U5}4Ś45'´r굞jڻ۴u4tt<%2ty{t;t?EmkWgg?164k5d&31lxFFac[c>^Ҥϔl4M7505^0zᎅ ۘ'1l!gkcbȒcYny׊beꍵu~6T-6m6llEuv:v1vv} yFqcfg[4?M9,_ȢA'-'!~gsA~MKsWmWk0Ӑ<|f&r;}{#ߣS3̳󙗖WW׸V>êaG +{o/o |v Ztn vIВ%/-wPCV Z8 L.,&cGDqDuQ*Qh\txtURϥ-YroPYJ앧b011bٕXVlE8ǝs+w/IpJؙ0s2D&M%G$קSbR IWe V^=.UBSKl A<^)# 591 108 aIDATx$C$(*A(Ph)Rb#BJPQDHD@2Ⱦf[;ۻvղ;=3={~;S X  ,+UJ  N_@@," O  >|`Q@ xw@!@    'XTE@@@|<*  @  CU@@'~@@O> <;  xEU@@@@," O  >|`Q@ȒZuٷ~kk׮ÇÕ*UkQF=EѢEw^kѢ˗/^ G@2忏̙36j(6myȕ+e˖-DhժU]Z  R[nd1c)S&\ @l ٳֱcG۸q]s5ֶm[k֬ɓi;vV^m&MUVY=l1 ۿf\= G E9OmRTF {w;NQ:OO }Ǧ7| )K9]{]S0rWqukܹsc/L} 2ĝC~֐-^- +kl siK44ֹsg7S.]0Ɖa{QJ߾}Ml&Tt9^ѐ %9{SP0]B/t9U ۠I@=En2ILrٽ{ww1SXڵ-6}ywm  @t \<9+wGB=|ҥl2[~]/1)Y[#M3CM\ε/%Y$9@\ Ki+;cZ{.(뮻u։NI@LKx;n)W˂ (!Ff駟v)dŁ]0ԠA\KnpP?g5,zS,xuʵLLx֭-Yf̘aXQΗ2Q]  D@'\hbJt|Sf _'w0i:MK*^q{P?POztʕ+fE:yjcRmx  $xJK  @|'Gi @>'@X)oMC@ x{B@@ 4@>'@X)oMC@ x{B@@ 4@>'@X)oMC@ x{B@@ 4@>,~t;t{zbǏؑ#Gr K /*iV@+Re͚ղdEC@8<X wܦ޽{Mʕ+wbEWsQ+_+H_H 5kdKZ",+ "|8 ШQHI') Aw.k@@R*@R9C@ xE# @J|=mғ @on- 69*Ud7|i3 \)vDmU!}׿[~ CU@ 魷޲B YnݬVZ.駟l„ 6`RDӦM/z9ΝsJjRJ.Osy [7n Mq*T`׷;m̙'Oog϶QF1ռHZ^zE|]w}z.h(_ a# @)gZ=N9_eV}ҥ6tP{W]… ] 駟;sAH|c)H4sİS |.2Uj׮iOūPm۶YLڮYԩcGիvٲeuŚ5kޗ/_ڦ_~ٚ7on5:ΩСCO+SoRܹ]6t<0i$[1ܱ`<>DH)BМ@iX O"O^&M,sֶm[:rĕ/_b*(Zxq#G5kx$ H"O@ @$4zm4ĥ5'N#R>(%~.IWS}eʔq3}V^5H)WJJyǟ7o^T+7o:SOyyG *y@#@K+4#5|w JIEiS@Iȑ#H=HŋwyGs5 ={^/T)QףtB ?iѢ >lJxW}=w5ׄW3i*@Ssr@ hL%b'HA$h6(_t ⚭<_|.xRȑ#]5%nM5)j*[$}}1 ➨+\S(Rjժٳ>L@4d ܆,[u@'`D=B!\EW़( %TICkO Twxzm-[6 }V}h͛꒿崽 Q%@STDN@=P=Ng4T:LܟzW};$@R4 ڂDX P]OHOp@H P  n  Oi9@@ <[G@@ -|OF_R@H;- ^vI3j1H  U@@J|O%K۶mB @$m߾}gR*kyDSkFN< ș3,XнD  Rz"C@2ap\  / ĜSr.@R#@=E@ x[# @jRǾ  sO1w˹`@HSj@bN)n9  xJ" @ <-@@ 5Oc_@9\0 F)5z 1'ӊeBIENDB`django-rest-framework-3.3.2/docs/img/self-describing.png000066400000000000000000001513011263353514300232070ustar00rootroot00000000000000PNG  IHDRڒ7 iCCPICC ProfileH wTYLzB{o׀ATB-@#+"  mQPuAu],N#η}{o;9@yңcb0Kbg +'Ly-YФ=7707O]Avd%$ }%nf73[.$&2<$.Hsz(T\~d9,oނ(` l-RA67W|?W O˦{ 7kJgtkK+   =9*|EpLZ8T}`9Tet!0Cfg; !Xրm`Ap'A 8:Up!c% A8Q!eH҃L kB>b($5&*P=+tꀮC}hBaLauX$8· p%\ &/)@P4 @yQDU@բQmn]0h33f3Х*t3 }=DP0j$aVa0:L?f ҰX?6]-6a۱QSƙ\p8.Wۃ;Í>IxM5 >8~ C#8 BpFM#eDb81XIl$^!>"#H$GRR2itt4BD#qdy+0|BS)lVJ=2 U\)őZ/U-,'Z '!B:_BmW2}/:j22STY+`tR٣e|8rr.ˍRQTMD=DB3SKO*)*D**T+\Ph4&-VF;I}VTWP*nQlTSVRUrW*+5)+}V+(*oWnQ~V1VYJeWΪlbՓ`5cPjnMk _VApHةqQcB骙S ݃Fw'ԴDZzf # u::;u:u&u5ut6>#1xz 7?7P2`4<2f31R1yƷM`{d&SGSi,ǬlĜfؼEvnovi,ZYXXY6f[W[߳ڬiyckb˵g;dG li^hh?P0Ȑg0J1;~rwv:sQ qZ4r92JwwuMˍV]ǝ^>aq㵧紗ZvowwOO_m$I?;~@Lu&YϜ pXH |xpq[#%%- #qAHfȹإ!K> ]F [v4CgxYQDgtd\d}twTypE1*11غةe>v-+Xn*hV05LId{w_r9;9\n9w<%1>u<> KWm=M9/BZ81 ^b}=vQH h^@;ml$KV@ĚTξC!3-_Z@~+7K^g7 @IDATxUշCA^ {MDcc[n{6"'7]r=??׵gϬY3tg]@+tlEYET" " " "ZZKPE@D@D@D@@Z:T^D@D@D@nZ_ދETmAQ:D@D@D@n" " " mA@U[P"@[PDCD@D@D`&jny/" " "QE (_ދETmAQ:D@D@D@nĉ'MwرC1tfo5CJ*q([63XpN:ܲǓzcNaFk[#7yik*+" "0WDիW={z~-D׮]=j}7n㛓`?fswqIBf_~ݺu/|Mn<^ +"O>!yLF4LӧOj„ )>CړSED@D`&Pj_l|ѣGΝ^{[k*}8bFN;=c)ܣw%gyYg|DKs=7Æ tB\{)5Ņ[o*AFղ.+=J]#Gvr +RW_}! 0`{}u׍3n4x&G eYf7馛l.-񅕕6xϾz=ì-]tE~ b{mzb:/w(" " "PW;D|W9眓e~NqkԨQRK.$ TER+ R%j̦.cFN"|8Cafdx Gn1%馛56b/Lh.|嗜r#[d,̂ ˌ3faر_5Aǧ,ςh*nbtTjmS>x뭷f. Ju{A)hc{"FAa+1ڝUC|n&K+kk:2t@f$URD@D=TWih_z饬rq]N1;lUV!4K/B ~yHRKqX',vi'v~I(}`b-w^hq2 Xc ,) L ~ϊWė ZyL[`_ ehFeȈXGcB",seb+m~b:t( WvmنL`|DK,}]s5>ss`^KS ~;%C~W4ҕ Bff~n mK;O?n('I֫ǣl)Wg9F-hx$$8/vAknmV"D6K\ptMqr+e5c5Tӂmmgp )By{)&fp-] tu׽뮻E@D@7Q8%VI6sɉȃu&?dRl 230@ +SOy8E $YȨ%"pD?$JzI݋)D0,JQ$D(CLf9FFPȇ0` նRXb ŭ`vp p#ta0^-t@;Z,nD|=+D3@$U(;fh8n9o=nſlbY"F S%@ǯX<~Iʉ0< dUh&ODŴK:-Ku2`9LIc*jl2_O2 ejIQ[v,e[2@[Dr-rVD0& Cu=cĂ*ULH*M"&6B4D'`κETj=l1%*%qJQBfѣNsDK r5Jbe ݽk286cYj=R"?<'xmC*]4Q"AS8ȱLL Lg"Mղe1jzI$OIDE:Ѷ[=#v($Kbdjg5kN%KVbX52q@,^,ȸI]|X[F}CE"*FOP-KBU(;$&c Ɩ㖳&"2ZIqXx#'}_Bp,UWMMq*Yb׏X- " "Ў L+7|a*H2lb`UL,eVߗ HϝH'UX\&b1#th.qqm [00aDXEED;@D.E@D@+ƽ2'=ߍ7s1"T }VG(&Qvy81.3q VM|)+[rKbYm~y1d f6Ii%ج 0C3HG`ˏ?" ȓ'ވzI7(<9e\ZR Uf% e[n%#ƎG߰C*T@#P߈9>D6|g;?礰%@=Xe/~*"?5RY͏&LL R-H_MOE/P;y|غ*1̵ X_g$q/x-&r>KSi\9U͍b l/X~1fd%vr/H:QQ_lӅT^;ue7RsmS@ PLj>DQ,N+0%eV1 kHA!Ra6"7'';vE#^Z5.%^eg#s<'w>Y(Y`S&5Zf'?Ů^0&9ͯ_5֐`C? KʸquL u^~H$> /o~2as0#LnE~l('a+wDxl_Z>Vf iCUlr &oXBQ})" "$x5 kEW,ƉiSco6?ͯDhs׏LsH6q%({ M@~ [!VI@$09#5EE@D@D@DL]?կi#>#*4"FV]" " " 퓀"ٮJD@D@DQ5hQvW" " " $U@$}h$ETD@D@D@'ET]@# to0aBn݊Vjرz*Y^[]_J4bhDQVH  D~}sNbMQVݘ3*%@7D#hDQVH 7Q)岶D4D#hDQVH ;VXSUJ4"(oF$e ш!@o(S&7[emhF$e ш!@ TQdJTEXL}]׮]\^4bShDQVH  D~}s&<,$r#-ld][Y4D#hDQVH %@-QBMeD@D@D@D 0iҤxsM85FE@D@D@D]\ƍסCz(Nh6ucuJTDT?c,fh6u@l,{D@D@D@J.U]-rh6EdG@ՔfXD@D@D(j=" " " SETS^bf#ZDLyQMym&E@D@D@@]fsyoǏOX%KD@D@D@ZI֨F]ry_*;rd9${`5FǎMUyUf/;n{_]R_~cƌ)[|'|-u׎1"Ih@D.E@D@D`j y„ %~-)Xí/dk~}J]z=Lj_f^#u7'M/?}AcE&9|˻ ?rU<t;o&;wꫯzx`6**رcǵ^{i-PCoX~ĊiKRD@D@uV'TݒREJҿz1Æo曷?dfy!C:WN#GLآ>K.9W]չgDg8LoAoK/_=?I&4dbsVnmC;vJZ?KH7nߐӥKW_cgjW|ꩧXǚa ž~V[&;XbaÆgq)~g=z4ekZO?%Nbmi 7гgOV^~esaeYZbu " " S4tebr93Kgn5;5c1/|fZ{q?iҤ/wYko>[n0d-v~S+\|J]K/?%|p ydO!!B"!~@R:us9RS-RzL_|AXcq#"駟 >찢6޺rNn_ կχ6~uxf*_wLuإ=kɢ2A3Æ̲V] ~ es5fذseY J۹9h߿C -C6CG}2P/5YWѣ^. 7@R7e+ED@D@޾nuE[g]8V[ w3諮Zwcɪ4XYN3qx*-ܰl2gd#aus+G˜B( `o7T#>,{@GtCB3~㍛[ sM=㧭:/_sιJL%k<}[~9<_Q.zqqc^~u~ѱG*-^. TJ1=C,¶1YȢO.$'/MXE:Eֽ{wWRMFg3qZꫯ~YokvL`Lu٥3,pg':OAfXr^Oe_>qgwsKѭL> ޿ ʙTYE >uVlU S{,qK¾#G>|y_!&c69V aEJHdU߄iƎ˹xތElmx<" " "ОL5*5|P\A}ۭ_?ֳm݋/ѡ#oҧg)z 捠w_[u[`~?ڕ]t̼zC]7_:P5"Xwu9Ļ=Y."aiȐ!'إYߺ[,/߷o_bt5v~;?`~g _i,C! v9~7sh ٦xD " " S 1I|}T姹Zb[udd1|p96bf sC,U6,j!aIG^>iR޽Yq!t [zi)<%@^#FV[mH8t cɢc"0l# CFw1(7Eڢ" " "0kTP!MyO[f!H,U~g]Sceҩ7XcK!ȱ*[I:q ALLv }t"E[n#1fF޸$KD@D@D@*ˮhTCD@D@DKD kG> xwacǎիW&BS̸Bvb!@7D#hDQ_ߨU4]{}APDUwĪ@D@D@DPDXԝ"#V" " " 힀"vrPD@D@DQ*hQ&" " " u'U@'7;ETuG D@D@D@=ET@ (;bU " " " t?~|38wuڵ,iD#hF$e ш!@7:w- &܍9\[)}Yd=c9m%{#F0m;ò.Vہ#Gs9'N?K|\sU_b[=+hQ}'tw̝IOb_?6OkRO!CFUK3_~={l}ᇽnr5B&N8<" " "0y 7_x>C~N:t}XUр)1M7;<%z؜8^{%t)" " MHդI<Nk5֘gyXMOz{7.cǎկ~u%ݻ I$("PLj+^iN>=zx +X ;=bGqķ~k U*.E@D@fY*mEԭw~1Iu]t9}??_Ǖ N R?YMMlG 0Ezi:R7g*Z8e&0b]3 _J4b{hDQVH uىDI[n1K}GEu ~ |?Y"xL3;zݒD(^TZT4!,ҡC3+z"v5 ɫ+, 5~xJbDUr8I4tZhhx#hDQVH ucup嬰RKS5O<'~b57߼(4{yK,\9elb-{c|<;|1C`Zoi(Gr-#tkr!8!^}8 nW` N8d]t{y⭝vϾ曣ylD='xuV\Ԛ(3<%'EkO?(/`c[ouQ]I\F?&)vmt?Ͼd$NʊL,䒑,9iLl /$T,~_uU1z&T,/r=s11&7$TQw}w—E]?!  eKu)" " S":Qmf̬D ƅ}[n {[n_mn6Db-McK/2ҳFEa oFks=fo"=YRg< fJG67Gu7q-3Gcgw6,+"LMmE|镮 [n% b'xVeSt;4yrw$@.4K9%ys ʳnA . aYPH r"J~qH"~7^l3|i;v LO9K@;Ynmj` E)qD 2bJ)ߐy)HGTxM8آ馤Ҹ~l@ꬳ*owܑ"D"D[ " " @wm Zh\?Yd08/"Ls=Y*'\{ e\*:)/vFw!WG4sꩧN'38kv颒[^FyÿhA$>.YD@D@Dc;ψp$<$/Q&[dMAS,xQv"E>0`{;[oeYS$H^@q)u{.߶wNj??sԠ_¸$TN/}#v\: +ZeU"P{5eLI䧞zSX%ghsE/%ϭ ϮeSw/9E!`On5╭4 <$lZ " " "K^8q9ls.&X@1CdlIƍK"Ld+c5h@ZkeOV3ϯY_EbrJ)fk ]9on;3}hZt UG^8XͿ۱'#*y U(d'Lvas:t(?YBq(D3:y N8…Dh>7?΢9?Y%X«C}|lְǛfԟ+(+'ɩ)f?yz+d5e)ޣ"ڜ%@t.yG9-2Jq7b{챞#T3`z NR?cmX<8'F 97ycׂR"ioӧON/ b/";M snwEr~ɿr7ߘ`d+IYg˔<ɇlzy_S쳏ҩhyTe|DC4"(oF$婶ot.uRr7r,ſjfk^[ ķwȑcu < ^J[/k< GXkfxIo?^pyuhO CczdB:BN:)!:YuRmZFOL:māھ5bEzw8".rmo`*+q$R?|k*,!R Y%"bC#v([W5#z|΂ȑ#y5{F&f%%KkP%ꩲ?Ia؇~RsAʏ(̽)LƷ+4"V/'%Fn$Cш-" DY}14u2=Zo2C|',٤DK5R@O XְTU$c[:h46e"P]2TzD@D@D@Di (jڦa" " " S ETSLSP%iFL1w2ِ8{QyPC*"" " "ЄވOle{^C+ Pq&!]&i!" " "0PD57Lh!dL@x2]D@D@DI(j" " " S0ETSpt&!IBfL:?v 4 [A4D#hDQVH uk JƜQ6,ld)ш=J4D#hDQVH %@-QBMeD@D@D@D PDiHZ(ʈ@$*Ґ," " " PDU 5H@U!YD@D@D@j!j*#" " " "HCB@U-TFD@D@D@"ETd"ZD" " " " "P ETPSQEk$W_XRD@D@D]KD +,H/t&LX}~$KUlC6lX[U\(z|ͭjn[m^ddݯA3Ć^CV^4P=o+^g[t(_ H [鯾[`@̸Sbbݢ'Mݿoƍ;,?0~DĉO8޽{'Ec:E(~I'x Qi#Kx38" -eKU_kk.cǎQO,vbgvHmnzTIl$CriYd$˖e:T:<]()Zc+Rhۺۺ:p3WSMSM,ض-.d+"%2TR DOчЧVIz,uQG׿K.ywo|i{N]l6UW].rn?eM8ӉGk6M<(IjgXI[?s*EpH,Tx~Iϥ5OoKbYdǍ=j,vwF J EOnb]zܻEo),I/%G.~1~wꩧՙgI\}~/~_~DLQk67t_,!R(>rHx_2>$>wyyx &3._{5 34_p3_gː衭-G}׏5Ac]H3q`V.J4b -P5-ͦ~jsNl.AYCDLZ N܆Ҏjȓ'`R#]̭XI[ѩZv:r-Q&=vo2! ;: ;rKƷ1$V3duw ͆'7P"05x',"aY00׵keYO>DN;-zyXaF/˺)~_~g Z"+XԲJ+1РAeQgyf嗧F^{&pIXꫯ2|0=xՕЭ[7\ 5̪c,U>`߾} *W9#rPT袋;HvN348e gƂz駯ftM7ݔd]o1? v[I'õ^@zN:-DdcE?Ac ڡC;͂R&d[5neXc4bT]MKi%XV~IOZ-k9< ܫW/G贞3,jЊOJ.Z-Y_~<(ZD{饗.2r+Fx!۸ lee}rt)S Q-sBԲ. 35={-*<DT<GOY޷< r%UdA 6K/%ڢ~=|c'^TW[l=PaY&g); "Ms_W<'61bSFs1)Ja,"ƓI"3s8p;:A>쳻telP.>'p,*Ӄ.`yHys[9s-@DVZ!EruƜA˟*}_I'ĵ7ޘ|L}6Ć 5Fc[fpYKs"Ўِ!xYߠ \qȪd-EVV]ntK$@'0vlv%˨g;wjfm]n!a8aJ4jߴ`PNLȉ/b /0cK:9OO`|/+q2[%@Ȑ(28%H-vn-/\-ĊP{qbV%TS̲\-X]ҸM7tHϔECQ+g[Ќ)ĭuV FʶZ"D{BΘ!STcV#Q &ku%fvͯl_lZlz3kIv%=Ok)zLg!ne˜ZML|ԥca&_yYdì 'wXlMf~o%D Y5;2ȌW_}٤ 'feNFfde&f䢺r]{?EqԖUs=cƌpDr E.j̊0rɗ< cc/c^|Mpޟ/$JfJ~ A.w$xEZ!j@IDAT[*f86G^ՠmL#JtZO3۠h+RZcȊfg3[;8+*cOtL'T+Z# ?lv=&ՕOp(s3^6 Hf0cϔ=p Q[VvQ{+Qe1[DzVHL=YB`Վve<9JA1Aq{GsrGLtVΦ İ8mڋhUM9"-/*,jVL N׍JئnOztd-ɎTnYN;ư _/Fm7`B_$mlYwɥF=Eb.E`*NPt$R#>⡒ZVQ]DN()*^Ts8Kj]H*7 4,z(`$+jX"[nZ~X jS- ~F7`\2نƊܲ| ,jeas[ߕZZ[!G] ~6z,"i=!3Zu<U^*ꏵgl[[]lbjhIR/crVĆl'Ƹ(7oE9QE&2Ff'rSj+UMVW[]_J4b[׏FsE ?T[F/`d1 ZU@ZMR^{Nh҅6)v~mz%e޼:ÇCt/ovnuzƍ;ꨣLO-K.rJ~(~7wEͤgcǺĩt!¬YU(: ǿN$]1/Ƹ%@׮]hfg&y|ZB;;Y6%xݧOuSxY20`>=z޽wy?C=?Ok%/XӺ ƌs?#z;3Oߢj 6Xo;8GR5mg9H!*h_~ymP'4:u[o~sm=S첋'0rHW[m_&r-"Qu cǎ%ZŤm}%ηOqxWsUVYKU(ђ"%?]IO-Zi#;p,]c 1Qvg}ޒ\+k_~Ye7v8/Pn'yW1_U#W_v;S뮻q^zo&y,En_}$]lKkF)T)7 {dVűe=;>ofwM-6L8F*H'Yt7[2aĈ1۬Ǎ V%lEmxZy=XAy뭷vROh4a^XyTP2Dx][.u_x5 Ƴ0 IK|̦+;L@Bt GvdME Btf-k^:9^Qp.wyY+Lkȉ1Wٍfg}ܩ*%X;2A~裏2-H巿-y gw㲵uN~s=wJM6f}Tc1c:n\,2IW]uS=z)r"NN$RYMg?oP/7Rw^FN;t׿X"6c >>E*uـ?c # ^m>3;Dl4LL7ܪ;=>kG}4ḳFJ,J: |ãm֊FڹP@nj|&4x! ~Y4m\B -sn]uшKs=VO-phVIz, _3Ֆ\rI[ r-Ǹ[o-zfs 1(EO]ai;K/M]ҙɀ6Fd'{XH#^-"<,K<2_+SNh}w=Ck.rt/k=( :He\ )i#8۔A ceƸ؂Js[SKtz Ol{%YJyu3U9I <֍`Q7j'E*ډ_ng5 -I`m|GW!>Dd{'v[d&<}I1F$꤮"(T_xMy/1l|?D"32Sry-piD/a+cnwC_"ŝFw?3EA*Zqi]z ɰJe+=-j3]v'[.͢1чtFxv0Ed 26gUuCq`1Rh.$ZQqb̝¢IYBRښl^0Xtjw֣&MEkB%ǸI>K#oI؀K6㬖^z1μ {oQ L=3hРfT=sʗn7E؃1ֳٳgOs`o?m%:zw\=O</@Xfz (Q' ,`)|9* F=Y%.Y#d7^MPG\±`2{b f+8pMtz`4p 喁—Yfh@=, /20uv]w]+[trHgIk&\-r:+Y,/}zdm(mxBfߚ$lLEe%-K+O532~fon}H'3K)O?4C1+a0f=qJжcΚX+}p]:<Z4e)W*u dAQO2G;Ypz~t!MI slSȀUgWK HJj Zq9"*JCʿ40$d"QUO|%kYl8Aq!Ù0"T6-ZyP9&{N0#I`,U2e"C\IŦyQ]U,7"]{:O=^X"6A(ϷGvI: ZE}tW'x"%1RưK\ pm/J)y|*,2H[m؉ DT^DL?<11wNoq.*u>vUvx ެ-7x$f)Y=),k3KnE3[}E3\6U<5iH'J1/ zWa,U}S|`o!ЧK)4 ʳ=4JSgpi%:VGL"vwCDP*n#x6ܳTN#Sb)er2ψIAl<%%;ӛ;xa0 Nf#_sTsq(/h{1ȦIJ_#)6eq'0Haⲵ -Be`56%`MmQ Oҵb.g=$ln~j[ԅc{; X-,ٲZTD(in\y#:C=/:*_=9cN |*Ō!b/u8nhe[rWdձeĪy0Y)3<?`iϢLجZss4.+eY`5 ]7|Tut]XĆ`ިgϑtNկ`ȗ~sӰ1g3WDO1 ~i ~Oi2K8@06~fpauKCgcLٻ@OLdHga}0ygm4LC"Ƀ$ʎ;B r">;(GN\`2#.P<_4ȐӀ_78w [9c:S!|>Լa<`(lܦlkkbf@kษGԒǎLEp*I1i?l}Kf;턅%~oBL)#.]upF"?@]'`,$wL3I'D.)N|;2GPE3V-i# ]tG [`}-gH|Y p#@YQ^\rYRFD6%BWaij!2; |5#8LSU.t 4uh}׉P+.w;bFzf[f[v1f;?z5VvIDm&{ǣ+] ܲصg3˱3D fkD[Sʪi z`5EyM]?~ e˘ğ-`[~ܥaحc{N~6 1_2D!G4.Uq~NN3P4?pH \pH1?XK$7QRܺunzX0i gbA>7YY%5'.Y (麬LC.X"a(`Nz Pmۨ9_op+RbD.+QX{cļx B(T[㓱"6zU\,1TȜo aV%vF\3gIXã`woRQ`Ovff"na5>[v&MqR^me54*+}X +UR|tU,eu֙lYl{3%9|U%Ӊ߲xt"E,f39q3BI:gZ[آ^H/c秺r\Υy[c,\T*ɖ\F;Ibndu% 1&5\RWQ;1D'rEOKl-eC;8ޏ&KCzhRƸπN3FEو"?;Dql:q%'&=]OJ:6,OD.\/_.ᖌ-Ă^ܺ%! ՘_SR4U$ +e5+хDN)ka6s6汔hU:WIJM!Se]gfx~% ]O}ߞ TB{.0Hzא*\J%ڶT=jhWL=Y ܡl6#*tBW/պK5C{m#l .9l:{CTQsj+LE󽋭1NSqr_[`o2` 5.#C̚`o+#mN^Rjʵbd A%ED#hF$e ш!@7&d ETtyJt͵U[L U[lEjRjRيWm*33Wm& ͯJU4fgͯJMvg"$.E@D@D@D@r (ŢDhvȺZ5dm+6 Yia# .@lBFZȺ-ia#j6b FZXM]mQ@ ]4QMV\D@D@D]PD.QNLV&+~U." " ".4KDU)v*'D#b ш!@7D#rFX;w\??'_+hF$e ш!@7:w%ej-sFR55HjK4Sʢ!N  DY}C4"(ׯoTlkRI ZU_6\_jNѪT9TsVWmb)Wm@YDlhN]d[_}UM@[D먯^Ր!Cvi~mZjqyJV:taòE)O=OP_̦ܔoϽ՚ &o%I:Hjekxn֠N4ԶR֤[mkۓ?uY'/ofxW(5lfOkf ,^ѐ'lQb=1}N4iԨQ_~ylz1?V_uUm7SN9_~UQM:(hPEkxҬc z"6F5yc9N/!}?yNGy?'-oT94![Dc2zU>/aZo|m[^o1iԣrr}D瞗\rIoq 6Xo;8}J|<AҎ;%Yʗڋ/պ@{n6+|`9_}U.I\mǏOzRDc=zYf;6sm&9_kꫯvUf?>ONoF/<_ٶ~#GBoUVqG].1c|7d .G{/LAIɦs+u]s-!1~r1~;~衇l[WSd?yr }رGu-B2IĈQ6!Ɠ/fE$z/q/4nEEfzH{2,H8/9%ܡ۔kcf3<_Jͥnc]3#ݛHkM7P|+k;+,@q4<%)+Z#ﱮDu$7>>P0gK"!lFIK;'ErFs 7,J"%[!<@|lDm$s3nT}aꍭ3Wvyab0)J&YhMRY>=JEcbI2f- vs`fq͙-\{nzyZs5뮋.×\rI2_Fv[f'|mw~I&4y~^x{wu׽+zɏE~;S5e .l7\uUX5Ë(̨b->h3ld&(aq -A~"y睯ڙg+Ag [ <7t;|裏ݒ;r-1o5.0AEu*ٙt!駟 -=ځ1 !"pQv+*-jV%l&dviķ^\83hh!2 ~ߒn7rJlO\g>믏\UV!&K/2[n/$~Ih sn cﱮb$1J1d{fQ^Q"d;QEE7sHΊcTI%:d(dֈ%[:$= -NdoL?uUc[[?xj2fJr_GBI*W0|&To5ET6Oe'/+2$n\4I9C(; d/n6KܟjmM/ETȬ+,P&h^fzXL͘Bd;[W^ye?CPZĉqߞTCȟ~)yh`K?CA0 .e1qO%)k3߶ a3#ouO">CY /d0GL;Z7N;YgUh\K,b<䓹E#/e+2PW*h)JAf%cTOoYD & 1zNRơ&lJxfXlu馛Φ-מ;Ɯne{r\wfFH8蠃rK68^M;@uBHnl[}iQd1=#K8p˘eXh!N͜gJfiЌSGp:~hBο!$]+~21ղ7,MwKHB#݌,#u¬*,3ߨ L'AuWR.mH`V f<~͚ˢyYl/psV3'++~EB54Qqy0VW!۝-kOF%&gUy)hc+3YuH\5SZ9`"%cTR$^PbCzHnY?[ahyaEI"$q+M-/j&)mڭ~]q:cdp%=JYBwJkkS +Tng8 %'?KMn?~OiE7F=2p "2 ;eGXp7f~&rBcyꨗU"Gs=[$ǐ-C6'PђѰb6䬝EU a:Cv"KVlE͚ɟt/Y(6 !g jz#ŀp[^s5~EB54QȯV MϩyGUlQO>nj%6\K'`9̤Eţ^1H5 6 f1` Dkp(ŏzJĀd|z)%F4eԅw$6}Ҧ^DMR@UF駟/oElNRXTWB<\ވ?bЃpՇWwYzu¿^*j{۫5 E4eln#\RNȫ`G~JLc,{ wPUqFNv AݘwsPU'uj~J8!}lO=2T}NM'PJq:++kƏf Hyr^x>Q|KT߷ru8a1#$T6G H*$UZ n̤3SuvFP=`JƘ,:jҕ7s 's]ZA\, q:MTgSSS^ΊP2INK鑔hhF"W`tJ-NTTtpqsUKk: ³^BJ aGDT!Ɔ弔b0;1_XRثOIPt!W {q(.Rw44rdJ_VM=2E Xb yHPՃq%7dyKf A^JqJ_tzg]! yy{X]Js BVpTGJ#을*rӠhyW:/R$Q:" @ 5@͑,*s[_J\ksz+BǾNIxOxqŬgeu 9&QKθ CmHUKcC^pG|{\C@VBL닼Z~09_ίuݹs ?hB#@pzVrԮp{C8LQT ƃ vuK#N=?3+zg]ѫw6\,^Y--s?Eoѳ2T? N+ c=} "h(p%f5#Y/lVmpMG1S]QO0au Yc a ]iENx+'HFu]ad"5őktNiT04]P3z,!10&?mUEhXiȻ4HCN@.sl\ 9ٱd3N kVZT]jHCbArrc42i nO$@$@$@$eQyY9$@$@$@ Y% h(Ul^c4HI42i e Ґ76JF%o-e   h\eT5.F"ZҐi\ 9̱Arr;ƆJZoGHCN4HCN@.sl\ A)fTL$@$@$@' HHH`FGO$@$@$P{d=/dlGI$@$@$@$А }Ja Nɍ5?d6W7ΪϿ߶m855 ^$@$@$@M3*6==^瞻_y啣Gzĉ4MׯkΝ3r!2+*O8 N:AP$z$@$@$@ 3qᅃ5qdgg#zi295fun^oذ!22⥗^(++ʂjaǟ6liӖ,Y:|ݻ%~'R-&#O>Ԙ13橧:tyf֭Gbcǟ~zի|ȑo `&vȨ!I5*HHH,wgTrK>I#L⋅~˖~$7v]X,sوQROPN$=rm677܉k#|ܸ+`Î;&$޽Z|믿Yt1^zh_ؐ>.\xԩS  y IT @%Ɍ P߻y>*žئmTDTdYo?гg3wY䠠 2B&jɓCB^J: IT @%Q X]|GKaqєBX3_[>f`bb"ȋKʖ-c E=⍕DaoX4C ^^2 @$ q܌Jl*R@ ݪؐ~ؐ.bΝW>=ztz6+׿?II(m['&&A6:xã%  x`o捦\锜)Xfܮ\ ?_~=0/i:?@a#?LMMF\7dΜ;/((FKݷrVx[oǵ~QёhO+O8q{u8p:$Q&  h NvW7n:q"+66IA?+ҋ!CILرtc''r3r&r=dL 4o?KX?j*%?n)+IX233#""BBB^~( 4@~N2*lۃTIOr^SwrV"Z7C"+YVWPG"##6Wr"$'KQ&  hB!rrV1UWq)jT*lxH$@$@$txfկeKIHHgj0A$@$@$@$ ,RHHHH@3*M,T @50, &fTX$   j`FU X4%   M̨4PI$@$@$@ P_R(hJ$@$@$@@dTAAee c'   jY𲲊 ZXhJ$@$@$@ԬEi%/d2la)   hA@IDAT,+n1e4[frn-Y!gN!' 96HCN@.sl\Q/~) W 9̱Arrc42FCQIHHH)}TMH$@$@$@rӠL$@$@$@5!&XHHHQiP&   `FUj,C$@$@$@r̨4( @M0 5!   9fTrIHHH&QՄː 3*9 $@$@$@$P̨jBeHHHH@Ne    fT52$@$@$@$ 'JN2 Ԅ3Pc   `F%AHHHjB&\(cXM&fs&$@$@$@$Ј v{t*##/88((h4ֹ:$   E^2|$RA HHH@죪0StK$@$@$@ @dTho}ynh 0    `FU[,O$@$@$@̨8HHHHQՖ ˓ 3*   -fT%$@$@$@$cHHHjKUm < דȦeddt-<<6 »w`0(J,))QSÇ$%YOHLL嗭qZj-YnB$Ћ)=TP!틋^PZZJ <$  h~))њ^捵k< `0|P/"=͛R~ i/ 3S 26 ͞= P~G";w4ݺ!{KI^ M{QhLr]w9HHH1h(~9? ?Av]O/XϜ9koV|SA֭qZAƍ,_>1\WbH[x6S $@$@$5ܽNLYqqqҡ$\/|ҨQ0ѕxvP:+ ӡ߿?>7mڄ#' nyԩzzh)Sq1ŵ~$Er㒆 LFc޽uQUR>1z\MdWH/ e 5A=a/ a)1G?j,)bnLPO$@$@$ x&: NjƌYUbXz[xd-Y kXp`ᥧg՟W+"r1sB= @%}Timk?Leݺ7lK ?.Ei2 p-ފ+a)=^I)؍ɜ^YIHH5dTuL(_dijN&u:9:6>]w:׋8?@#G s=z   KqgTsG6QF#d"+RFOW_v- ~${\i 6Պ xfaIUc~k֬HN!n$ {\7yuW?{b^၇$@$@$@!\MJ:L1EcMqMZ8a/?zNI`j{Q^|yIHH)wgT&   '>*'xHHHjIU-8 0    `FU[,O$@$@$@̨8HHHHQՖ ˓ 3*   -fT%$@$@$@$N6m*))F7Nq+ɻ`PDﴮ8ۨ+ք;m}!=j֖RQExk愥HHH!@F8\$Uxr0Xl|1>|x<_͊K\3o\$< C7 k7O.qQ5yWS\n}53*EHecYyy%̨jM,E$@$ x ZA@YM<-yj1wn]hŢER#`$"G&h)΢W\fմTX!]ZH}6clKz1hZaRZ>伒)O YTײ wՠ A;_pbhi nw͟[R   o%jϞ=@9r(P$X V AIf!Y)..2eO?qF]s@@of޼9[ ?{PšrTDԅR6d1==]ď5S/V3Nq*))Iw<畯7&wNqp{bZ^lڈm-.޺mMɲ.в[ho&:rG̓yoUty%oa=rH"  &U?MHAC[Yɓ۴+ ;^xE6l@na `HZzkժÒF8"?u?p)"&thP꽦L֭[ْ%K%c4d'p33uTq[XXQ#%e:}LtQl5sƅ ׺YدI;{]Ӯz` ]c ?WjP UeME];kvn>mL};~[y $@$@$H 4 ;@Pb S>b6K`9sX4R,Ig1SYx ,d~5ԙ2*,fC35qZ6u}W*)hB,\~^[u/L$@$@J y#A6<idaS]\Wy xHH/**a[֭fqĖ#,a 1-$Vs6fR{{eql$ݻKcYV|kggŒ5bqyEq(yPڐ.>,'  /& (/^&mۡ%4¶td]"p "A\(V n-VzLpNpV"Ǐd!BDU81˅^){'!#}|f%OkykAI/e卣qvaf^Tr\7q`ͺJEq\p4uxs2 xAfdƞGQfqH!vK$FX&0'ȟPDE 6v(1!-鰃+a\3?CM bn ɓ1&V!VH~qSIE4ቜ2$/xv˨sW %$@$@$FQs,k;[D$@$@$JQEìm<k;^2 @%95 HHHFÆ kQƉV$@$@$@$O>!   0rHHHH@3*}6wgT9r.ŃٓOICHHHwgT˗/_|ڵo̝;dzwv%wkw$k   pwF5jH7^A_9V| Wߵ? )4xNˆ lc<yUFF) D䒒bɯn7k*W|=1-{Z6mWmRr|훋vxhʰnGuBvQƄ).uHHH { 0MdMȨ(PbV [_0uT bj O2R֭C.`r5+?Glgooӷ=ξ9ᾫ R+Vۻ[Z3g\XP.qޥeTqEFjp7:mL~\.?~ xeTUJJJ2e`Y%ǏDVbp۶]XCiM6T"34z·&OwȥcQCrVa6Ev+-'?),Âl6;!"_a]Q&  >Ȩbi8N) 2!Zީ3L8I$HTƐNYWrӎCi{e<60h.:}8󂎎9*2|v >1>&2䌡ϡuR>qw[F= [J*$@$@$@^@::&!aysń+*aҞt%kƍ{ۄc(\ܷӷ:0oѽ]{#;l<|f%O_,yk<)l}o_م/z4cC8vɐ@$@$@$ "Tׯh'^1ȁ&(nb $+|b. Qx?]~ O 4&?l2 JZ7 ǝ"J\'U?_lx qK`="  ɨjY0 H\D֕Q~jz]9   O; *!fϿN֕谠F+oC$@$@$(49FA 4ٙDಙ$@$@$@M3&l& @=`FUpHHH`FD:$  G̨.] 4̨HG$@$@$@H3=񐙸8xߦMDCqtzz[J3n!&Yxp]Z>O:FIzyEdu"}:W'HH[ x&f',YT"ᤧgdK!fuxyo|ңmʈ)4/Ys3/jyمexk\׷KˈҽMۘpt-;s,+ϟ0{{=6*,`֫޷I8^P<jCdh 6ϡ܎1~/zY(O4s֋<:ut8ܻnm;SP7LV8dCu5[4[zxcnqJL8q`Wuݳ-IHdT[ SPFv7-˹6juC{(j8w_p4W~{=P7x뮉:[t㟌6sl9_²0&ˊ8f˾Y xj_!ђHH)>*,ٓvט2.y<}{-/mL/+Kq^WI,,3n&i$Aq) $@$@$P{ɨ̚5ӷnfmذ}F+W>?Mٳwc UFc{)SΟ+lĴ\.4s4㓝},Ζ?GlIKvv1ReaBY9$f J(cO|Or.ۡJW:Yc rKL/T)(ԫ)".* 1_ظW6cQw,IHH6< On1uԣG~ HRzKX\*tknp{J W=j(Z!֭SN!~K'G2%Gtc_GIB*(P:9AAIeӗ Mc.+"8o;ʏwlszb ~nyiwLm_Q\kY[50LE}:|#154eyH$@$@!9*d9b7!B"nEJJ > 1U+džzzvJeⲄ@¥g{3-qvi}D _'Ɲ^ƚ~q]tʹO~Xϒ gfDqᕃ:FJR^}) |*t"8MEpVQvtA-"N),yH$@$@uK8;N7&6oިh '\?rc*H\,-))IhFWZc 2$fvJTWlבxOӮ.uBi:nd ':CJvᝯ~}UZ_>Xn;gठS}bj^NN"/()\ ^3ڝTzg&):N *IHHܽꗐD'>~il3n =m9ۥzU[jO\=쑂MXJsPXa,^ؙgt(7}pt%[/a|ɐWϺ76ms$:4h7/r  XZECp:܏ i>3޻m}K^;dXPiktRn@HHHd6J tĴ-EG愃P{9gâ_~bj9,K-V#y3 rDؽ7^{ФQܢw7[ +jڹE"Yph0|vᕘ¦==x\S3 dT̊{?|MbOUо)j=(r ЛƗ]߄\;V8׎ؽ׵-=7ʑAW ɾ|~WJG01sVbݻ~DHƚJ,   CKV4ci~:OR2vE:%{Xg H4f:<|Â'*P&  h 72]ژv-2ڒc ߖQ> dhcjkz?nsRaC   @{3*]9_Z3r^^i. R}io!FFG[S1VĿK[SAJ3;EټcnOwbSe=D40(.-nB1e   }T`/(}OdOIYۃ( *|{F^LuѝUK. qdvԳ .gW ))<4l-v\0(T: O 9\rIHHꏀ~f HIɌ=gƥWەjM6=3dYOfKӚolgt?6id#|#B!r\WwMfӐ~u璞HHHjELQ+' .l:`}}tF.S&L`QTAQщ^]9_$@$@$@ 75uf.:,<4n @m0 =mJ   $ Ԟ33   NUSl? @ 0=Cz   hQ5 Ԟ33   NK2*krZ[|ow_ֲ"uq{_x(a?j*6<?xwYrt^ObUq%/{{s VTjړHTbuR |85W%[-+RuU*$Y];Ni*" %/|P.RafxjuΤ}qj]٬R'WeY'.C9Ud=You͡ )yDLXPKzHf~Z[7| uum׭tUvsQO/pK/5rjɚqb1OeU ]Noo;q[S.5 :i~]T; @ x}L͓@!hp~ /3zP+Ym137n|0%gA\sc2ˡr+n 㩩PS8ϛV%%Yr,5ExsތQ%o|.U߀*)i$߯F<8,i ȕ%V_n˾|~zv8,U÷|Oeuܿanw`ifkWd):"cЌKv+YSݲҴ71cmBquHyDáϙpz&yX-G8ܺQVvq8_9_Rt%fjt9<(A@C%qKFϩٓy qvw!9?(3n|4T:kEA+AH,yN֮&^7:8SSЛ~>ίskz!Ԑ Qf_ vA$ocAWk4*`yE^$) صֿgݾ"f ݯg;l.ri>|VcX"ODKYQU|3y1ѹ7,o5=aw\[xs>;ǩC2XmɶAZSH. 8,*6mϿiY̏/Yך tjҀ=Buh~*:.>@I]irPTX jJ`bH~O -nG愃P8C8S%9gv,~)(5jC1,XT"xGnN8'qW;`\u_F=s]l"(qb4?1yz!e$p'/ɨ_;:tΖc9G !3iay xnܾ?{k`t1CAcQ7LtLuNAWTnZ}ܧ4tƄk.B%;W~[?I_6q *FTfǾ;M{`¿w'cl4k#E~'$$bty튊??t?I3$c׶֣X jd:۽yEg4JF]f/*qSECZVtfH`(IHԮGI={bSn SCSjtkt)wL5BN7}}1}Sٳݢ)hVqx I#xM,~bz7z*I#5ZuQ :}CK+zd\׳S55;"Cwp @C%Hd7n2X/q>6C3F,!E,Lq\44 6%'3h0m5F YmWqMtVb] l.rϮȊp!"4>Cc3jM˅ٛVזWm2ߥ-%ÿoWSgBV.om&g\=' OEiYUBrvפ94R Xn>׫Y r-tXRw(Kz#DN^\ ^tB^Mz!}B/fwAƭf!7 fdc^\w QzY 4H<],~#?,fSH啅 fLѩ)>5U2sYTdBG<4K/Nl= b(7T: ]C+jՂo.}퓜 [ySaѝ[SM:UO X< [}St,ws%:[RJrb>t¯Ǚ θ>g؝זkY&ar=Y3V2Z/$e, 'Ӂ(IiMTp]ژvпԎdUwh%WK ^R:#ꐠ OT-@=h[ey}G|'VM^X2WG\2ک$hhdgX;p쀒 {ߧGuk}!׍ɿ .mM !' ib2wٍNl{JvMó͆vakU", .}ٱM̫pVnHR)q_mt6cӺf Cp /8i۳=xpcr..u ͐51U8f n߭]x){(_L:gҹ/v\Ẅ@SY YS[: }#|ʭY/-B J@T(e79%ft8=1G9%zKownqJ َ,_ȭ8 qdvԳ .;yCñJϦzJcV܂̾u]_{P.|a:kV|A#ah*rYΧc\+`,֝nQDt* c[s=eXR6ҡ:$\e6A,+.m1U+|{F^{IN4CHPgOhof)(!8.R=d4D__zw J8Q(٣ ))\~;5}98KKS%5Dyӂz.(5TWKC =of[P]fw`@]Sq;+ߐ ,}{̫:΀=1*DZ=F"|Un~A#VSQIꄀ~quKr{jih~}bՁasIJ!:7"Թq~Q)i5Ĺg5k))w;S _6bV=زjM@-k٬i1K /Yr+-|L!iA'qՠ4J9OYCBbl!ˢ.%BnjM6=ۡ.s6FRrM^= I\COԮao+,AF2+8r}jp`l/XHVhFU+fuZ8:Gg$@^KUFkEir'$JKQb+nAM hMePǎ5Tq\*~c"`x #.u}ߵ:VYH5̨\D+   'p};!   #J $@$@$@$*fT `FGz   p3*WIюHHH0#C= JKBcMN3wc**Yr*=_WTv Uc1D":t䐮"MvԒ 9*Ԃ^CKJ|귷XOfV|[8:=UnWL>J,    xIF׮us~mc\l|?6fN|}ı+&TcL$@$@$ /ɨcBn߯˱Ԝy317>8J^˿ܖ}7p譶G^YCQ[0Eiڛ?1[QiΟ\:rQe_2r^hpkl|ʴh7fTpja^ 㩩_XvW9\87DZ)/\?SC $@$@$@uNK2*Cp`+A'~=BWX<+|G^3䡷e}c/#W ǧʢeY|TԊ; >8|Lfūt͗z7{}Qטz|+9Sߴz<^nJlRmEe8,^Exol~.de@T`0Xl%eYa^=ӯ%;Qi:%J>W\r! @JHqi B<~_Εg6?Y v gc9l۴0<8!*+ǖ#$X 2__c־qEUo31Q7;SHgn{3U=g= a[8tY_حsL-25,"  O^r&"Ck. 'n 濏MY rJow?̷Y0P|R2v =36acXsAE.߷t6 WŃ*͖ڸbY   Ja-4wCNk]GkcH*!E4;RW.˾--I)>vX3:ףO bRJV->ə7En'wX{`6[Ԍ䓎NHHHꏀW l6[0'Я&GCXpg ]$@!߾*&_wͲP[}eͿ47:§ܚ=UsV6c#͆o0 ^&yǞ؟g)+3gH˻w٧F?_]XO_\Zmzԓ H9dgƀ3JVQkwL\WU[~0>z4-lD5Dy }zL2E|C:+{f|CϺ NJ_$s d3xX.myN'XIDAT˕ȑX˓o[;CEcT0aAi[ZɭfIHH4 XWJJf+hu]C;*w;MN΋aoP i٬'ش~fCp#v_)29Xe[`+6WU['Ǫ_%7MCר4 @"[Dռq`QƬzXm)8#;/%4sLϦDzE3HHH@"o:$٩ UZVe-4    ൫~=l @ PVF I$@$@$@$ʃY5 `F%f x3*g$@$@$@^Bt$A$@$@$Ą<U x /59׎w<& G}5-Ǵxm8f@ }3[,감>륥5h @S&%sTéԣJs҉Mۋ۠,I'JaQQxGHHH$kغ9ӯmL=q&bW__KJZI[ֱ[V! GxIFelr$ 7ܿ_/J_mٗO>|j+|䵌7g YqM˿7fTpjUJF5YӮҡ\p,^Rf9\O(5ㄾ/>?*LHHH}TWzХ%ʟBC#W)y=*Z%dgONοuex@rw-[nV\f= 3{r(Yre=j+*enfV|մsNE>z1,X4 | 4B^Q鑷fǾ^a|̖77G!<$`y6-L;OcNh=o+i ;Mu|F01 @c$%~z'@:a]0/6M-7GXGk MQȺV->ə7} JLL_U%>fFSvr$@$@$@Ad ;d{BoڛHl6Ǧu~ [AotOY55z<=*ܗAJqߥ) lyE>E&yǞ؟.WR&  h,}JQߛ7?->J_ױEݚS<!r\gLH0HHH&Q55n\ >``  @hr~u&k?u}"6]+'Ly-YФ=7707O]Avd%$ }%nf73[.$&2<$.Hsz(T\~d9,oނ(` l-RA67W|?W O˦{ 7kJgtkK+   =9*|EpLZ8T}`9Tet!0Cfg; !Xրm`Ap'A 8:Up!c% A8Q!eH҃L kB>b($5&*P=+tꀮC}hBaLauX$8· p%\ &/)@P4 @yQDU@բQmn]0h33f3Х*t3 }=DP0j$aVa0:L?f ҰX?6]-6a۱QSƙ\p8.Wۃ;Í>IxM5 >8~ C#8 BpFM#eDb81XIl$^!>"#H$GRR2itt4BD#qdy+0|BS)lVJ=2 U\)őZ/U-,'Z '!B:_BmW2}/:j22STY+`tR٣e|8rr.ˍRQTMD=DB3SKO*)*D**T+\Ph4&-VF;I}VTWP*nQlTSVRUrW*+5)+}V+(*oWnQ~V1VYJeWΪlbՓ`5cPjnMk _VApHةqQcB骙S ݃Fw'ԴDZzf # u::;u:u&u5ut6>#1xz 7?7P2`4<2f31R1yƷM`{d&SGSi,ǬlĜfؼEvnovi,ZYXXY6f[W[߳ڬiyckb˵g;dG li^hh?P0Ȑg0J1;~rwv:sQ qZ4r92JwwuMˍV]ǝ^>aq㵧紗ZvowwOO_m$I?;~@Lu&YϜ pXH |xpq[#%%- #qAHfȹإ!K> ]F [v4CgxYQDgtd\d}twTypE1*11غةe>v-+Xn*hV05LId{w_r9;9\n9w<%1>u<> KWm=M9/BZ81 ^b}=vQH h^@;ml$KV@ĚTξC!3-_Z@~+7K^g7 @IDATx\G̐3 @mYA$-o6ަ[7x]ue[-Ye$@"$t4C H zZZ5W9J*O[}sgBdćGz[]MjZڠPL#g    VNKg!\$`ua32 ea}/MQJGg0|$@}@EظH.`%}T^Ny!k&uФFdw[Hz -=E;Ie}Lߋ*_@VkH^}Gl{~M@G6u|  UC4ꪜ>YKڐ&55^< h@s߇B^-V~_+5i3I $@  48Kb+++<{:"2Z/$~Fox&TWVDDE|# `M(Ftl},$UQgOM̓H$)&Q$@$m_0Y>s瘮|NkeG0{<\H$#$@$qUg97khm߸K  @HH QW_:DY|!].    _ %q/">ejhmJZzbIO*l(/jť X Zwٱs0H?/G !!"^ׯߐӧMMIIQ_;gɄĸ:PǏJ(.xT^wuyj]$@$5o3#x9F^L>'L?$=e. 1*ˇfs54t mhlGgC:0ed$زe]̦֙!n?3눬;QQԏ^QU___þl6zquu55M TRo=/nϼ$@$@~ >^ח΀$qWǎ=飣 0j(LGDF:d_f:KJ=%u;wj}L6 Wo[6/nI+8.Hn%t@O8^+Vl`X{1pA_wݤ?ZcǮ7ʎLÆ 7n.((ض}^oR~PfޜѦⅾ?qחB[ŠJ㜽RoF`Cr7__mE$@}[-{z?O~^xŠ7{//*~ 8kHycG2t+.xp9"uvszh Gv)aeDiHITSSWVzIܝCںI))ɸq~ dWKNNZ/_43C7lΝKLHȤv~csSSS-fЯ> .Xdxd4X]@/ ϟp4x;{iw`K01h ЉH);'Pr0 L`0JΞ˯UjVGi(*&&nhlUJa=K wFeBIH@kZ@j}%z5_ف}h$YC=+n6:#YK3i:|b8i҈/tI^ jY"O)Y7ߴcM@³<$$3ӧOWM4ށCx,B[qBlQF!#F.[}pHhbŋB;]Ǐ;aÇC`͙=h1\RfzN8i<=˜vFݲ̡CCB1W'ǧM \?{!(Z~ [KU=L޳7",t gQ)GD̛;G*[j7 o yظ3eggc> =}0Ϝ9ʢ RRS0$4di˗Čw܆d.eg?gR>_|OTOtXЭH#iFA?(91G퀁/qQx<5{.W^n^*$^x%Qt1cԗ^~Oĸ #FaҤIxp(d޳xXmq?<?J+T|PeeHH {y6[O<._eg4A<xT=(YJmjjĤ`HP^+m8pܻ.}{ VҒwOqOr)Y(I q5>>NnR3 |ɃbJJKv{#M?[D|\Q$ԊVl&ouPɑzmSSRYs<[v"WdD㓏?Ls3sY򢫐O?Nx/{IJ03644&$&?A \&8cqqߟyY̚=g6raol^E"6*7f,nFqOȨ!j7  }q52,,رx܉\&@q߾} 6 NMEogd\OJp)( ^q#զ/7Ik2psFwCfnڴucyƁ}Mf#0Rt˝ţv]e< H.zs;u:ŒV7!Z޷=].笛g,^x\fԤ򛛱#k!_:M MPZ|a+CВ!Mh 7zjíVqnt"7Č>n;g>)iNh;2vT۷Q,=38tz3,Pm^LEqqR[G2A>\V7X9X؍ fiks3nApի1PUJ;w.ܟ!Cy۳ gRʿ(G1HH@;jW5&rr 1rlljw ؅~l)_y{E={־}uv#$>au+~VB+!bq1D1|%>(f[ix쩂u2 WUS-C>،xD^S[['>bky\o2d5lolncd6# xj~4wΞ{'^7qE{m޴Ev3͈A@ ΐCeb0b];v[CjG߄dDp)/5@J 3j ۄ#"GJ.1FcK'ndHKԗR}ppÑY dl8+ w# ;q  BucVhe@O^H}Q/|=J-G7SRNBz|X  Mj<57|iGR AAt%c0رOf6Y%[U 4/^득HpU!>L7\I!n2~pynۊK6r@3Gz cдT|ah<|( nv2 f56pѿ LB[,fx#EH&wJRīJ!Pc(AtɆsvuQI2sIKSke #C3;f6>vBdiU[yudNvW'CCmb|#JF/R/ u|\n賠>TN[ ~2bH]\T ?Fx:}h>3f>H{ԛ^PT\$ bR7/?CS?~…r!8#Q1pCBqF$G>C ,B0nX QPpsux2Ay._2|YQBQ$>F58nuBX3 (ٗ?~fffմPw-_\ZZP#&;zT"BMw:<|~wx9ib/>:H䦊(K#YjttJ!"Nr\7z!Hgw EAC%O4f:&`KY\N<w`k~~r#]HyI0cΛ,,5"7l~ ,^?6BsKK *<YH='7nܴzJ<2yTXP'xP<(@jF2(b`@T4ygiQG ˂4e t$@$@&=;f)(5u8mI| gQvڍ]\&.4mA Z(̏*yfSۛF6FJ;v@ff&iӥxaR 3҇`mY7O> >9҆SXw~ȏ<ʹQ ˜1,$~xdX)Vklw{G(-h'` #7UPY)Imrsɋ*V^o<>} !M"`LZٵ ΂'Og/S)Ǚ3 yg Ypv-[Eͭݎ? j-2]sջv~}|X)=-liYt,[B ؃=#@C%nKzϰ{o;lٲe>Ͻ i=+bcGǠ w^|y,踧z p@H@dYFuۃoUkDԩSa@(E.JO*pګOIIJ_c)6?~\qQ믾e*+d$´HHԳc S:vpb&&ES+222Q};&w <QK:nĐA&nDE>8}oJJ(ҔWTJe=DbHېP=Z1- TmJb{)$"h{5$dڴ)ݻvYV jP '[)gw`d:HK)չa~|Ư(&!d++"C0`ZiMK]d |]$ԥ0f Kb ).Cb $<3a4#ץ*ߊ-[;%KI_QQq$p"8#h T % n %1]w\gmDFSG]|bZ5m9\S*ǭ Q\x@g;~yV@n]K4@CC; kE۵HH@l$UvII~]-3KBB; CZ6x|1~},W!SSSWN!++ ;Zb_-ֺl]-;jR\H$5`e%dCc:ETJ*L'y)Kۣ[" x6JbD@ʥNu}MiI-ܕH)~#mm1-eDi!   +N䥥ί:494J=Q9puxᅗDEEWӱi/6:`CQ~/Ev/M2Y  P0SZ rx(>IR$,aܵs۱k.žJETQc4 @mpt"Xndp]gT/^3 $@$@$@$@}%o*ƪ    <v]$@$@$@$@$pĿF:$   VP_+=v \#(񯑎f3IHHHZ(y @'ك-!j6$NQZZFX    (y!Z+!"2ꪘT^^Q6$~P%$bq4h'$    -->_  {t#h/mnn)z˼LF$@$@$@$@s0}o_ Bի+4I|4Ra ]DkIHHHHWz=,F(*;2bz    BߣXMH|     ʦhD_Q6 Bha#    5/խeHHHH6{Y|OHHHH| I=JcHHHHH@M @o KHHZXK&   ]u#h )Ha×HE ,$@$@$@$pmВGKS5M#G/..7q 55-Ynj CLM"LHd1 iz: [C.uԨΞ<8%%%eP:dG`fkkk**6oQ#c?bO4 ϟ3grs*266fQiӦnhhTk4vŤ3\vp)((x)&&זVu޴Vȗ[&{WUWo޼3~8(=Ɛ tHa+)iA34С9ٹ'@ a[ϼw}'Or4a^~ncc#VՈO|?=co %}_Q?^_|9̜1tBWTT}7r >*+W<ܰa/7AR1=o<:|X4Gl˖}l1w.?ܹ:>~>4>+3&HL@>rgܳϝ8qK%lѴ6m,JV[#D|KlLb|<|JK坷۴iŋc^S0 FB⬭Y|fذɓaaa/@=zM skBB 6;{6ZvHz%&5Mf0OH/(7>:qrdv>y$K-0go(&3 HQ/-ݻ@ZʠgN;xNH\gϞ{o<|0+"""NZT|WKJK#Gb˝I⃅h,2Cs+\AK 䑯FLL4>&'%Ś] L&ZԮV(W&,6-:1RΝ+ξ}דĤvu2b< 48z,ѣAd̘12bptYU*MrX/ rqI;&˯`.ç~̷:FI;N8)sf2L%+j24rI ,lE=31EEEZ-g I_pL2ھs ť;^ZV6Ɉܾ}NpJ[n>G,QjT{R\~A涨|UJǏO2Rx;g-jyvǥ%=-'MFۻَ8>{Q#GݱSFEE/`pYn9x, c$j +n Rl|Ν`-DBtUUu}mmHX3d .4 ̡Y|1}3thYF0jVK$@$@$@$@ 8}iQGi z     PW`HHHHz=J^߅l Pi0L$@$@$@$@ @IDAT%~B6HHHH(4&    ^Ow!@$@$@$@$@jj @'@뻐     5J|5 IHHHH] %$@$@$@$@$ P.dHHHHH@M_Ma    ({}$@$@$@$@$&@0 z     PW`HHHHz=J^߅l &   ѣFM<999_er 7nڔ:]̙3'NS+YzvTUU?ph˖-=+ܺ:+$@$@$@$@$pM3hjj*Tj͛z Ѡ?8 l 7(0sHE퓡E?56Ds=vƐ @O ` QQu՛7mڬ]~hws z65667jgOl6''%}|7d|WbLO$@$@$@^6D ჿ͐!z咔̹+?=t4et+:F$@$@$@'ힺmwr BpppC+jSlCc# ;)Œ \t5A2&dT}jTgU ׺olj ’fN/ zCGma h?zԞb84a/5*آۯ_bBB|LttyEEqEu&%=D[#YC|zEw+   Čo_hI\ơ eOd|-J|kfi9 _bb֭u! nEu?7@P=G`Z(^68je$@$@$J_s%ΐOs&>5'1sowϝ-aa޽[]78:"6Жw58vۜ[f}Oxӊ/LLL|yi 0v̘GJY^^|>>Gl 5: =.<,,"yi{**"#"CB(aFvlOd:.X I|R8&MNKjLtffv6m Eū|qk4 F V#z_&b}}FIH \oaVa!"I.\tglL,>64~?ԃ}G&N׿K"rU/Z4j^\T7U̝}˴i:}Iѣ I.\r. pmH2g檻 6dfd̟?/6&ahΟΠ;F]Ibg >Qg\XC*f{{`h0gᄋp qc{3g;~Ra`0{#QwВk*;_Sƒ @'\oc|l1OFWaw-T:nXjAhNJ C3x)UWw0k#*W2)e I~z7JWZ,ƋHl2疛(Q(2peZHHz?])6:m7BKM؈$D*c= [EE6 " n``ei{-"|sΞ?~Ϗ 1 E:=C>._׉%>l8VCSSSf@#ko(ƌe$Tҭ&?`t> ܎Dz1%eǡ 2[ARذIƐCھ/&| #lTΰC0^)za3Pȥ M hhd0Gz|lˤ vu0 ?&̆y'Q'CXk 0IHHJ2 .W,ҌcVUS*@55;H|yiBAFTLCC\8yYŴiSlva(+%-fKMmÆH1$*:cWCsJtm޼yE=g^*I#A7AKHg4{biQq U~W'5].$\^,RWPYU+tItdTX!]y"Ē т_JoQcǎIݏ!)9z :֣pi c;D3Kol *)-q8)CpקA؄6CrUFlnw/* cK.wo<,ȈՂqM)-:*nlh]:JQLl`^gϜ Cr@CB{HՊ \ysg8pp4|XCB5aPJƿݩ{S&k}Ka|?xϾ \"z?@}iמO=<8Cj/#7l|Ï:Ux1y__ kE\6o` -ؖc_7#1>7D?~ | h@D clzx١sQja fj#>,4 Ӡ"D ۍ4sYgϙ3埮\ӗJQii?OΜ;wĉ#GTlٶ-11abL2+d&&sys愅*7Fo8 ٩N7 1$>曋U1۾ ~J.xO-F;|֤~~tv =ZCK:L f>]?I9o SBVd6Ub>m^v:pyOh])E2^"  +A3de8yۜ%%5u:LDY.o7G`Q>Wx/]BVxCԫ:>VZMbL;n݇~cǎ nw;zXvN΄1ʒ.Ʒkoz!6FH|e3X{W*Dio;?OތtAŧMe6ρ[~҄&qmp>UhbMף5?Ho>z))ŋ%CÌ!ͯ}'W+,,CWu17R%:v+== ϫavij5-! L/~_"PW\4/Ç W+t9jlv\EjJݑc}WUHu~+VU.:$n޺ump_х{$KNJ7mW2 RnW_.pq6puY[k3f2õީn%ޖ|ܼ3GXvn.:JO!߄7~Сv.$i`o>X@Zp5mH\Uy[l3s?)剏}K~|o=%"}Gz?z -^C%5﮴V'q;:qaaFvP:JY kKfL/:z)9p:ǻ~sßX"6apY#6}!`FYdO"/$tmwG^oٺ]*q-[.G,}J-#,\vt[t1aeW-~vrvHÏ$@$@$pE x91 A'绐Օqq/vvvc: ^z?ZJS|I cs= \&xUVA_[CPrINNo0Be7};\#.~z_nnUٺmVxhp޽x=[$x4Vd95fh`ᝥD|7HfV\/;:V\H駳s;LH^N!3ܱ,^X[[s^m0aي5Z3 \|녬-&4sf5:́6ʯb:>viLNKQN*0'NZ()m\JaО6ޑm? -{*݀HF@m , QnˀF%>t>|]c6333F6lh&T-qmظE7QX}C%[BBįh,(1*EaܜGjl)!-Cǟ:~,))ֱdzsK ;~ɗ ~$  +A^찧ric#.C GTGv)o>"§CSa{/30w#=նvڕJN1a9n G`YgPG0|G6m%2adžE8'$מ9׾2i@4<{(C}u'` _~Ѫ7!$$ϙ= ?0e=?p;eUI$@$@}z{;#5M/#}"m-S)hx#ں }ޝwܦxnϝ3O>sqoQqqIM^G肒}ufK[`;K?r?uuk֮|F}2Ɛ #௹+gq`jjx^qh</)I"ˠQ2ْ{h}[b`V\sҰJ0.[[l ׺WVM^pz>_T_75ҡ!޳]<<ܽ$@$@$o]WNOfh0_FDc^jEá[|LLuN}ܑ 6o7۽#C@\|W/|\\2G%ܽrvį+`Wݮh<Xf[AHH>vRL9mvvpDgЊǫm/]ncʠ%>^k,0{DFSа5882"5Aov%%r ϷJH4BWE\=Vċ]h:4Fkxȣ<+L&[?$ȅ oit60~,%ֺ 5E)oqsM5VUw*}ӹfs/s'nߐ8N4ɺIG.cWDuI6Lnp:9qRyE+1}ja6eMUl+`iQdzQq?&+թ.V?zcG;I12Q'r'Msǭx}{k+^~uZwGS> cHHH >߰oE˅.ߺuF~GΕanhZQхl4{2>,N[:NKEod3 鍟X*F:o.|W\{"،M.>^p}_I^nx?wṿc޿4~*s5뺰{@{%>?[NGTdx\}w b 5dylԿRikhh ,xAɓo-3WZ"eQ~oc ۫w<*//@wUHH< @*;'Tvk3\/7 |ٻk^-r%Z$=Or񅌯UiH5OKKV7ys2}@na[cI6B~sO>]y6߇1/Q#G7lʓ'/<sj#>Rs2;M(ʼ{}qsNN^EeELtM.ZxЉxM `drc<j5FFE8pX=Pg:N#b,%~Ϝ j4_ZjJVQ_xDpL2Y)dʎ:jR$@$@$ОB㶿zxS+esk$>ob}A &E|a+VcXZ***o^Ueŧb^?Z1DutĉA-V]?_|u$ȗUWUUE-GEe$?'Ɠo?(LH,XqK@rHHiDɣ-Zftm]+ۈ?-%g߱st7!~Co" vqRCh P5%e8QW^tU#(:vwocsz/|oRO$@$@$@="Y|l+K?l͂;OzwĪ[mܸ[x$ƒ#G.-W},+/vر;0e=ҷl˯a955K7Ϝv9 # lqӖw6UTV!n4Z_80 "aI.}mYG:wiSyS$nKzTǏ$@$@$@$Mi*,$$_\bcp/Tv̹e\pw-UVU-kjMFCf**;^]#,Ӯ`)"bNNN%/?a( e v:kXb?bll h}JadXTT\Z Yvf9IHHH: l+6ln+VcO*Hqy9v3;'?ݳ1et!' ~Wؽv1 |+$@$@$@$@$@=!@zK$@$@$@$@#@.A$@$@$@$@$=Ǽ$@$@$@$@$9>w 9[ *]     h}G vh:QSS'ls:3_tv"   /~_v @Q'@`Y, B!PPCG@EQ" ((*X^۫HG?DQEPD Hoi@= I νrI'e3fvمHHHHd0/lHHHHD), %Ý 0ŷX%    !dU    vK$@$@$@$@$P2 wJ$@$@$@$@v"N`iHHHHJSVIHHHHN ,͒ @`_2* ؉S|;Y    (LK;[%    ;`o'4K$@$@$@$@%C)~pg$@$@$@$@$`'LfIHHHHd0/lHHHHD), %Ý 0ŷX%    !dU    Ғ/^4%~~zWZ54r{l=NԲ7kҨaZ97ӷL4QX4MsHHHLp6goVүE9ksr_pFnMOA-&%;~oMPmB06hn*M$   sJK Dw9.^lдI~}wKbC}9s.#3G{S;::f5B5 :m[SRRBw=?ygKG<2$Ng URGG|mVV 5w7WOn q߮:y ba[h#/[2-=]5˰NlؠbAthEX3lwq~q/^Ӻ ..?iI<==z{07rJC \q;w+QgKS=<ܿj>{8p(4&#7oٴů!o۾###ssO׬Qe;m+6?.\quu5luAAiii5A@ eԾTFᅩ|.wvUܐ 䆄ϝ`褺!\ +]m47}jIA=gHHHn2o=U(RM޻grժ>هG%%'_&==##3[ѩ_/8QS^Cy([r㐆AS^~%*tIm686i+3cc!;{YӐ7.7 ;B}oh۶YϜ=r2RVAPvmFҨiӵ 3$cE0A0:' ys*M$   FlND^j:G Gq-[E$Ì>DHPϯZ*UĦr:cbE~˘hWEDyƯ\C".8t5)!ŎaAж[.-o%eqiӦU ]24V s):ZG АLvv!aYDW]k3b5Mz¦^o˦'IHHH$ 7Xg#S3㹖a~[jeW7%99EKE-8ge]:HIxrv6`uF?3+EQ}Cͦ!p%1oY\@d”u -%,###lIaӊ3֣@uRQPB$@$@$@7@٘ŷB;bڳx7_ܹ~R\Xr^]٫MVI)bWQS XxS,A788ofZl>^X3 `㯛*+vrs_c2"^cgCj€.N9yNXX Edә[R2zy=QcA9 ؛@٘ŷB⸱U M֏<trt@"rb ZAS LOKǣXuXK<`V-ZjONN9b}L<TR*JoH#LYcSfhP}@ \է 8ǚ ###lIΨӔeHr+ĂU47IHHHf(vi8ݷ_OMKw kjf]4n^=X[wjMf/xrܘEg]vˎ.\w7g|w$ʳf>B9626s0ԒBC=rvN,@eDiT }lt{egg?9i|dЊ!a3NFYIGw}BY/P6flbi߮m||¦-ܠHHHM!Yk{qcI<16GߨW%O̯#2Tº̑":Doo/:8 m61e Ơ̠Zӑ(h+l:iŚpl.vO^L$@$@$@v"`{N Y$yԂ% MaŹ>&5/P֐Ơa\2 2je1M'8vL)ːDq   (ve~-~*#Gԗ]~*eł L^V⢟$@$@$@$`H,1B    8_;! gLs26    H)~tL$@$@$@$P 0/ϽHHHH* 2 @y&<.c#   WNg$@$@$@$@SܻHHHH`_;! gLs26    H)~tL$@$@$@$P 0/ϽHHHH* 2 @y&<.c#   q̞>}*6r߿z Bp =^koW, cv7s秽r!n~lHHHHLpiֺL8Z's׭]Sn{AYag Ty-~jjZ91 lݑW% 0b" @ppH 9_.Yлrb鯌{r M圼vp"4HUBرYfwzmάW*.2gکc{Y7o֤Q倯O1(^)Lߦ*_eum:,D1d|X Y~Z1Tdg'g' WYgU޲Z̕qesEfZ1bfrU3@8`eT6iEoTbEwHJ Ҳ;8:>__V,i9S]}2~;'w))۰k*2 jңen]p9%\"Ӵ&wXS(}wux5)~(.e_itE Y[tDڊF-k`z7Sł#&-=}fޭtrvR6XVtPA}z=aJ8rvhQ{P+@$PJK Hdffx9.^lbM@u?N/^Tuws6tp6l{- K۝/ꅶ S,c6I5io3gedSRGGMVV \_>kS3sW|3~&ycFHNIYײ0-ڻWO*1+W9V qft#C>}Nlؠbxm =8lz ZA##֮Ρ{.AW4$ BCe߈0+50L>'_rEjKxeW"TQP<{$!4 QU"H|!͛7MNNf媁͙Zn^Rv U/kplu}j$tv{gR.wv{F5Fv@pSwo:# Zفe8էoTQ;Pײ>e.[2=# lF3 rrK J6T=7Tqe K,ԱN~}VvXs9hCBy'VE2]=ӳG7FެQM2>}Bbp/|6 ّ.x&#{`%.QV]5EBwO]SQߵ }u\[ _P`+7|NT%dݺP_meGG'X;߶Gs4mJU*΁AO>?(kAÇ^xPXwN-5~7y}4F5mN^uA?N:;;w!׏C WAgתUş/YQ& .Hٖa(NjlH=1&I42o"RJn={@~F &Oy1#e`o;.y%{gD[{ܟ9լVm۩UϚ'[疕HGoɶ-ŦK7JRl}OwV0,pvgfe{k4&! 0Jb#11ᅮGYnv@~)Llwm;sY1,kjU>G%%'_&==ͣVZV:n_4ao`F濓:)m[ǎ7~,A?v?bĂw8͚'h ?pP0gee͞0;6פq˯̌ͻ3w'f!Wŭ0}ȲxM}]Eԯ_)/&%1GOOWT;SkpuܭŸ!QTԱCxDdjZTY  ~4K Ͱe6R"dY]OhoEHC52mzBBf4?KIz ϖbu8ih$@@HO>-X_z+Qƙ7 9~~ժVrW|W|sZu_\hTՎU]kYٻ"}.{Rv6ޫ/Ś,C$]UclZ)ع7qNhEYK6@pXRǣ nH 0+ux5g}d}K"OvvIL['7q}w^!!rىK87I.dhY7r~^%OM(0Zb-Hu숓ޕcs,3uiؐb>72zZa\VϘvַjbC?);; E}G+M`hPt|KS]v!aCw|doWжM?ڦ( ȢU2MuW˾{+hbEwH\]AYڔZr3y2,!Pv`ZM)Ś,C====17n+Y/N>ۡCsɓp^EW6@Dhr Y[fG<>hu$}YOXGs` {GX;veِx1M Klz.EC5ST^_\SJK)Ɏ>sN]R+ʪ訫rm::ZP5eiV󎨋u?7g,A(ljrn_nO7rמ}*|s8U(BCwzvm*U:mߦ5S p޴qHsC*z===wѸz잓c:vl7zһ_eWk9.W?W&~O#c`'iC+=P)Cn t{rƟ (&(̚qc͟l].^4 p9CZwGY[voG= k2eæicG.q8k;? eeg:u2C׳W˾U `oq ?uCnڲK#\0zY}|yaclI4S.$B6aYs3rޜ%]Ma8q9]*J ?[kb)irk)&z ðr+|/а?ޥ/XRg7}A R QWq(]hc{-;;kotHޡ"Róg%5YY?$  b8ڷki)'(B.ʜ1o|xT)ynnѳO/W1U˺Rm6 iV ǖ*{yefa-QwS`2l K80YgG¾Ҵ̠RmXT-t[J]'g“c{e1m@PZ,J! % ,]֩gq?Lp`^zɧZ:V,dXk95^iPYcp[QmQ:1rpJ#i6ے]eS6$drMOMH.:OI-j~RWl$9U/uU*t6m:cxu;Xj3öp,WbVe}5A= ~@P-JRQskmmUT9b(;.ݚ,3C]aR @dQauc1hYí((u L಑#Go-YȜW!!D @%PS|;wn(g㮜4'i^SaΘxbeKw'U6nRݿ/vâ|WүX&{(2Mv͑ ,2P k?cvMSg7x u5IzB$@$@$@$Pu kժ Q.:7hРLxK'IHHHJ@yMCN:uWblzu?aG&M 3eD$@$@$@$@S HHHH`_ ThL+t3x    G)~SFD$@$@$@$P 0ůIHHHO @&Bw?'   (◿>eD$@$@$@$@S HHHH`_}Uɳ䝠$@v PiHH6Ғ/^4%~~zWl;2Qfwzmάk P߼YF CS=N۫+3PX # bioS6d PV -!\& (.ev^ :_ 9kE_:wzׅ k7wWW?7Gj>JvNΜ\)F:bhnl-ldE|.H(P+6}[& (.%ŏKH!eff"͸/61B&}S/Y* :m[SRR8;9bvT>sܪ:vjO<> V<~ KȻիz qOk׮m۾ckAֶSd䑯LKK8пr%C~ڭlSqws>lpZxe>i¸&MBAg<ى 4X, /t#nٲÁ7=# rJ z݆KfP~w^=9::f5Bqet#C>};tC}9s[_>kS3sW|3pPA6%_|5bcFhբErJI( T^܃a}l􈸸CޭKpp!¾0{AҴqH9V5t@.0V?_I}1F$C2l6gPPe8T~\iZ1'{0(?( ?ytVw$@$@zNժ߰DDq%y]wz]n߱6ٳN4I͵8yZ'۽kzZsB5rg+W5ߡ Wkj縱\]m&%WkܸѨ(\]L}n\,ef͛6m5j{~;;wtws @83k֨o?hmV||¦-[/^VcbcGB•g˿ DAAp zxCa}zBϝ`uu'Ze7m6d4~㦿wVGngfV#7oٴů!R*7<##5 /)$+yz~\w}ֵKTkTҳ=݌3_~\N^fddpҫg_6&=:bhXx)U ~ٔZwu-2 ?MP+a"0opP.Dwe蒬ǝqPl{rJ?Y Cp\xT.{]vPFd@EZ;n{a2 @i{`]䦛~wU^pH`3|Ƞ_7oe]vNwuwvcb{5iMzGӴUx;::E`N}axmZߊu͛ܵg'Ag&iV-2gj#ܴ鷌̼riؠzѱyyޛ͚v${](L-w u  jL=dX,Ȇ0@PC.;o`uժ>هG%%'_&==uYM v?& u2z ;]ML1pK!"6q_oW2;w7d<<;ODWBy]/6=Q[s΋8yIp5)(KEloḶ}} a=+kHЮ=wce_w`2u/}XXDڵtaJ179E (?O^o,\_ˡk(6 ӘO$n5-1m\jbC?k\B( @wM܌')ebܴJݻ]W ðm۴m?żλ8bLVvpXS 2l6gSMQ<P1W2jY7(;(dt:vMz'eΨ3Ӗ!xtL$@@H݄uW}: ޕ0EjK1ج,Xifz9q#QZ6Ą}Jjv~Z,zu oǂq /5q@)2˝-V {.' w}O{,AfTDC#G Òh-;xP2*( }퍸BuLaa]dz@Tէ ZaDx.I\O&L[H^2.x`>'^~Day`~>؅Gp`[|lV p{vS+e3 }lt{egg?9qd+̚qc͟wuEh]`ݷ_OMKKp׶<+)[)w7g|w$V_`S/P c'XiK svsά /i~}ء(c }={|[}E fjw1=@oEyCVP% \iJ*:B~!Q 57 ԔV&=;ͰR 5He( ]qG(z r濅wQ$@$@2!Z 9xL[Ϙ1^ٻ2^ /AŤżq7f&^^oF.1(Yx^@f[.[k4-j6.'N{%11;>%+mzh,. KYLxrs/,9\Lm:oW3˺UcJil6gS'e$=qlxPFdX.v?eCg4@d@P&;dreHHd,uRW{+" ~Z+bf—]l WʪzV$xZ@j2MOF̔AYnu4~CCN^ݖyCzԦeݪ ]l*1G#9LS-P6B`WcX6WͶ@0Bv 6=1lB   _7",#ٺ2͌wȸذqS- a*=>& Tde~NE=Ђa[h#/[2-=Ӟ{n!}h=ݻWO*1+W9}w7aCmskJJʶwW &MפINoޅrPPO q߮:ysMEivyzz>Ȑ͛&'|r[pP$`fϖxdH`ڧϜ[d#Ê0x#2 u T^܃a}H +,zs#,ڔug'*C `c_)N#Kj!5<+ƌѪEe+3Civ:x[\Q|j_U{J!B9#PZȰ:;;>cH?xwߥ(?& HC?_pu?{>Iԫ/?:kMyi(Srp]fFԯ;|w?=~NP8jUCam B?7x(F?p9kMSEbP]0  S&O`bd#Xdr0~z qP ͛ܵg'sL@HHOT%Yt4ޡb姟7+TP+[/?^v'M321ءr]ˍߵg_ B"4 ͓I΍Cj ӯ$^11 Ok!QvVQS*Img77wCԢ"nkGDA9<"Ϙ"1)GթSX5ZM@]6ty[k7B$ (0 TRry"PR|޾}jw[[mڴ HNM-PZh"5MtXɍ^EFMHCl޲5=#arUR%5͔""sEG]a89K?r4J%\mSO V"MVķވz/OFW.r-CꊲEa\,>2sGQv  !ejSrFװ1_,uVX,Qnn7A)G$_Ӑ#Ʒq$''7ng[o$vŷMV\ "$ ZiN¡0s{^uǏڕuࡰ 9J|cFOWH=)l$ Ň#(++AUfK:}68-FA`xfN&y),LMIADXyP( &9#=j!&.I֨MPPn<)6Bh|6.,d꒷FqpVgΘ6 =SJ G}Dqc{nu-Qb(1O:l '\e5lT˨ԨQ5YT5D' A((X^8چ>[S '{ڌ2МnpQkP# VCަieEe@٘7 pymg͛J)Gox5XTx6h㯛ůK/.>X+ [ I1w۸*|sM>x {Wœ4fa\mDVR] QCAaui89ąE U2W ]QmD]n׮WJSMڷM5$MO BZAmʲv  !q&ڬJM뇉tp[o lZjȱ GLy׮ݻ=߃fu+.ݥ3z5Jo64ڔ/z#fN&("<;-.wu|MBIP Sbx4Y"|SsSK1< j㲲Fe Q5qC,X,X@4aZ4;oݏzPQp>UꊂBXX$n1 ~]0r`(S#z)MG'\K$,z~:9: Tܔ7]7>cmV-{,T{<2qFeLݩX !n!auEYjuL&ˆҴ]eʊ5MAa&R? Q]խ,תYOvNPGy]ly1W^ö 2n蠁X)ᬹXNm6wh#wȐ.wvTܴe+P;{yUv+wهG0_0l@%}Anl$( ,xUQZnjÀif.SڈlП0 t2 s.kV NmBxv&9C-=-゛} e*4d!( `RN }6ڎR6̾3eQ(q>lʂUd0e w8S3%fgN#l"}lEۍ;AKcgY }M,Ŧ~fꑏ ݫGJj <@o)lڵw}Դ4QxnXJ8B3rޜ%]M?x/g>ى^nh\-,tEus9҅S~c>ZːjJ6{6a\rS.5 P6.[q0VBgX(~Ex!zkU3gFGRM=Sa={܃^̿i#-uV27z/ZѸqzKu4YosT{bx%v]o|H/Q@Gu/.݂O_|-+#A(eUBBffD߆ ?ΰ[Z&  KO&9\8yPXNwugx$|x0,wuEX 0&&>1Ig'! }vsu3D $u]òe ѴR,Q|Sٔ[2Pr*P 84k] ݲ^x^>2 ƺcK1RKi,M P^#?~AcJlb[yeZЄ5BxCD8bvpk/=Xek(GahV ڬX0, y"0b|ڈ&d.ò)MÆ4Bve*k 7 69vdU⧬];cYىIIdvawv7lqg If%}s8d{szWF_eʸМӠ[7;'[sx:NV5;2 GLEgNr FS?adR$gdf9lu]BPe+V$6lOæm6*oaօ6P,XFnKqҴLZ7x5i³;׮avM#oZ,/o:kvaBZfkHt+j&<7_߅=xer)r+ZS F*raEM]e3SP i4TTo:lrȪOY]uJCOW :&53xv_X?e޷O~f͂ 䒾F =, Fi+:RRS FMÂH0EgNr [rL 481B(lT6P+[شcy? ٨̾3MXtCK`ea,J7K326W7Lyn"d)^K\EPFJx^~}֩EO|X,mz^6-S MRb]xxon1M~ם0iǮ=BXc O qIH(c)~9 F$@$@$@$@BQX¦    (מe\$@$@$@$@S HHHH`_^{q TPL+h3l    J)~yYE$@$@$@$PA 0ůϰIHHH+g @%v<&   (מe\$@$@$@$@S HHHH`_^{q TPΥ'?9~5j #K1'OX˜hVm!YkvIj.NNN%%    X,Y11qo,,ԙx*3됢q    %t# :`;yRZR-Zyx)H%    REKWk`'JK_ciqNiHHHHTff$@$@$@$@$P0/W`HHHHH)> +LUw2    `1@$@$@$@$@Sr՝ HHHHs @"\u'!    斞nxɓ'K?HHHHE>ٱcGvvOW_}~z R;?vcYY_~L-l_VK̬ ٫g%^뒝;w^ti Iz2Y(Λlj$@$@$@$@e@H??N{k .AQ6lHll-[oUfMk׮e?8^fBܿC6HŋqqqyPHHHH ()~JJ8kGȪSSSZj6TiӦH[j9p.ò%77^w-&&&~0\-}ߐ!!㍷? #<2/_~wQСPC^Glx˨Q:w(^5b#;w‚?l2?}777CBo    N 1Kn˖-ߋުTmϟdB8|PwwwQ6}U*򫋋…-˩SKqpᥗED^KWV7XnzK32g1ر v> V3s}mڴ[.r~XO<1M#ǷK1Bo    N >#wwߍ{ \ןqhܮU֮];a9s|AKثq^ 7IHHH*&2TEߜ;w٩e˖X,iӦ.Ux ^XFR_~ƌy|W>렌[\i(r}!88HDY#Du|1& sIJHHHH* 2P' cN899M<),,L'GGe[/=ҲSXz^?̝;y MXh"~Ņa*>x5PМ|#"\c((\;2 @%Pf+d<̳WY|/EnR?rk׮a`ތݻ233aҥƍ!^7oނD 1 B~'NVdR    L0Y5f̬ܹ뫯)UFgQ^=oÎ Q yV9b+F-[}߸ްDDD4zwvv?~bRR; zs=7k֬+TVO;yΝ .:o["   8B. nڰ?oͽfij~VJNMY!/֨+ U bţx94.Yqތ!   ( bc>{xR6fEvs.^/7_^TO̊Z >zsy\u;K$@$@$@$PC S}>XW+ B|!Pк'    2As0>&.E)"Y    PJB  0ŷ[Z&     I    cK$@$@$@$@$Pt6I$@$@$@$@#~liHHHHJS&IHHHH~ۏ-- @ `_$ ؏S|e    (LK:$    `o?L$@$@$@$@%@)~ @g$@$@$@$@$`?LǖIHHHH0/lHHHHG)2 %M 0ŷ[Z&     I    cK$@$@$@$@$PKMI5r| jԐPL$@$@$@$@e蘓'O,daLe;EҬL,O|_ɩ@uL$@$@$@$@ebIOϊx;ee΄#Tɝ}YHHHHzyyTG\feVf< uXR^;EQZRʕK3vbM$@$@$@$@$ `.~20#    rE)~NC$@$@$@$@L9HHHM-?5IDATHH\`_ S|    (W◫d0$@$@$@$@$cHHHH; 0׎W[nIH 5:bӼau IHHHH$gz%uIc7'Mx*==c_xGM_`[ͷ˝a SED;ФICw*9{f^TRNPR<|䍷߽wc'y;f'}^zeƝ;xuR    (:߲EQ#uoݦukwj(\׫a|k~4k[x?\<K޴sc/_1|˻|!bͷKHHA7}4Zll}Xδ1W@$@$@$@$Pe5oѼ ٣;oVuP(ԮUaC{f69b)n۵ ŋ\I ڵ#jլoACͰظMԳ&]YY93~''ƌW=== SH$@$@$@$@%`^&nݻܥaBp~r_u#iQFZ5O: 5jl[bb"!.^ aP`;:&vwXGRB$@$@$@$@ PffϞ=_G"HTٹkOf͙޼ڵk}<is&:99@3;'g+= TCn߮{o[OB @I=yЦx88;U\жMk|@ZB{i00@ ܏BQC@ X-`` @: @h[ @ p?&OfdfMgPbro7mUеgnU @ IBA4Tjh߸ӷYvoe{B @ͮa ]P)F OI]A[>!ycFx~tʌ cGxrRrp{xm+BBBᢥ:wZ5*L \xs'tu"Χ3PiU)\ҏ ˅sFx8RzfYU{goml|XTT/ LR6L7% ERYLzٷ|2.O@ "`NN<wf?9%AN^Ö,~c߭mO%R[+O?s,G^__߳Gʉ>q^ʢJKO߼K1̡L~EY{S7b>d\_x}|D*|[[pY1VqZ$YʣۖD-RYC3 ٽ%kȇ @-`!>M3)^ރH/^پŅS:d'~u|ZxTzs-{{(*jLq;l`/ڱÔy>q~Q-9>_Vu:1`{Z~mɴ0O@7 }:lK}Z,J`^@& @=Lcm?}<-=#Yd./,liJ Z{OT9ڻKjLOjko/6Vr6)W"qجq(jgU[qY|LO%IwjLgvuU @[4Vn(_,w\JQcڹcs]ǜHS"| ~D#+*n*rBqlZ!}8u#;2IͧbDb3Rf ӏ%IdV󘴙DL|B @@}E1aVkjjhuOf@~So0EaZ_R'$گ3ّs2AWgxG3 )]\!L_7osK+ m8Q+O+S\ӯWWo:0^ @بCkA./OOgPCΜ=s"#N>3d ZοgaУo9S J\-WԈ`1sa7Ev&ϖ[#ozel;Gj o{ihј^a<"V'DW @ 0Cw =v[f{U|Yoٺm5]YX" %d/uٚɛ|Gz;=$ @! e*ȗun'|5{=kaS2.OW.hc|4 @\C|}st5|X۶mOyy)ý|0`  @$OLKf!a< @i+b￝ ,!@xL;pp5yQͪNU^]BOtvT`~m+BBBᢥ:wzo._>陙o'fffDddf]xs'f*27Kl>.Ke1od9x쭭ݑx;9Ԋ_Xp~lLu֓ ?:V5m)YT&[6':h|RK=i~ݬa1޽~TD9>n;_6LkKo8ʯҕr$Q,8>ޫWpkop3LmHC!x{ȡ_'(h=^LĜ/_gYٯ?3' 7dBrJjDcuq c+n2}|;ObU98[wth]_1`DDo[Gn꧔svO_Toʤ ?SCO\/Qhmh ߽7AASR]>U:^fomIN}S%mцL,83¥ .+d/u멛;%irE # @@+0ΎbVT|~1CNw?Lwvo4?oz3Y=LB~SoC|:;rx$B1WmooDŽlOg}}39%6!Eo:W^Y(Cq626ڸU+5~"ᎅ9{PrwG:Y6: *sr 6œENδMoE]mqϪCW\J vZQ-k\S70]KWo7'Sڊ&iu U4Zx՘ζEͯmV>M_8C @b<=y^~^{ydF<˗o:g>y<ݨ0WǓ>=ear\W}}٧ʅ4ǸT&|Ȑi ->wC*/prrlVENjYZWpKFtWAEV8;)Wu;LLG.}KCzZv&6.#wG';T՞](ɐE'n~ouiUM~ulr*l;}w[[OX=M @el&֦MdWw'ݯ44څ(R]w(3*J};SM;jzB| (>*r[Zb“hH .q@+!A6O~}t ۉDgNvڕkeuŔTs7*MTsFMªTQ8GP(iv}OYǐhwKQW[KBv1upq6WrÈ(j649>֓TS~\&V(-^][ITBrW~'WTOtBHo2S/mIdge}P<9q-{FGTY-P~S|OŞm{!YflAF R{nvq[("J@ :L`.DԘtg{.6丱vvv\f_~ mp3 u+q߁Ē?X'4~s>rղZ/}m)QX԰Ȉ 4B~'뉃G)))ѽ[dPKKf fc"Vhc&zTZH^7{Mѿɳֈ} j~Awv/K fϯnڕRѸY!!I7ZTk)՘=chG.t_ \z }8uW6(\mo{-Z!c>|P`{wG]wn<|9pb }5lNG)ijDO\Ã}x6_]}Ftޞԗv}u*ZTow|7^ @@EsPGrx77SdDy8($ȴŅ/tn雃AfzyT/߷lݶni3_|2j &_ 1$#)"H}s+̇iy[s;)GWN;ٰH"-e>uZΧhuaN7 @7*(A)7 iiu!@h |`?*>3m6ޮftڦv&S uS>I?p@?&Wnf>*v;qѫ1N|O#qT>=x?eybTV^v,S2$ " OB|S9:>m۶SچnN (E.C әC ,ڄ @M!a8ӧ=w<_% @xp{oz~> @ `4FFG @0B|c(@ M!Ѩ @! @F@o4jt@ c 72 @Lws222Ɍ:x1ӠZA{xqٞ23S. Q?Ԫ\̄׿P /`2!o5^˯E"ŷ_cE~orZf1W+{')Џ\{&ܬMo#fG|61 m)[ySRef{3gxrRnoDumgGH ^Nbl^Y5}q֤|tWƷ >Bg>ͨTbr޴/9ˣ{!U..vP粉aq /~yc?vnB/ѕRos{%L4쑫wuڠ uO @ LZeZzFeeݔIl;73gn_Nsb̤%kE_!R+?|cBn1/fEzf!Ų!>ڿəC ~%`Ww񲷶xy#zG]Ĥ疅cwV&S;};{ńIj)T򜍇I@ck25N hw|ۓȍEMDZY+usC^*ɯ'>!@@ 0%%ٹ9#G kh뉛&Lyi+1W%o;pPQ=1)iEmJ"2:ØM2=ڶsQ)pi_A>fV)։tbvIemBvqLa<iDBJj˻lWMDq||iTTQQd3g}Cz7gi  @ _я9keu=>^Le/oebb+W%N*uuu2,=#3/EЛy믗bb5Hzo)]X^^s$RٵL~Ov6y6{nW/9Au*ɯPU&-wowf$((88M Limm{x;.y_@ `@بsz<:_~Yq7nN2yKΝO>E^Yf˷bxZ/qg]dMd|N#{tA-nh59:@ljlZ=r)9R>Tem.Qz¨ƿ4ǜ^o;yb:naTwxюTwLUBiR=@*C! @x&WoŪܼ~1UM|~1PtɿgSRSmmmRR;RzEo&퓖xjQ5»t,.9K9Ld2vs_9u -SS6:͚z'+:t=ﲉ}]K_Ю>gPT'AaJ> YmmŦJ&0(7CڦItPG>s\EuCx*G N6QX( 1.-3"tkduu0*T8/@9*>ݶ{ըѣ)UI}L/xD*:5ﻑz19}+uUzvtMV"=LҚJwYfz{9]͐ZZPίc iө4~_EڝO!7&GuLSD=:ڤsG߈g(@&`!8F%^^_.S4S5̐ Z?p0ڼK pO En]^FtA:SKOdaފhltz-k,IkOB95" ye)oUorw5iIq_7g#=,d$ /dN]]L}z8MUŠ6JSs=A #F Yf.]Ύ9y҄Ꚛ3g9zl/*OF]5kosfD\$b/OπΝ(,Of/9,-9EcC6EӛI3?=R[-W[?7t&~53m8gl֒qƒNͪL31t`A^_֙ xOg!&) ٻ4-蓈xR*9q~.=^GfGv[9g<(@#`9qz˱Gwq.ygiՙvx<s-hU-SlOFc1;/8r*E 33ޖr:aD-=@zWz!&L`̖b{=ZY['SgL6g={VOS[٦ @e @ n>?t @)ߘ  @@opbt@ c 76 @@ @񍩍 @ `p'F @0B|cj/@ \! @)ߘ  @@opbt@ c 76 @@ @񍩍 @ `p'F @0B|cj/@ \! @)ߘ  @@opbt@ c 76 @@ @񍩍 @ `p'F @0B|cj/@ \! @)ߘ  @@opbt@ c 76 @@ @)(x*1̜~P @)R;w |,&@ "`JubC6 @*`J!L&5cҀ4 @@K0V$*pZ&@ G.`{8.G d>r2  @-Y4V#LlT&kɚ @i6!la @h3\++zNK @ L)ķpjj9@ ,`J!O\ҭ'OHҖlA @ u ^u"65 @Z)#6-c @0bw@ |-a @hBf`( @ZB0B@ 4C!~3P @-_!~˿F! @!X( @ /_# @h!~8inQcSsa0>+1@ X _hoq̠Wx˪|wrJrHC rKso?W8;gfNxSTGS @&-_ ;8ץytZSX;G,T(JKƿ).tmGϫ=tr$ !j~W% 14~&>r(@|͜t.W뮦hl  @PΙ2oRs?J;3.U}Fj#P`Wlg>Y6룶1lקf7Kg wҭ7qwp=zni>Tڊ>5N:Ae^521Ujm@ Z*'؞mz[wb.p?VQYr,`zʫ$nؾ2vI}ݥ:<aޡ=wJ,TZ\ކŢތc.Sn|O5N:9B(fҍG=Ҝu)@ V%zW5^fzwS6f,N<2*PI7~[֪J݇Ύ]R dC층u6_ @ U|$IT>edۦAFLٝBzX\|W}C}2 m̔7Y-.+:7ޚf'>30HА]ZўyEKm @x<7VOˣ\)_@o#ߓvطih;uUVQc3rz֝z[ }hҊ[GI|*__ďGk{q-#\pzc gu쟌lmu@ `NKljq9],xߎ4T46SIe 8jʬ7iE^EPv3)v7-Ռw׈f5tP>]+Ki&B LsP0cZHh "_&-8Cɤl7rT&f95>/T9({@seSFe ?^ @-X =*U3+ w֗,&٬GHy[}aݺ#W @ZBOz&@ |n|3Ԁ @@ @߂/@ oj@ @ oC @@7 5 @ ЂA @o @h[ @ |ƙwpY+Md9ڙwj^59%4ik(@ `w_hjoqa]kRn@)wEuҊ*s3g @xZook)Mϭnu7ۯSX)Ә\i@ L!~ Z:}pۑj]`J+~RLQٵRxnJ&-,IHWӾڽ(Ao:դIi)7w-jcxTSrޛo1g_ޢl) @h w/>oRs?+fxŮ>]ɥ[nOW?g9X]gVXN3G/e畫tno3Lzx]|Ç |A]cG/TVJ)u'tф ?G B3KkEVZvX"NA *ֻo9 ז.EX6OGwhϝ!-KSW-uE׾|uT$۫] ]H_9GŢތc.Sn|O:h?84I^WkO#U, @]k>V U6ڇÔYskh^[JfGWᘳm,*j]lT  @  "?IENDB`django-rest-framework-3.3.2/docs/img/sponsors/000077500000000000000000000000001263353514300213265ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/img/sponsors/0-eventbrite.png000066400000000000000000000536351263353514300243540ustar00rootroot00000000000000PNG  IHDRXoI% pHYs   IDATxw\emɦB!I/t/ U"zZ'łTziPiTғ$r9$;93̞sTcEQEQEo((ZC,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQbF,EQEQQKQEQ%fTREQEEQEQb&9 P*ʨҌ§Ñ:EQEQ^#k`X`gq,Xmю!`iҀڀp;VЁZBm Gmd{Մ't~@()`}%$8X cSo߃D2s[{}ocr 04PxC@X  i| ):ȆfY*Ҋa$Y Ŏ((IIƐ"PmK~?}~^+!:Љh 9d3@Sߛ"j 14фecI`Ij~>5ՙEQkGZ`ނOI2, J#+gPk:1t#ۺ BPDSMV,ݴyyᱝ< dHA!CI|>\(+_Z`< _p$UCgה, s9DP߹yU߳?_~{rp=w1NL"jn/߽nd@9|W@iߌ+ T`I>LZ)@v kث3TD.ө 8APN 7_d`Bm^>U{} R-H_pEQzf X+2޷M[Q(EW|moQ!A4r  GV,^8} Kqdiv(zn*2cR|n(`pnkd,]YK.;Ja  GW06ݶo 'ͅ]s64a $hA+#Cq5A'=sЧ(Î)`}|ߩ(}2;0jWb!T>+hj-"ytp4%$w[So܎ A;>Ipi|{H^ը]E'`-0GbXa̐L(au}7ÄU h;u haoǾA~BF$Є M tO%Mm]|cx X CiPQ%&inIwk;)#w浓7JH3ZZdӮsQ82,eX,v/iކ4(gv%Ä>A]E;v誺̑ 8l(<ZM$ Ҍ<2R,ǹ@M$$튊(2P tno*r2a|~X`FCˁ"`)(G($b`p 0/9F[/? WKQEQ ̡Emp6̷T|G<" qN5[,EQEQ.H1 =&b Fb7[8)nPsk((C)s%_3֣ @vo%XJwo @v?((CH12.,bgC2tz0c<_MVKQEQBVvשQ9i.0[5T,EQEQ>Rxscη9#`r,p +쫥cp-\ug%p|eP+.,*7RUݚhTSuBPW_,r|Nq } FQPT 8|q`$:6lT5tգ +}0~a ]<*0-p݊سZw( II +e6'Fx**pqCZk q`4> ,R!A@Wy_ vCZ]āFL,1ȴ,,]}>(c+0z>h[RVު24=JIΣ1`}d@{8GԓiX:ƅ)An͵oߑczTвZvtQEaXCDhIGAb[-OƧKP#׽ & 3м6> jIm$L>} guh ٕw@:Y{3y:ܕ4;ò!HG8ZC8ț+Vx?! -?H0j~$sFM[B PPjW?oxEl@hc<(-~*c!Ita~%lzVehfﹻp? p2N8R`}رBG8%刊%w_ͻܟE\X:|mмUZ:%f WV^i |Q׭=FeؼyIVLxj=th .:w _ >42ٳ/Z:0v8=Ҽ (tĸ.|K#1x~5Kj,W.<╽SO_ 3嵀:_ëbK 1`L}kG ]CGS6~KXhu40>Sk-Iӕ ``\}3-P>ĚٟPaiQM$@r]yZh1]ًvRq`D 롹Fpy1S`yb}~eː(^{ޟ 2De* C}J!@>T@t'__k ~k38ۑ,UI@\Gܾu`,Y$ˤ( $Cz.{Su-Yj L8}%r={y`-Y]}?޷wq)O )‡E9sI8R0X}֠FekoxxVW>ck2_fpXA䅃GSű8Q;~D4 S͒kZ0"X'-Ζw$ZK=Z ׉͎lqTvE64k&V)A˿cc'E̶WEe$l_ +EP 8ޫqs乻Rg畕084[e I/.asih&_nS ^]>0fB*LКV`к-}Bs3 1*;q ?K"!б Ӫj| LpJɖ|VLL+%HΓ'΁?Go ͔a޿!{mK? I"z;%Zpd7'7L<{{w5.ظw|NUr`wxD/'Fܷ4wЃ󯇣.Q3$s W ^nE4© ,^'~_$ʫ_j&[D(x)}lk=],qX['V!RgTGϨ 0\8p`, p[-˷0VHkkHq#'Y^~ZjWGAgpNy2\q9l;lxf osl/[g'^#I%t?oIǖ oSxԭy0UcS>c#4$$:' t\~[q`XKxt# \pGݎ%'Dep"GIFܝOc `ch` կF߅οu}/ #;7}umW@cN86.%( p pՒpzzm3Zhf]8M֡ _|*\$ClD*L+n-Nʿ"c oS1m>^{|h!+U1s*{nzJ'# >~Ziux0E W +|kᶧhWvL9`D(Uu߃D{_ڟɔߛppإMWak[.\ 8pg@4']S9"c0Å?poEi;W/?p||qyΉt^Q+*QkAW"λϠj #ƕ>w'Μ)xۣ yYć魿7Vjx7pp87O!xk04xbf.?쳺LAg/#'EKR2AgRp•0#{t`p"#fR8P^s@X8nǜwI 8^=5"E߇c׷p yKp*d XQQ'|`Dk_%󁉳ɟ/;Rf1qpLV?Zܜ_n5|stmģ"+B!V+ǸsSp٢ZRze[B!klN*>IOSK &9kC΃Qڙ=l>0E.-fȏ_s_Ԉn݁rt\$ V+IjeۻUb N|6?~㯁1=`!N2 /FH ʿkf%o/9E:In2L*%d>Tؽ-hji~|:.l,9rjN9V+O;CxP9k΅u>7P,{6BnOpC-t9'N:.Јha,ku6J1g;y4m*rZh ~~N\naE0bedq/P(M,PQn==.graac}"WU_Lɓmwi䒚oǿ`AncX(b=E{#((KFԭ Ӛ(fb" VH?S>=-c?+oUz{ +(co7ga#Gx@M/`Lp$-q|vuo.KW{L̞'¢H_o};[vi_de&:S1NZaK7ٞ,Z}{b2Ɂkq8^J>cO¡Eievde}&N\d1>g%J!"~Ǿ?s@̒[(g~ = C*1Dz0# UQ1V"mf'`'\|$Uv"TѴX9+9_IĿ0*G] -hřICu|G,0z$g.s[.w5$WJhX=h=]Mߕ'6=4N^//o=g Wiv 5idcşs$1GS%E4GV/$#Ds3}[<^rݜS5 ͋i;$]o!ѡIo&̝ۆ`o`<8wL>Œlg/Dj>90ƒ ;2xi2`?zq?[jŔi#.8R~~m|^ N-'] 'qU \@( >H"ZvD sIGEgaV) AIJ $lk } kʊO'YD+6AN҃l}Z'QR7F{1L;;W΄.=Ua1~.lzv3͢\ԾRI9 IDATF-S b«[)}$=d?LIYf/Q][,P5ư=azn!\JhPHv 2p'% 'K=8߱q,+"}VMO gG]"9\u3? ߛ]p΂7 \ ~ .bxHtJ>J!\4N eiG?r?pհet]\HW?e!7fV> )xP2ɠZʘwӝI}77'_;J2;{{^̶/9m,>,?hiֽ0 $0e--p{?v79xkn}ƗF"mψ.Y!~OR:ޏJm˞̴"jl|?u.`-9<Ƌ&%ܷ}oZomg!.\RB]_}PH&p3kzwN֎t ~req8JTnUѤEOOOTy^UD)x]~>H } vҷ0EԴQc_jJʘRgxnO6o[IMR\H͡n6/5{壊Ǿ;ZmE߃-K "9wIWdΫiGw],&vWnR Iٟ@GcsW!uK hx=\+-I4?/A"7,㎥(T|`ޛaޏWڴl_èB LU%=Ӷ|A|\(Ԡ96ZZ%ԏ "(KG >]ظ"٦䖳vYϿ-6a|fxw ,sy}vRXNJ9% 'q #$$1 F~'cXu+ᑯG[,P5.ZMYhPǤA }VWY0?~;.oTr!FQt4H?\X8y]_xF%Q>J6PiK40p}nߌ~AWO Đ EJTЅ߂j"ޖO N*>1P9m|`ʡϸ鹟{,p.@R=4q#AWFM֜7Ib2tgskULSNyj!Ic p8r֭t5_+beb]Eqض_N/-HEUwL]|pr2l(R_$Dv|/> #/n'!51B>Um&\(O1ȓ뀥]g/ɟR# e5&1 j(Vre%za3Rg IIm1bM@y%9EVc.=?\ZDMþ%"`yDQ&rqO41fڡZj<= "uX9*`KM[gh\ö\ muQ(9 ^w[; 5DZEv|do_y Dk=)u7HT+[Lre) ψGQk. rnVUOX`t`]ٽ3FYRrtRTRӸNJ`L^NN۞%UXt@V;Q[ . :aa?,`)C;4{>yŘ|͒E{t/?0zyyd9z%`r}2!OlGoD,Bŕw@óB'. }B[[ʫ`%_%hbS`!5-Rf vc"\5$-0 ڼ-A,TOD {~„Yюڰ/Rʵ*0"Dm,"ޔ}0`fkoa1Q n. ~\%h/8-&a-$G`RC=M[f)vihr_@)a"`%C=6rQ= )Nr4no(nT}6 >wsaEe^3p0,ab *%}YD9&hn 8@reZA4m_LKDZdy]oWNņ3Pt÷0dUu6?66,h]\\hNL2Lm5 ;9mukeZLsZس] mgۥxc }8w=)] ,"9cbh-E]A|2V# հ6JnRب& 3ѣ=jWM&V[$jWV9 m|QL)1}n!A)Q&HUN"ÊVB9 ?ƃd:t &Jh E)>Cw߯n%v~Ovy&GRJ}+BJ̖.e_dŅ%м C $hc؎%Eb{gsp}$(G5ZOr=vzI0|3m\Z-cEX`wɧG"pDIBD(6lwM!=T3wݼ:eڵ~y [kuJL?Tn,C )R=\ۡ,z-"xTV6}۵?}9nx֋O} ͘{ژw}?bˢD`7gn{\,3OSo<5nn Gjd0m?eE{!ї!x_ⳑlҭ-"3pC%55, L&Az2vKg]{1u>̔cW u@i̊`ܹgLwycϹ^*D`9!H9:h ] ^Ǿ;l` jrLm[mRT>b׺}@(?m `6`f{ffB0aԭDSw6c{ݘ Vbo$%bhI6C-,BҀAsZeևm&O.++L:[{}fR^[I_HROևe?1ǽWd0P.u$fxo5޻$`z&au_3t~^VyٺX./@2hG![)4]%.>T\~d2_9smY]8<8U`ds8We{qP5@| b);#fadwY|:K~bi~gnhx=gS1#Mbb9ňm]r4K<٬j8i%ȗR1M0g~] .9jx3,^Y1MXv֮%U0f&wg<Gʱ )Q.U`%b*YvWݙz ;n$ z Ü~!Xcl>0vf:v[ >DF5EwŔWz:} G/^+l\T;b O?|s/\5n@q k0L0WVT&ߦ|hI1?֮pOju4c7='enJ%nz # $8sH\C\pksU'&{pLkK- ݼJxZx{i?ݱf́B٨hϹ`_yHi7@{#~]x)y[3HxWM/?+Kߘ^gїc?\ j"|ޡf{%`4K#O.v݀{%OKsUcj V3xW߇{hҲЄ|2`f[H WTÌ%μk&־(ϼ~n1S"(i݅mٱO@ӑd9o6 $k;鉶oa$D0s%x|_Lr&!+ݱ'`xgO>weNPoa͵ݛdAЯccg X>& ^;9g@gG\VWwH|xDG{giR9#I\s?[/m I"uqW`I3hv9?DԺ[ kRn AhމlE&wy~?@ؚ%̽ 3a.K{^O!7>v7*E8ZYxgD&R0jfG ,%ydfРn-}O_/&dVvzʱ$c?"XD7L̉LL>?ѹ2%7)0v]y/7b,ƶ7HnƯDfdA'{g.kKkPRְBHP!ԣ%b&=5h6*@/4q(ny`"d9훒}N|UWUl.ljtGDӭв#$fFA~j*5$acA4lv?_}gHt+lDgbwsLw|_~sg>HD;~1?-)S ʤ=9BnE+S&! G4XR$m ؎=(GLĻx}ވ_[3x2L/ݹ]/u).6n@dj#}8̨I՗'ۼ#*]G+xv` 95A.T:L&mۍmÌ+];V?= CP} oL83!B0CmK [CS8a):yܚ&R Tq߯zh si7Iaw?R|:ʫ3+shejZhށG@?xflVa-'fD&yKv=)N_Jeƛe{W(G#/l6c=bVcwyRzex`&HQ48m܆Mav>L>=%&رkR?bNP93~N^f3ku?+~V/zؖ]Tbт%O. `0| uh9Vyril ~XGht]HU,f<\: A X|޳xIo "w4B͹7 =ޣ nھ`R!x1Hҭn`?{i 7Ǘе7LBy$%rw;Wcy_o`?l\?\L7IDAT<dvW&6TW$-uVRCK.ծ'[ވD?,QwCw]l#չ;VaS}lZ̈́9$?z/O?J┫$'W*x庼.tsϥI"E`W?O-?۲M!Xq*i\2T jWIGJa e#q#vjnv> ߦTK/F+'!bNc`xXaUC55r?aHylM"+'2AS-bjFerr~ܭnӵ-w:^F}xLrĶvt2Kտ{jb>0-uAK&+$vx?ݱ[^ KW>Mpx`5EC_&_+ҽ^w1O=L`$1{n/EHD?'ʇ>L{?6YؖҮb!Av.C,c?Ԏ^ mDz̉ru 6>Że=q][2|3Gv_Gvm -cxo$a+?|u) :SKn#w-ԍgӆsڴJ>.ye؎7_c&ۉKԙr5IO:l~`cbRD""b6`vy'?~Hňݵ*f_4RJ:؆do0ۮmѷ믿~'?{BxtIB.Mf-Bm?W\#\.,ޡga,mi#w fyu$RTClJi3odn]fϫ{c LzVQ%얽%TÛV6n%{`϶oK`_]-;fZ ~,$y1#E$_MI@ v20c:| I4|{':{[oɇ}f77qXwě0\쮵x57uKRlOA5blZL`^ݯϸ_eZGoح0Փ1fV8mb?% ౻OnJ˛fĈCȡύ&tnjfӘ1xG_wI`[wck_6aA2"l.DO8|?u#֥B;+ʪ0F⸷v88G ~]!Xqb[waYڈ ^$ޔ:zmU?"x0K W8ڂϺA+]0%y^G⍟#q%PZJlx?_BxCO|ʁX-5/?'%II :1ĩǛusm%X0?a7<>MA4kJo,߅?I:lYFe試ac>0o#w|#wW$Z,Z\_C LPqӿ_+lg &j{=*6$0wH~m7vb!XiC ۾oϮinO_ s㯩H;Cc:z ˸tW[_7px 7vcwoZm)Z@`бVP5oᘙM?3NVă݅\픤-uaU`2l+bZPoJ4Ty5fkS&`"ֺ֮c1c-d;0~ܳ0J*lrr'\c&w$%ꉒL4DQ7awo"ʇ-NH!%0f( [vabʻJcD3gr*CGM؆-5/c_]Di1&7߮&3 Csca3v)&,lfG03nj!B :; x偰x TO;L9̘rZDM5/z`c=5J zl\XLJ1x<o1sDsZ9R" Պm6lkr{K|^Tύ"9 VFOAƓO"o_IIi@g$RM&\ZKȠ5۰ƞDwQ8A//gLDJGS% 1)Ij/բ-5q>:mҞm 0oXN6~V&.w?1gǿ[3;JC (.H8pXp"q"W$@v%@"! ,M╝}zwvv=kL>ꞷ>o>vWnE]ͻmiևs|Et3cyD7V|mn^mEqmvGQ/`1鮤菬sކ,N1>v?O,UeAMGˇ1 f.#nLޓ::h*.? 3wz=Eȟgk /ubxv'½K:?0f1ڒF3SO䖘8ܘŬoiX?K򹶹KlnsN~|i c.hjhmE|.a HJ4 x, ɉ ĶCrغ? ޔOw5R?;Lz^^XNwAY"""24#"""2rnVb`\kmFPȖ `C9} nz|Ko0@=X"""2 X @\EDD e!iE7l4ڶ4 """22Vf4]DDDcK8MDDDd",(/g1,̓%""ruV%#~|-9,]*GDD:+6x.^t[b0K=X"""(Ͽr X*&""r%3/ݎFtK=X"""׎-u?^t[j еEDD c>n "`9%""rfKF ăX.#""r 퍌y!,VFUe _t{pj"""׆aMgo^t{@V|%""rM]ipן{|Ø`*qaGx^XϽ_t{>A`ew rɀU7~q "`(ީ7HX"""W,ay;ݦk%"[PPDDH7GF_ 2g+QF{EDD~fP179&9~ۦA"ҷ#ECDDdH(؃ 0mۼ6׳c͟<2GBGxY`S%td@83[ZXߊS @1%gAD5AWUe rDi5QVϹ4XERba bfW6O "EUNL V>HE~oYz,rS"|ůK ED3vJo 6ؼ?m8n>wf[ȃ.qsj"-0܀?ljx‚pl0<3voyayj^ƹj́._}xm`Toi<4-\i'KMRөnQjZal䙚W"hh"2 +͌0}Ӫ斀d"1]#lB`A4}@F>D-Rps "yj2?Vѭ~]Rs40y奿5_zov\h3R@^ %e\Ģ6~}]զD8FvýkM2@0/GMĬ@i)jrXkVTC?xZ{~?[ 0#`o:hI|~Y6 ϣJMؕYj:w(=T1>Ē!00U߄}n2YX-!)%GšF3s3RX9!hEFfqr4.|AW*5=uO*r  ~RM*5<)*5NVjzTSm@?.1Fpص I 7{ɼ#ar&Y4;2@]h^?վ_f*Da_/v ~Q=YrYPAtg>5+W_7Vj:^~|+ݷxݳvDž(j}w2D?};rRu<` XbӷYH%aW0n,`aaG랝0oZ)&Y8E9>+o7p|x>wkV"ٗHJf[h69;>Tޏ+5tA?Okg/u%fS ,[bj݀` $5q"[?6&)EKמâ(60Z7;@\X펢~ I|pc\WmB:xED+fkqC3RjԴyXG3}t$IP݀_ǻU,nffQh99yHa 'E~/FȜ4KuѤ(d( i^DДg_Tx?wk~(AKs﮲.KMW`y+ܜ5NRFY7ý;Tr!.l dDxtgFMdDL¬ aݜ0A f kS̋lږnn=-mSR6i.sÝuewwu֦W_1?І? PQCrlT[wsxXXWxqLy<]x# OR$"""KDDD J<,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,-S2,- m$݄nIENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-cyan.png000066400000000000000000000137511263353514300231330ustar00rootroot00000000000000PNG  IHDR,,y}utEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp e!]IDATxUsZ$A$DBA @|@@DzwTA@FB( Py53;;3>e/Gf^ȗ3}Y?|h偒|%|˞V}y(`|9/5e1֛jVn/KF)gЗk}eK/\T+?Ѽ.i\KjTD%R;V2En;>b]#kYZڗf_w5ks D P{jo=%=\_˽wqcaSkO SFM3\}ջǯ]24|6j_/x w0r:~EuK9/dN F{͗\2,@;Jʓ+Oìvv{oFJfd Y"{bʂFXhŸ*Ϫ憾14Bm[\}s-궯 |0FGcX@Ҵ ~{—W}y[6]ҍ~]a[ ojc _a{:_V,qė#])CO.IG8!VkWu> XU$OYy xh.Y}Oˮ!v~, vbf8hF;)wԑ椪}*Z-^\2VauU_.>mckh~oY; }`MoW]tM7cĵnppj8dwI ~>~v%eP[rAߨMU/Z&.FHUGoi52q璁iDfvd͗۟X߇nc&?kgc̞Ӻ8ٽL5Y#duO=CvmGݪԳcW).|')6\ W CP-\Fw r-Z.YբvjiN\umǎoQxiұU=^OnӅocWsЈ ۏ4VM;얷+GI"4όn׃ vj1,u3E=<>ӢnF説m j EKm=[YSb#5D !tmXZaUu_Fzۜê=&Y?p\t҂"Kj 2z'vy-k:kvd?]\6qV}-"Kdtn;UϾ%kՇYFO΍PsFM NkE-j0ҥ6ofs5b_ bA]5K.׺*1:on ܮOh/ȟoim)XOA+V@\UV&\{;\x{h]25G#5[9?Մ<i 3M#vXpވS~E6 j/yЂZbXvc]uT#n:7qיlga5٭g"TΙְϒjU^|5žT#3xyMx,p[-R7'kTk]K]'LQVǩ9jJɪ.ܛ-R6؅Х4jᑷrW& bTmz5]l㖊3!&M֮v5quHjLSvzg?>]^Va~ i?eUЍ[ɎokΗn}`MK]冕iz]IaZ|11flϧӐAUn BTk%oet—\A 6?\WTjX-aGJVڔqQ]Cff! $z8 z%OB!_v1_{]ŋt;_Kyo R-eU[| @YY< i)SkK&Aim`T+p۩c)kIdPD*E~2g M5gE+6jv:P4.O=Y "Np#P4oejiú_5Kzxv5lTXpJrמjoo[{ % ,g'fZkL:AȫgDԮiZkKK6 ]+z4ؘ{Kj[l峷&Xr!hyMѤy#^C˺Z߱PRuU>3%XSnsN)flDѧBNs؁V݌0'as+j$Wd+ڞrv}ͫY ]i&?ﴲº.nJL-CS""y㭑J=}"kZ@ tcfVYoZv )?mCizB~'4A?x5K\c9+@4yZ%,i!5-;TWYhT@`&K"=Tx-[W&V-4ZOUK8KpL5B9d-uld}P 3q@`j[_m;ꩰe\N/5i-OIfI29`r@N臨.=kNEsWjmj=V{mݮ5kW!^M7J,;t ^.y\=:,^CmK֚ڿK[ͩӢ=A=fUoROCuK@,;zZtlWТDp2}sٿEoįW/&aAn[+|,! gOŷZ VusjH@~o[Q{ڙ281b缩udE3nm\QO#XGwzQꍄYq fxV3?RBGGisvkǻNplNCH ]|t4 kO k5{4,V&:,ة;C,t/Qm޲u}y}]AcȞwɌ+pશ5ôX 2ϭ4_/d8B2+b쇯M4xspUшo9]XmsjKkk3}P[B @` , X@` ,X@`   , X@` ,X@`  X, @` , X@`  X, @` , X@` ,X@`   , X@` ,X@`  X, @` , , X@` ,S1G4IENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-divio.png000066400000000000000000000114001263353514300233000ustar00rootroot00000000000000PNG  IHDR,,"tEXtSoftwareAdobe ImageReadyqe<$iTXtXML:com.adobe.xmp DxrIDATx{u_wd+BHHJ(P)U )@CʲJ!jIE8N|U)(uB|0ɆdY6&<$$LOw7S)ʪ߷1sC@㘬"@ B!@ BD!"D"@ B!@ BD!"D"@ B!@ BD!"D"@ B!@ BD!"D!"D"@ B!@ BD!"D"@ B!@ BD!"D"@ B!@ BD!"D"@ B!@hzC@Y^m?XpnEfL!rV$),Pm_"'5`p )4<:BO2rtpD˜qN+ޢ͆|3Rz>ڮH+Ps:_ 鰍_KPۭWe+}憎 /lى+g&VtX #L ߟFpkgMHdG8gGz|j-8uI^B/n7w;U//WDUq7W~sYֹ_HZ1+piC6Mކ]EzqXRZs 'JGpa-焆{I"aw,Lu)1;SWU|i\IS|78\6wѠQ)3`p ԋ}準ҨCS?+ss-np:N,W>"#dGj\fw jO Z/MW yn?uwtEj1dSxcv3 ٶZ.͈| "˳7,Ũ/b;] Gv~Lvv7F"Y:sPjߙh$k)$¿UY#e8z=O$ 2j2VV6\(lGc5s&*g̛%u!s} Sj%v-N}<ˉhtB9UֲUNk6"GFSR]pvnLc sSgr7b8Rt2:g,IRa'YzO3f!﹙qӛ:.:|HER\9'a|^eIo^$ch۝MJ?uCgӿ-QTǓ {JqrܻA_\f^ x_v^=I4toȋR?lV/mb8'lp9Zn!p־Bi 0o$fha.煫sî&iL@GJ<8;;o#׿}1WZh{ Ao7nhi{hۓѽBZ ߳_ztQwcK9ie}dRز(^ rԛnxd}՟ל}:h}Vm陝 u9ۘn,~c>Uw(?.:D4z~?;FKQ7NLʬpL|rvFO"cٌk(|V=-#6L0k~~ӯ]zArE7&U R#{ǂ':mͰ&FKA]YU-.l< ޵.% ";6W{K>Z$=ޛ ^Z^}{i>+ y ۪l4dv^ś~zJ_DnY+fh6,IJ<,q&{N6DIۮ;(MĊ:" ^QOjRoě%Z/svT7Cy fh<'U /,o7boK=4wDG[ߕ/H1Cș n ͪGŠgߨ|ګ<DxtkΞQݧN!hX0unlL0#,SvmC:=4okZMj;>N 2zD=݀*=fhgGt34ۋ[J#aۘ-qx$M"BO\{TAk[arI~U`,m|tů "e~|^=G <{hמ3ޖ[Kj~iΦjߩww;M}aPO˟/ F^[ʭHmNӦie&_fvIjI9'c~dgg7+^f~C<'v9w/NKmLGOZF)E2 չNoNz2qϨ LyaƼe֘ΒɅ ѮӇ:M~PBnq?^~췉&|g_^er-Oc:8W~?ޯPO7-Mp玖s#_V;u=9{ܳ }p2%.K'{K\R>(Bp+u7%ާvU}x`WA;6Ny:lSw8"j[F ΔzC4Cng׈?5vo(= ͳP[_̫ɂX&cWn &t1]o ۾xOu;1rmjל5/m7C|soi@uux_!q;}hHBkEk"=j4C`t*zh}17mMdݪ vCRεWtX3X;`˱mG\ 9aq]C6sCu},S\7+ _:153]kȫdV͕m7j7Teekʼ5v21VڦmhY)=#za19B#v^eEr!uf#o/{[mլ3W.>\ ãA'Nu>=} |nOщNQƶ0 Qqt"WaF G`2er?2}{ 0ww][" *hW? z`I PUZH~oL 58V V/'$tr)]X~ ,*"@>!fXq&]/aHB?d `0/v&Iw2Ƒ\% Z3l&P*r$"pfW L6Op@rUZsM}K) VB@rOTLƸ%+ ԀF5`^6Q^VD,8xDԧv `9 j !&3PM8vHL?Tgd~#7u/6m s2SZP_s ǧ7=UT[ Zc'=\Q;[u)3 6AN5A ~4xd+ p6rZh_eY}n'><< qa F[A8t D'[kgB YnG[mMi;N *lYQe Lɢ,hR&~^"a:I8ӾAtԉgY`y-pj4 BwoࠏE O Wriy:$ʐЇ+df[V 2?p,K`K#,ahV@Vy*FXX!c| Ԁe}a O0^1 ~<9QBѓ2bInE2s]$H0 Y`Wl6$( ٮ,-+B.HB2+ 뱕hDG&A9 n.dۜp. - |mX<`㔾z&<[&IA"(%l hԀ[Lw L4ZEwέZ1!A^`P&"$#L];RA=#%9qF{(oBAg`k@ >OHK~ߩFVpHLdq5wr-J""ɰ'K2mpwֵR$h8a}Ȣn$q4iiު*51 jfGa(7X^Xjyiptv6_ ٵlT p,`q:F$Db!4,cm-!Oi8 "Lfk>"EE/(ua `A66*IurB.YhgBP.pD"4 c= YC!{kz]!A?8'5ř"!L:U4@"NZxAGޏ\/`D_`PbDq,_}] 9n<\*\D"/tM|ߏ\6Vg< /2oR)ݴ,>@q⮭0zk ~j$A5b'ڎHnUm;SJg_a]B#6 a[Omuqk QY-t!Ψ&aym6 *KY4ZVhBjVSIբ 4K#DJ54}#|O y0߳e^Ct >/+),T|Ę!kz-y+ G2%ê); }:.Jľ7q4UsO1GRxW.bux ?.^ +.Y I`0 I`0 I`0 I`0 E/ߓ[N?iC.@ T,ϱ2Mcu_`g@v EÁ؂ ķnܾ00nq.[8ocs0ij+m?@~˹@S|sI\'«F1="=<|KQiFqw :uu!?4J$N=Xe:F@d48'x!Ox sޡź:6A)u,Sp|2s(,ٸ O@H2:=:uhm~C@zDH#ߍ CrXzOr\ĝCadƮ, @h jhZ;\ PZ9ݨa4- ^S2O1? 6|?4w/4WC@ˎZ]ޯ_10A&QYl6sr aLbmFV$t-:)XBtsE8`l3W'V<2ʽѮAZ3+6qt4Ys uKk~ˤ;ms4, RHGA yb \ހ㸆6|Citr|'̝(NbJG uTkIciD5t }o *#OsjirF}:W`8{\)}4O0! ƽ E е4-Uӆi&+^r?'j |op[lUT5Anr ,HhOR\pEi L?L8( #$]\H3yń qi Ԏ MxJ\jjedk,:„6SmcVQZf>Qe͡Jy'XTm;$|}gx]O)fd83ɽ9ϞD0hޭ:h>e>z5ί2\0nmme /{΀+SR|,^t &AC1FH1fF,&&A8|~c"#'l?IENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-lulu.png000066400000000000000000000431351263353514300231610ustar00rootroot00000000000000PNG  IHDR,,y}utEXtSoftwareAdobe ImageReadyqe<(iTXtXML:com.adobe.xmp u$BIDATx|\ŵmժYr6L0.8tL-ΣPȟJ$ @B qbB166d[.j-+rgw%~"޻3w~s̙sZmFA'S=IROpH7`AEAE A A A$XA$XA$XA`A`A`AEAEAE A A A$XA$XA$XA`A`A`AEAEAE A A$XA`A`AEAEAE A A A$XA$XA$XA`A`A`AEAEAE A A A$XA$XA$XA`A`A`AEAE A A A$XA$XA$XA`A`A`AEAEAE A A A$XA$XA$XA`A`A`ѩ zXc !~ĿHwAK V(evH(>rʠ 6QX+j`mEf60ԂA:ʲk%;@nc~c3>F=òCs0Kf'ACV3BMk48f :NCoN>IW ѧOhzzGeQsB(~z.>O1hPR6T#BEKH]udvkPJh:pR:LhQPXC.ʲXmEPYU;󾄂bN$"HԊ +{+BEs~m_A#`9m  t!tD?ntZ!3 "Hв;?_أwƕ"95lج"L61!L27 k̝GBKW-z ω+oJղI|P A-*bYgzZ v 3~8 P8UwRZU}pʬD.)_Ct臕3 .dNS5?.m6AE;}u8!&]B{֟VqbQtBαf<N<N6۫V$o}]$mdb3J > V Q`[F[Yx'r--NiW }H2X=Ϟw$ $*wJ+I}T tl&Zi`@Xh@𻳡M(# u~h:v5u^!+E}ҝXL!0hP">27v(lCҗޫ@Kav|60Uu޸RhI>g ۨGNgqX'YX$XWV z/8T؏_e Pݖ4BIS ч x^%߭%+\  N0܈?F.ºJEo4HRa#򛳥6"KNx{xo6alqzg&M6 C/M< ֕n)kl{Y+zeP[1(n;1(Ω&ui_CˏqU meQTjYoMECÉ,[=ƴ10f[JGOXkFrvE6B>;I]i~-"6ND ?(>4HaֆX_*v|q%d-(1tXMrXݑ.X(BΆ"ȻhEP c'&Gv!L"$XyWVJ3M>Qdf"Ŭ+{$yw˹ |AbNS#>e@ׁ|Hlq蓇J]g.@rzָECOS}\ s< L6_fI]rsPcxb?-'kKw΁җ&J.'YN<'* 2*vv8ޭߗW#76´b@ĺwImyB>vqJ;k%"J^EKhy_Q5KkWwk ˨VĺbZ$X$X},XA?dC6DL&q,{*P`qLGawjj$]jP"o 'nP"ә Lkl|EIH,A70+{TC =_;n{jnFH Z4n|$X}iEW;{BJ<4^^?|L|Ijf$` ^t't&$pѢDw`Za#ȏw<HcҾx@ ͞}qȬi3cᡄ8$X}*Xqhˠ[2Wnr;{C>w{2ֱE=%$^!⮼4# t=8 m#=4Hgʧ&I-3hY)ӼHI4D;^ºj[Jl0SB n  V|`;Ve,[X"-XGl48f'7+{‚Rڍ`Yk|d5`El}=m[*+M)}(Exs&|H8_#xM7CEwkU8J`xh~0hju65f-XilxN,9>. !Xu3I ,{0S{wͦK 2һy66``倰/\]XgԬJ8(=֯b0Mw= ЮZQr I/җV͙v0w,,-Y"X-N;h~T BCT1ͷ+DQ VN+y6gbQY``X)w-J81iՍ 8$X}5 PKN[p`@/usqe 6mԑ]vsy)H :yOgH-;A6T:Y=쪦,,|IU3oˀYCYu%;ҩ~6",9خR7\\ꣁCW0 gtUkj`j2˪h H?{@i;J C=O!D#-, uڝ2cCR]W'$`)zy ^HQe֯b }ƨ_M`@ x-HBOBVt㋤e1l;\|X 㬥]70pJiQ臗L-\ v4eHf_F=SęH.ba(zˣ`9 җ.umdjwZӻ;2wDzkHiC;d0ʆ7'+0SXX}c<*ebHOrZ/BFbed[a״E~x?,oׁ`X됵-9i`BkϼWVJctU/"@r8@^$k`cV{^ ;$>d콢O HxQyks-ϬHWDr$ۃe6hj";kAZNKSYCWOTn]/PUKa؉H̪SW2=KZuh8;[O,oqd.ڕLtLQ(|RGYSN9CcB>Q֑gvPӞFjmi:BxޏXjaWL$H <~{KVUG _='υRw-%24 TR*ib!pa_?̑#'h7n`?\2% w.fb$bf3`6%m v:a!V9h՝3TUP AE\M 1Hn7'D@Jjs)vpZWaI1GO.DG>A=n&NF&4k07mW$X{F,չpx\t{dNebQgvN9Ea.X.Mթ{!`&F f.QyDؚ|swO,CjF& KzUὗ Kd}`zv d}Z8 86mNiS$X{j`Yq i;`KDp[EJ'VZ|fE]YsQ]te&a(y\*Uw؞%u=eϭC3+wT( RbU]"t۱:rk|aoL/vb+srzwwxpjg'lg"\z{ i@Vw݊ӖY. 8c9JrCų(Vzd8W$7V =MP ih^y٩eŪgu)VBXpT[!D~lήE6y/)fVE\ElOτ6{d%2.MЊP؍5'kK#j~Q²Iħ5Qv!cP=cB !ع?os v&G'tm3 V ])_DZ5#wa` 3hE}<*ܬ\9˛Y_|{A}qI|/|SȒcE*e3:w[]od =kF6|6`6Qm ʐ`ORʯ;Z i;YӇ1w\tgcg୳ݻ l:+:1fx(Ew -rC bwnB>RR2%)y:FbT6 V 1sWON:6!z U[>c$*AdyR|(AD?Ԓ`ţ]ϭiJcv2g* )z üg+,X+ܟPjy`}8wؖI q(8&>-U󙏉#$q{B&g?j'ܩ5J!`TPV Ds_FVc{6E<# -z E1[%{QnBgͅiWN5"$?xDM(Ī {|'L-D!>XfZ3],C|wX2 6&)X{dH%[Bt\W]cVSG᳗wg<@WˑMnsQfxTx&I=kDﭩ~;@A;[*4}/"(yF37QSi"$_^m B e]X@%Ӛ̞Mò}pH2pJ-(#aG.6Y(^x=_'[LFd=M*H$?LnDq` r(ZG=^jw&;[oC3h~Wԉvbaq7d;) ~{&l>qwc!bpt qkX2,|!] i/$X|P |l>h{M&V#Ӆh-wE65lY@.uirKCHUkP?(~QN) +]XnTSsP*%r!q!r("O_8<; m),L,e5 km})EVbn=v 4<4xMЦ}.SG!u.f+uD%PKZl V?-`Bc}_? _)k(|[%K:h1W|S{jaV(Tq,ebO \x ͧmXRtNƺߍkdK0=!ut=p|0jN9R:$^XJQE.ήjF!{e*;-::#+=H+Gz`'u.|WIѲ$^ AJ\z {G_psZnnڞ^^V6e4\WY:C%C,f{=gQ Pũfy%' Ģ&[m<~ڜhsYXI'ko( nٳUgHc-R7 QF]F7d$|$?],3VʁFW̞zu/G$9U6[V¯좫+R(HY,ǭf=2;yZ*«~7hIcGζDhL;jL$Xz1kh}E/O(g M$v֔:=X7rEjw DRIW-rs<^v^X1ھz?r'1Q>©N3TNH;SCӇ9trN*dd*U 6Ǧa)9>^K1 ցFkz4 h!,n%~;\W{d>,{2KI֓["R߻.A.#7&yȵ*aaE|:W^-\7 J-d>F$ۜVy "BETM*ASN2'`%>ْAŵlQk{_O[X̺u5x7#z"-e^D+a&sCLz_lJ`my͑zaamUB$2U2A BNv+mu.. GD+дaYl^pv_FWhl?uzT]?H.Zܭ#Eke`1[X&-65mls/$RߤkI[tbaAH(y>7+*AE e /XAm,4 1eP':-xiN K^[+ێBa`AE nK)@ ed-^rq7nH|x-ɑ۩o.!'X c/Jy&`;gϢD$_CjLCPa=$]k/E@@ڳ`}(šN,6#jmUi:_[Cb;Ŀ-h^9vzM{(V%,;rEr#Š/:oܢiՆ7<=66FImtq0 |Æk:Dn>PRZeA#7k؛($\Qh#u隊o-gp Ge{m-+Cw1)C*UYss,FSmW ']r`)"5^2ܝL_YCO'u,r]Vb˻ 8 UǗB+)df9q4L/Eyq#/nJxb(p2,^S g45GB$ӵ`9Pw5=~O`11AQM;abDr@ R2v['Y_ nL{{S^x}w{fh31c]%P~&\[j6Qb=-!8dW4wz {(̺(Cك.Cw77"Re[ΕXPu09% ׆wI8+g3"QAB] {Ci0wvlo xl?=A8`1E\ yyqKgyleh|n&jBgCWC_Fl& O\uҩ[Jn>{ Q1 ؆|=~\V6[rjy# …ӬVPȣdfnuSM~a4kM0N0{ gŠo>޻ZURT-/KdzxfJw\$F\h7ewDubv J 7$r9yޓĊ0*b-E da-&Yï-yfYK1x|QhL|w.9S8DFȦLN-,MX֦h _.w;cw1HL&"vN;_$&3G{␮ӒĮ͊tp0_ȑ^Om֝B쒋#pL/a:+tkl:ӹ5&O+NCw;^IK\8$wC?|k@Uwwye__U{Ǥ^F^0#}؆Qkm ˫X;b=v BklRs|aomV#n%_j#6{?k?{*YD̴Jղ[CK\KVRI+&]1L>.B?oP8'$_X)D៟WAF~qgNfd2drJ?[j{YK?_Kȳz..&LXxf{ɂ[nh?צ30x7@{nV,OWfocE%UTG5x@޸|ԙ3+X(\Qw.\M9y6EXE }UZ겂{16Vڍ17BDj[\! u,"/JN>f&:|쏢_\m8k둘%µKff*Zp"ם'Q ˬN`P#oB'7h Чz͕Og*rpaV{hq>swS-bG̻"gA%%|) URJiE FX7s$׎C{#t߉STAlnp\LvpĀ*? 'Kqn|(sIɽj9Ӭ R7K];yJ߄C|?P.=KvRnFbzsP$RIC?]za@u-U}S~:/%uwAiqE?ϳg]Pm gtәFOn1Za1_?;],-+~ (fzׅGQǬu05R*"ffs)p:`3Ͼ|_9s`FϚ|$}с=5WmefzS&÷u;D\s5_)3̾M?XQVtLF;Vڗ#Ywg";ЕrY=K-ZBB?G>I$tL'b=vkijcRo d-y#X}oc Ia~}`hӇg$/\0q{t,+Ue0']ۜM9pu/Ψ#`5֓X%疱I`4O[7mkIJ0+gzO:5hoLDX+Hex RK6 HIƑc+%m ``,юZpEC1̥lMs-Haņj3K0@cPZy+$vܳ}݄XM-\߳1mDoUȭZz6C&֋tBރ47wQD+_Q|u=b],DE"#|$ֆXI0|B#aۮK3+ָTq?r4{IDĵ.RU7\?/>8k%HUV"{OVסa'l+$ y,vZi Ь؎r+/Dۓo8l}"7D3A@B,LB73ΘA?Ll]sm.鑏ݱmϿt]D%`]:G|uhgi&UE 54L_ر(4}pEYU-_3ƩjعU1q$[{ q<٫Bn&Dcabw[s Oge v%NlJKx9_.FO^tg=U5 s/}Rބv]]S:º'aohVMD9nx޵2&"jh=kL'?.csi2qn`XW9]sZ#O_q3Ebn8Hwd+M.IM/p{N>2zB4'7k{FUDsǯ©n=J4h3miy6ch8j59\Ƴ-x;ֶrӹ)4N_Ek^qE!z{.rA :&<F:}z@Q ;: [?f^ڄĆPm?11B% n= g >﵏ؘjfc:ҫS}[e)MRY ^'{lMAaEk`}X3WƗ|2'sS aT#2WwiѶ`*U#,fnQOYW`nœNBi0RC-YweLɕyn7%L};Ԋu_+OĿV6\̶ٿk`]PUgSWC) u\ڱcX̄v$kְ)wz Xu"^ɘ:ڤARo)NyF\O[VJZlde\Ƶ0DCOlD m! C&YKDN4@ cX&֭|;WGmg}%V 7@Y^?>ﴃ*ec>k曞KEh_xCE%0]~6xv},VqZN~!ÓꠍU߆{x]o":bAF x.)|uGfkclcχ'{Vw㹓D6"xЏm$Z-HTdɴ?OO]TU%^"״]{1"(,G;s3˻P $\ɬPM@W8v@"t<:l sIϬFۣoIP7ᢗgYb"C@DUr61s$o=/J/Y62 _k LY8-̍v_Lz ;`/)b4N~vu8D-Xj^>&[j]RG~nwςjD0-wMȨ Q(Yx aE:=yMSuܾzkpO!Z:Q/zu~"%{ӝs$>fɱEi]P?ggt?ĉ| xpLʿpTGA;h8 7KQ49 V啑lfgr/rµ uS~kt`^it۟G/m'g?+8Ym)[4XvƢ ſ1=v jŁ:~$֮BalZ6TxъKEelwn*GSA5@-Y[eߣa=H>o|s L`K$H6ZT8)#fV HW :D1^A3ʠ5 9 "Y'^ k}`R3Ϥ(ŋ^1 0V*'*FTъ .R4DuwRppjtMvR@D 8bmt {s~uֺAH$D"H$D"H$1Hb db,ge`c|g WRFÛD"Y*F&c]mƟS/8=㯌0.+FVhH_D2˅Xx'SO;y /H$Sr4r\Ir%1}$*1S9~A+;/WI$ /1Vv)`wuHT[zФ:6C\eGI"^19I2BSDK )gpISD_( co4eH$}*^Md14uH$턻JƿȀl%oH|2#c>Í<%St_hTd >%H*@3fT#SY2͢2hڑH cnh B+$HpDs/H"$%K Ot$jPTp;,b"j1[TD& `*|a1z0-v瞞wUifTYplX88<܅3.lKSlj܍\\$h&IӛfPuXj(4LDu[tްd \`*!'EGËzAL뷴"907p^ ix(*ڤjҾY+V6w7LOU9aYv:Ec#C20 VNȐJf8})S &2H]“1nNbݴ~?އڬgL^)0k`Z$9oFX3zgD= 0{Z[%}H26JDfK{ ur6lLJs hZ $՝= 0OO#G*lLO<1ITa+QUչEpPS=Zgdt44, *% cS析 qbZǪ`na/eUCӪ,he|swo>_ar0/WˋxߋI2" Ժ"#k<~P-s%QC 翗8n/XY!w ۷IR!yND8VâP;0.(L ӴiT#z{jaZO3h)Ї2 {kV`VB~vZfF4D-I"*ή,Ȱ(WAs]h`Z;i9x +nȬ2l;< uKˊsw?^ s-2+z!Ԣ O*ԕ2Q=[Yd*IͿ7ZZ$ҶN)],djrIm]%5Ytجꌣ)]DkiDREi)Pcm>^wY_3BiB^5+5֪ݕ{8oך>;F/$58&Z[HçdXB- tEW9&h8aa앙6M90H9u K甝CeWJH)O&C:ZeVTVF ]Ur Y򚘇 '2,°0-?:kRF[mVȥ7˦g&zY$㹻'&ú _~f6jڐakOːdnZ&Y]:H!>R$Y&b3&âgqHmՄaAKT"1 dXĚ۴>`xҒ$եNIaYaŝUZNKTI6TZF(UaA~ 6#%&39maQ P>ݸw~&&ŊdX&6\J&=U<'^6\ja Zaz{hѰ(,,zKkma9KY^O-teJ2 /6sN$rP~f&4 mZIQcAdɸt 1́yZ9,JBsyyֆId `t_Q4-W_ ?/82o͆)dV.xvTpw^Zέ~ Q?,f`t2zxoW l3Jr5)R;%FNy`p00iZΫE +}/ATw5CAy["AUA:\]U8k<]omɅqafa]}bUdvj~v@a}›[ի ۴Ƀg k``]uPµepQo 7l-OLh%hv.e]6 ˬ(-g.,]y{CAV{Bg+Oj]t4t.۰Ftˬί)Gɰyf&kHX'H_O}I Q&^>6]ֺ pXS%f 1aai]كy L$W&I/W;؄ǰ0hԙ4'jjV#Eُ}cPJi%Z{zyXϛw(usUigҲv\{SaGN-irZfe[UeCӝj"q=h#6{]̑m;'rDR[xOQvչ[Ƒ h a5n϶h7 yIPPWc[mXm촻0+3;QTu_wZ掣V^fVMʰ۰8iJmv| ʰ RcdpoqC;x]ՒqEԾe#kÃt`h1,å~XU2g.dQcIثM6k۝pqIB}36ͪSs {9ő ~U>-QaZP]vVf%w+ɨt%K[yOf_/wxݞݛoHrHW"C2R5Av;Yxd.h،~dz?˒i2{8@>r{EGC>bi8*:WMFpՃeW 9YlE6!"=Sc 2RԨ'Y▗Yâ}uNb#(L r*>v+Oz~E쩕 lfކc ϱ$ϋw@)U@/yOv]]/FTZ$C-\dք•~/v|IGC5Y PtiQ/¦tYU[-^+صusc璽wgcuTqrz'&pG;:nD(i{3yVEqPj)W'd;´~ADңj!G㫥 JeދmTVPUT3~et([i\'5VZgaW)!+!Zx]Y?Q ZK! !܏/*Peb+3FvF%).vr[Ik@XWd)|C7l_㽥/=!Oqn@j,㜙p^܄5~mX獰٬8Ys <ù&d8jVBV+: !kUjl6{w@%@!QՐk{W%EiV~c*c.θ<46*pǕs %d/ꪘ*\UhGۮRC.sOON5vCd.|q2Zbd3[ҠıGm0wW;bPkX[dTW~cټ֐ը4{!Gfqr]cJd?tNlGtWM$3ѐe3xHvc*\`?8(׎| z:R!ׅɰu8 󥽳rQCw«ʉd|y_gu*-&B ϛ[Nڙlv}wr]AG]3# 5qlyf=.@QZ@zti;~W׼^pl A Ѕ YÃ,:ṻN(˰n Tp>5>o&YeV4|`0K'sGYe{weY]6 +V@qdE0ZY6h Ȟ%;_aOxVxc}mϯ) !L̡< K??<<ﯜa(u56'>u]p8+ }੩}y-լTQwuu{mVPa:lgVBjH^f('bXF}E8pbX̯#?dOMRŬ酐;Ǫ$6Mxzso@_O Ἧm"xi%#lxVvxSiBr- ]x]McBM栗aa9dZ`#ONu,|BV%I $S09*^_a}*4rRJ\]V'+I}YQ/Uﯮy!ky n\Z=G,NMRB.!@T i DN>R.8x4D7 aX3;aaX#'jVrIg+ia7TM}qVdwaX0aXk%".¦\}}XhôN:Y0@8tfunu!" Pr3"xZsGAD_J ͸D eVw_ vꖍRmgec4U 5 G,Q j'5_PJ:dYdV@i KuULEg2xۂ|UƎ.J{ k(ͰL +fiY q^YkVp-t2*3ߪ= #7,xy7./}nj`XPdJTuOk*aU;b$Od֎dNj`X_Z۔"Ȏ7jҳM>xz:Uv jU]]o=5A9ӰUb0-Nhn#Yq3,#a= e<9H/1n 5bۯ K +NBƑaUkn"8@)\ >>źΆĬ2+dVFu}0\LȰԊ8Y.B 9}瓄{"`GAgV޴B33 r̄eQzoNJYX_M\aa Zgf1сP9\4E6;- k] ka'µr#ZƼ?5yzVCD55O8P5 [Oy(`=4Wiay lVJAzT qXٸ&GDX2}Qڲ|-̪VÊܰ5GKc *(N? 'r3\7rTXrsuU8a-hʮaBleaAnDp,w~.LsJúǼخ %h\d^KR~n %bX]>ǀf$9a}]\7>6 }H~"ñϨ-nή,䦺VwW\ !iI1dViful<4ZG+}^>M.ܟȇu1XǀD9Yw.zx_Yrwjǟ,ɓkmXԺ dLVvƦ3ȷGᘇM+''ʬES BAY75FέVv`&Gȫ{.wx\Me}ԹENLlaUwW 2n˼erV{2ՍH^x錗7Ζ_"zD9V0=}|L6'ꮎvYNY\- )E7`u5(b#h2jabkm{D+~`;2}ys9VNڰşcA[kP4!'+w8/aihK1фxG^zk-?JwuNB^I8 Ԣe- n3+dqq.MH#Fr.%аzAhRDdmQ/c$8ݩ$YQ0WP.N+`GzYqa,Z`j 3Nk҉C/ &Okgӂ#anB)tSBhM/[6-%Y> /ʆ@En 2zK(`%| קmPHx&5JCe}|,-JN.Ƀ. $ (FAr-P_l֍GDUZ. BjTVU` dD1v EƴA-RTx$idj(ܗ#'1q9 \4VLȀ#YA y+GD +_|_/۾l.EZ<d CfPHd*rC_U=JX R[Fک}\Zeb(n`Rf>W -}LaPDu jTZmpQKISzb~E1qgmc`48:ox~0&55q4~ LPފ hZ$ 鮫CHXZN&!{*-!Ѣҭ+GY#f_QbH 9} }3;."C@4HD~,G06SؤqVM%'w[x#L*L@ _򒱨=!yCy&UwU .k+i_k&lg&â4Bq^6v GCn֐ܬ|DUD`BR{DxL&D±= ihk42g¿ 15v[I~ɘ !+nk3Mʆ:: z^m"3סU̧ L woQ!pe 7dQ5\kKV)kʩ9[ATXRv"丰^xK{w>~Wȗ?~㏎{a]eT?HRL5Eicܦ \C o Avg)ql }5^0;$K `65#ˊz:NqrziP\\l2Kvd]D Iވ1~L80?)=]~lF r_?hb'$S ؏Vo0>-QC6edB;4Mx̔L H(ٸ&n0 d@x.2ySq]9}'7F;.pBAMUH)R`iړwP+QWE<&.UߴhRjʔu@2*gv\'9A25!Dεٴ-`6dz1q5ϴ`Rюdoqq |V̢eʧرZU\@uGX \sPxZ'z$S+L\ +C$A{$9o$ئ|x_Fˈׅ=n񵱙dzqʼ:K˔_[d Bw5]ّSIh ~KAҶ"/ɔAB~R:9~|. C'4ꨅӌze$^BrYN"9#RvchbR8ߏa!TUowEcMocɯd T /e+ܑ;!0VH8zG291mmcr؟Ĉ<_}lP16|S̠%W}5R,05<^.glL%S*G?+){4^U UF|˒) id0F4uH$1V LRV |Qx'`ؐA CcxWފtT̶bԑSuD"H$D"H$U0IENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-purplebit.png000066400000000000000000000217111263353514300242020ustar00rootroot00000000000000PNG  IHDR,,y}u pHYs.#.#x?v IDATxy|՝.w^ReIB6,9!!%}m);ee:];tvZn;no3mi{F;PJZ!e'N 8˩q$[-'yXdGQU 勁ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XDɮp܍?sOv]p ,:J,^R'*4 ,:X `58U`9ED``3XD 9ED``3XD 9ED``3XD 9ED``3XD 9+F* "':c`lCDHD^xa4:R#BhUuP$EZ{ omm}e۶mCUI>+WJPH=σ644<~6,DKC^*RIIKɎlBQە/|b3 њĮmb]*x7fo : ~'W_UBݞUhEWK@pɫPUx}7J܁/Ʈc}8PxA:<+t~V1v&9VܵR@UQ%"`_<ۼy!<1FT=+U!mя!" ZVFcYHv¦3xqZ\6P\ªҊnz; * CQN^UZXk`1P(.)N%Qa,\9ֿ ۖ,H[\0ˮc%!\~KH(RP)zo[wxLE<gq$1xߝWaHZZ,`f-is'bʬ*c؂#sJ!Ƙbwq\7~h0jZޡ &N1LR}V4 oN;aHKD`1ߡLkSX]CqlAiE7"L3Oh 6_{Sf.8׼|R [ZARnƘ\GTG#3E+V9V6z*y݀H6A WőZ1~*?bE3H>'H˦M,WTTT\ 3Ƙs513S &;TcQ}x-2/?;r_ӌ};`ZY` Q1N)4ι}Es%vfmK.VHDWhP^㌟RWrϛ@7{Y25l`_-O,h⨵PIoj̘?i /c@z--[TWWx``)ZžvB`|L//6>emIxv}>xcWk`Es0fR9< cώxm؞؃P*o[3T*pTjL"ja3F /dXm.9g”y _nS=1.vAa۵kUZ\*<=כ+"=9&!gy:Z??RFM"pT2/ȁVKqie.aqu 5q4ϙaш o/}#"L @H%}/Q]spW|:tZEwPt/K'}S=oxC@ ~"2.PNU% _sk~VGLic6~*sM[h:} @B%NqXs΍=zvi,`J;YƘ7x'z J=vuTWW4ƪj)ZGUuCڵds8*FG1 z^g{ J*L(<va;@_~:3mAh^[~9שNO=4~Xcǎ]sMr˴No2Ƽ)c1_ڸqC<1fur"ݽp’H$%c X&n۶-X=[%"~tIIx<?H$/|N,;VwE7UZ&"xƍU0Zy[bإڳEdlu2#-Ǐ]]]cqDz+cʂu.4zsyw7mF"3ߢr\)v{MA .ɉRI z~[YE >y^Pjc-/P`l*|6KR7cF_ps&rƘǿZQQkvcnJlBAp oVPcc㮼 ,X,XD>yޛDWt3UYWUU}ax1(P@]1/#56pLSG("aE Ny 5ATw{,w\f5\V.d?vXk;t|ЪU*RƘ{?[TD&7Z[[W/]UXsկL/b|~` X,qcE2[ 3\yx)HNU=3 x?WSr?GӾc9Z7|hf/>Cd)J`y__ʽNfba̝;7RYYP(t}<:FYbឞvkUUo$‡`ܹX,cpƘ;gԼwڵ#$šO\Ե:h-IJuqc]}^zCю3P` CXhhx\ j8-rJIIѣl1).{X,6;hUc>g ;H2i͚5^eew1Tٖ vt1---->0u*3`#x஧B㾢5⢛b5 zիx<=ҳ̈D"?gս #;M"1CYOqJKKq[[}!sŪp<sNsO{31ֶEgX$"3Sfx}"b$I'}ig3:ZSyM)j.e Y80;vd-t|rQlBWw T5ZkB/RsU=u3qk^ Q0yB!Vʹ˗_Qe˖d {ԪU744l^]xH$r~(G}yɒ%  &"8cX,]=Ƒ-^^z-I =M=ΊO$@۱u#u2 XSWWg ~~3-ۍ16e˖]_1Z_ y'?Y'Nc='+EfcY~oЊYkeq8[ \o΄3A\%}K?6n]q~k׮Dbm}}?& i|&/;v",鯪61H 6nx(SU7fx<>cqi)kp򳺦!ʜ$ZtBvhMk(r`׬qy}}<08شiK=aÆ ***卍b[n=H$> cƘ#"bT555C)fODncE;6RuZTcp5&Lq .|ˢ(Z"]X|cN,[ N|nviSՍ;ėg 2_9k׮7mTWzuK$jV%3olii9(s""G몾')aT:)d=S2sNd7ȞABW8v""[ĎSҊ(H$]~jĉMnc ybcLIe)kUڞCDVWW`k+߹ ^iƎƽ#~32ߎup863h:h֖8qb"ܛYpھ}{K,ܕ2Ex<<3/veY2.Ae;(N1@I$P9nKJ<\srO?T/h WJ566.A&%S?SI#AG뭟HU[TՉ 6 "rE U=  G n:/D$q#/:sk;v4CqÇWa 3v#>.5ex1clAS\U}ߙ>;~Pji_2\ )@x ~26{SAL6HYXUAlcmd$mX."$Iwb1N9WaA1&g#fHBao[pdDJy." ׁNkA` (C9wy*Cc&$Z.:~nDZkhxk`߲eK;9kj(Z:O'6_}f@k+֑X9$TupVTQRRZDXe1f`׮zYL|`?4f.eg{uft^ȔhyIRkDvf́ڨPL eAU-Z2YbowPH|>z hc̨ޯ : ˌڏkwޯ#>wo)QݕJ8Ԇ}M{q@<)hٙBuGDy'߆]()pRUѴߴ[؉d^;?_Pl EUh槾~\Wꍪt@U[Ed' ͛=kw|˟R)_U3]jP{|2筵1,F/CWUvۍ1Oxn@yJ{?e^:HUUsDd ~|Um6xƶ{`oP6:Z~tNѦ6;Ԏ$T^+8<n{6XZ֢tC0j:f;FiyH ߷HuvM{b aˇφwyn Rq"5gH}^(T6\"-I3*?bG zc`3XD 9ED``3XD 9ED``3XD 9?݋(f[jZ{jL4X#Srl5 l SL=0(5d%$~ӝ""gN+ xF<q{N+"Z:ǩZ:ȹm>,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 tOEIENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-runscope.png000066400000000000000000000252411263353514300240340ustar00rootroot00000000000000PNG  IHDR,,y}u pHYs   IDATxye?d&p!IzHF@LBQ|yౢ`^UX]]OVP@S9T0"1LI@ dz?&vfy~揤ts*\` "j""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r]Tu-r1 5UD}{$DD؄ű)FD4ݜP(l0iıh49P(\g+J[pVL&s= 8SDd.#"7IBR Y9LU*οSTޤ!_>m۶~c̑Ƙz ?9>>~HVQDVMOU+ w =03'"X"b|?GD> `ILk"U=YD^PY4Nq//U"r+OUDbx]KD.k9֬Ys@V0)"OiS[0 X._5SZú/i:a#6u&Ut "rJ[uX]]]]Wȱs [:HP(x-jv|]w]U>'+}?LDnda. +ѪԷk>Yj՚L&Z[0x: 2LZUq`+T0 ./tq v^/j),Ar!fny^\#g|ٍ1ȣAW8+•ɧ+u.wMcŹn{cv*"9U֊HgM+TwJt1r󱿆Zw~ Z >#"&"6o|6jZs782Ob[kXT~IBXXlvD\.p>Md5#|?YDo 3T ;-ocyppW)P"khKUc6 "r/JٔBj1'ś{DO6իdn6,>|k=ƘPXI=8V*G/_dҥ^ԻL$Uti" zNK9  w[Z\.{w,I+DWcNhԯIA wk,D X>y&AGٷ|ṕJ93zrm=\.\Jd)>ϟ:Vn_԰Rz+T5P}! v]Upc\GXkm}^J+ID8,Q QUFDnp`waAg 䳙8HEmzCZǛm2vhZf˖-cn( kvX,nH)C&TMZJlITk3ֶSUwia%gULHoz(p,|yˆ/-ܓ+ |:;;;CSԫ"U1'}?y:Q ,YFGG#"Ȳ\>S.oKZrOOb̉xа V/t rX_;"ɱgc. UƘZ^[k{$YU}%Cv-YmݺutnݺĮƘK5\&+|u_""?FZSv&&&>TV5%TKRy׬YSV+"&a>hhָ=Lf1f`UchTPV0 w.nիW?%TS EdVBZ{`%;[17wcCUcs)Go0-jppiuteEdb]."cxXDި7s+e2T8U=ASU EDn5\nk?>O_˖-qtE>_f9'UGD^j+Nbι[D5L;g aU-MunF?7f6o|-./yRq;\[kdWjndC'w~q%}gΜ}ƍk1%[ܙV ."OJQύ1GN.RtP"Wh>t~VAJD>͵l}!TDQ*~ݞ'Znݒ3E iyoU}@DK\H9}TEE'\cR\6iWMD^T,o.-rPU?1Q%sDzZFU("S>144Ti\6*뮫~);{,~+nYEϋha A+5%!,HyI U5 aqw8_Uutt\+"KJ[*"axiC\ag j z_v Ʈ4|ZDV 9sT}?RD3|TD m{yO §|bXUQ-_DxAfc-"N=m"ry 5sƇ%/Sg PqϼN[ ؏9YUDVaXZ- 譪-ei-5LE٫W~PDmCUa9=Ͽ6i  k"NP1TǢIc9Kkz}ܲBp1>Gfu32Sz|cڼyl{\`lZ Y[;3+ɬНr5f|;s>ڥa-*LyERt?73>M")-J!>2D$?/9?[.i`<;|uppp$nuUlr<Q70v뺺>YJ "rlmw^}>圣mȿ\r &0\) sOg]`Ŏ D` N[ճlJzU;iRD2zEb_w='X7}5UD&?NY"f_snWF":J}]ym|1f;n, xgBP0\"PZ=v3fѢEa6^Yk1Y*\4t`5@aY墕31EW+r~$ޫt9UDSĺUprƆ?.@԰pT5px)_ج1yvk ۾}J󞑲CEkDdib}}*ok##7VxItT===?mW( F?_WU_D^)"X // bqKEds~Z{1l ðe28@Rʩ֭axjFL&~ Zf nƘZV{x RFU !'"+}!Y.K}1jODc ;e3dVjbJ/56wFwwwג%KRg&r^-"OO UZ.ׯ>裫Uzn4+ĿO:h߷c^,7M[ NSK:]u<;˽@WS祪o/Í] "秼.0|>o6___פlrikov1#J}K?f<{eӈ I"gVW*{բ1 ×Jݚ[AO"rv&i劺x 1W> ^ zo~tu]3DUpq<Ƙ7U ӛe |>yy)ۛf`Ejָy*ʸ\cyqұoNEdm1aK\c^:}"b/N3m#lٲḩ}EV:-[vڥj5 Ze>{'YT,FoLLL{W<pfoŋ?66QI>mɤA;@lVYG6cΉ  SGg^hKTTԟ!|>RЭ};~$ޢ{(@mjNBL4Z *O^:U_o&CD\MfhV֭[G y {oZ>T(RկkӮ$yT)oαVTpa#e1'@L?9O*<{1YZJJK*Q|od188xV+Uv=}?-a_U syfdG+ϖǮE3.K5-[U']D9 pD-WI}߿lg6vd;m/UEb{[.okgZyvj1jbƘ/`4Q՗NZ=E4e|km[_ozԯ@&jj"whuQ1iev \ʤUGGGOwO"慘?PSn9 "A ܎hmoP.0|93Tn-W:{"rQ0mYZRZ46q1hhATߴWQibZmWc&-[TupEkDZ@Jt+18;d4szHbd F2`<N6>p>]@DZ~\.1棪z$Uf|wlo.]kU$c /\Zax&wOlOX$~3jLf sj媺 nf5|OPзGP\Ov~9Xkb n JICr"r?*ˉWg[/~T/ZP==:P[p-= 1~ZX,n SH Gf2\:Dڮl6ʜXѲ\Bk+>s>Ƙ5 J\.7]$ Ys.ݶm[Pj6|aŊHbX NyCk~u]VZB,/^O[ozѪ\ꌭwU-9$ ,;bޗ\V*7ȻZ vppΝҒ%K]Uvkh9-.`5M5br%kq.ԧ.! ^UucmXWFۇ)z{:;;g#"KZ!MfA}$}g'''x Mk=gR v*5E$dnCmۧQѸAp|I "rY+b %~Mk]DE-FD:kZj7Xթ+*xTS~OLLN{Ϣ󼿳82oKk鼩QFO++IrDDPf|mTTvh||9[\Te xUMs6q o>?JD>ݤ{]I}VNjBUl!"y>bqXUKM~?SV|>߽z.u?#ioKE/i޲iӦv6Utڔza\O1NAE$wH[+UV]/a"rMl&1;>~Eh"/Y;P[AQr̨UoHsI}T@0{I`-ӺL;7 M~=}j%efLj\U W}? ZIӴYBr|E ǽkѢE#4~?y^Z.IY6x6`ӦMLtUh>+""2Ɯ&"cn2Fgԧ KPE̯YiZh/7sR|.&>-(MT*}FD-N(wY{ol`I ~|3>-Zvtvv7⸪:7WUzUzII;DKIYOc;<.mld=bu╪zV,sW9nyRZrUy6~RM>?fz1eÉTg6n&O(wZ )zAoQSϕ>:zh_Zg/Ugwtt*J7YkOT[?zU՗JK<<Ƙ{Kj~aze{6czy/(Jm|rƘ㬵CmkP*2ZT~3>>U;D3q.ߴn,J^ǹEWMSտ5Ƽ"zBjT@fO^kT*j|>woؽ3Lj7Uk:;1/"U=LDPNEYo[k244tƌ`_Yvq}}}I³*k[lihʕgZ:22rJs<U= 꽰;QrE=p[Z͛gB `>WU!"SUGD}bb-[lmg]]]]G8U"ҩ;x{>siJU=YDU./^vjx066v|͊<&:GSyAk]z[6'ngc.g _yY1Fu"b֬Y500sn:===aJvڥaN.D@UV-x")[$xfcjױQwwwyN(XP([k/5Ƽb*d|JEO/'Q#Yhm0Ň*ʛgGG;oj/-2ZnQU-˗jc U}nY^k֓ ?g9k$g}>nBc\,EDOrsRA|RU_5mlUj`ӯTUj1~K"z*iuK}>)"CTGX'"=,Us7}pOqWgwرvv0 "*Ƙ=yCќKDOn ; `{GD4kO'=rQ{=ѓZ~""O,Yj;џSsi0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0 ,"r""g0GIENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-simple-energy.png000066400000000000000000001522671263353514300247670ustar00rootroot00000000000000PNG  IHDR,," pHYs B4 IDATxq6Ys$ R$EQdɖ?zz|땬:xGUfU3q! hTWWeUfdDq!{4o@h UA@ݢ ]V+?P@&0@F54 E74 v t1OO,v1?.f!,д q鱕yF @QFUUGM6n2++1+B$FU"@vi߷U!KME K@xPf5niJ/ %a!qNI, ALct\JB) 0Y)$"ffFbD,ii|6?O8o~`-1Z5T-Dj4h2RaY(@889:λ Z*U-uGkJZl*'I50q01'ph:U~{bFR{|Qx;E;18Ŭ6c54"7s iO$$+U Yy,n_X( fѢ I1$4A%Ω*F TF++7/LV/o]:ᮎ:Zj"Uy L( Ŝ5@? 12=$9b(0!4 54 "?4@#B@3N87Ǐ8j*IT@ǚZ5^v@YpT֝nM&ub}Jw>r,N5SH'U[x/b4U 6f4k35UR L@ b)k֞MƗ_y7~|սQcae-c-Xb8 )Ϥ㢓6TX_4aAI_Yl5"کOf{ӝ{.E,Lړ$ =`T@4sP s`%t<+ ˗U`Ocm>U\3bd֐I1ó1 yfܓ*Lhf miM8i'Ӹ7[k+W s/SYzy^4KRJB`$ hG_ѤiywyxmԨkGCkTbd(>B2j~8gP2UM3dIDXem}MX~i@Rˉ1FOh61a2Q-Đ@"-AL&111]7^[?6ZN&5GQ3KVpgm,ܸ@} ^&`Da<%7\E,i1}<{'Gz.xD(@9˜/t=*}Zy #@0)s@ڭEʉ)sr%;5PGMKP'{I8^i+ɤ bUڻ7~te~5Qe4TI6Ӭ#tЋjO m13Su~H G!)?{|gfL[*R&_1!!#D X4@*B\ve3eLP챜yҝ^Qː$ ^Qh8Cy0PZ[~֕7'/O^a*3$@Q1<ox~,KH؄'aX5gyOqӽۻGw[E(MU$/\I;?n̙hgWl<]6?DGUُbo ldm+f* O|7G\. 5v}9ZI-#|{6/$P1bS  Р 6=ox,'9eW0Eq>Pc5\t9eifթ罼io$]LA,pԝQ 2M--騠©1į{oW7#'\g8gb%;,/$|0(SP xo OG?vNi8hGzrlj$IuboȢRJFZ3FCߘ %ȴ54| NcgL]vm6V]d6g/ʼn3u ;htTGt cZRʅl.aRYM'LT[ :t @NT\O^[o ޣvd @ |B/MM{l?_R\4RL ?w0[ϻ)J4f KC+H"Uhޅj>տW5axªbH2@ eT?I,GFƨp~lkm񃷮wnq13B%10R.+PKzسdJ͉oC%'Oۿ=*bDkݝ[{o?x?AD]&)W?p4{E߁+Hֶ(L-.tvuќX/ kBN֜MT[X_CF}.0S`+XC-{Ƿn={>8}Gu1.%wIwW"90"jiD$98B^NNwG{U'6Ąi-(9L]D@d óVG XȞYɕ9 NP-}ޭOMڈ6&$a*Pm-e=1sh \ tSS9/aE}m~/ġ*"0=0S( =Ks! C))] 1흓/u3ҢAAŹhR.Ũ+z6C \Bc(pvpyk*7n8 I3A$HbRPÆ i, "o`{ûoJ- 44GhjIFE_JV: EtN(Rf1yFu} eC/o*_&L5>$}_`T[,Z۝?l3R%Q}}CTWz@WtR^AAdĜ"NaB]B 2_֫cCHBk5JJ>M&̔#3WRDJ'wܼM)Ƞ(U2h}\ Ӈ=)fIar(ū4 LQCGXTl/WVolFPP9ZEMU\l> ={f-4 m?޿~pYcsT q1@ Jz RIq),bN+Lh}F-Y=+Pa5K>>e`R6 D͢A*F;W~?^]{ء&Iɕ*0 jֺi Ppr0߿{fvRԄ{! `k&9TuX\Zgn"1@ 1w4ZV(K&TPn5`M{Mگח&nP &?./$g 2hf`28b)ILF虒v-czP撊4u ۫vDko]ɏ^=V G:Ozʢ*l\HBQKFm0;_[xX7HE uEKS&PcügMls$ܗ$(Urh ʨ pQG1v#5){5>Y(>{&LFt)$LovӖ3 HLDEQM&FW[F+,"F=4SR,h0gTipN(k/Onz*F%74IJ5[IcgY;?2q~|7;?5X4*qLUsmfesTTYW3'8d&4 aZV{"0 T'kOۿuF輦EC"yU]\/HϘ SO`A,vpv?>v8jq,G7,M NKҥoo'oeR7m# $}F\5 C8iwOa>ف2T>N BG̠1UAc v;grEi3WќLWPs6'7ť.ʆkTg`@BM~v{ۚ\Ys0"B~ߞz<Llz;ݾǷ~;.FڂESd!J*mQ *+_F}Yp@~KiPXjo L,FU=}0ZR]Bo:җ6.4l҇W(kN cp3?ҮSUQZ~fj7LINt8F{x}&Ƕ6 :sfS`B4>FyB,*֎O>?>hhH.fJPj3{|vC* ,Ww& ugJaa+|/pij#>k/a.-3"E1_*ѧ @!gSrwqc@u¡h)Cl'_$/? <خg#+"9څ|q~wN7iraKàP|蹒{=ʩԭήZb Pz/.҅|*7st?8^?~;{{*Bؘ5J HȊ&n/)fT\?e5!pG?{7zj4Wb$~S,5hb,ێbDGlϙ,,- ʄ.TC= Ѫ֣^2n8Bzj1ArA3 ;}tE Hs^u;}xgY< l&#O`[IIu/|Μ\bxlp%]5 CÂ(apw,7//8gGL_b(~=5&,BZ%Iũ-vf?% IDAT-cUi =C*7KaaO):jn>l5ȯZKgք 90' @]WՏ,{_kooOVZ"EYNs`&<7䢕Ju9]6_v ݈*۝#)ʒ*E>fv9'i{a%e&15xŁ/ dJǁ{0K6}έ%$4 bԪL5bT)C5Oރ}||QJqY |p44`a4?nr7#,1FW,{3N+r)u yK˨x4l>o4Q#Ʊwt?kn\9W;됃 1%=?!B\)XHdgӏ_ׇIP@֠LgŤcʹ.r rUoKl' =xFu^'Ch-%V $xXUu⟶6qZEE9be Y~;z:~B8-4"t_;uG~O?;4mD%`<YOQ i8Ϸ7pPg>=0LP-Jhߺsg~wQ*5FPL\zhvNgF`Z3Ћ f͢e+8B*ZKVxiLv@C/iiP*s[pY.d56f&Q]: );9g ʿ>=t4#T3Xb?>aΜ",zAjwɄU%~&!irk,F)WcF5+6e @:']3-Ƀ1Z[keOWפ (#)b"؟ۿ78\H &4)OEeЅwOw5)65 \.DTX";?%,\N-u>2J9TbКR S"zL͈QVE%̨ {U-b$8Wy3ާ/-hA'3;QR;Ofle^|22v;;mzA*،hAO,F y m )A@)*[z6x'\)odFzڟm'6\]aly fQHB/~/u9?uuVXwN4|ꤋWK@&Cڡ5 g@TiT"E)O<,jAHFKBؙ;I'K}, pR1c^A ]lZF4loj}_/keCJB!ZTȠgm٪zfT%TUip1f|)(7e/8|&"V H8DBSB4z/6"QIƻ(N}Fo(Xg3)"Bh8m)&U[Y_vcV⠤嫚*bDsݣ鞍-u" "Lh0Љ Av&} 朄` <*w;:qE ڴ+| WJw܊ۇhMJ0`Xkx4ַ[4Gg{~t&JK),ƄN9qۿf1DJ`jeǶ{ņO-}UPcH9(=cųj:X[Y_\9?md~4ofQ[ST˹;Y]MQbP@Xj-R)3'lD&*&ۿ;>9yx*22@=v}x4:(T|EFS1CQH j 4o௞G@ )Hnh)]wQ-˰ Ekʇf}Ƶ/m\}[rq, ּv6{;wn/fGV%L !Y+{?~cK1HMo"Ii."f%׹L}c|r+ FKiyi㻻$-+ŘLP%pM<[iA*FW4` _)< @/Z )]fwOzU.s--o@TJ9){43j\F8؎j\[޸dsk+DEx[7"KG+˟S54TԄtO=v gb [?aBJٍcr(2I-L5ѦӰ㏮R=V:x~N.%:f䶓EE`J1w8;zJ*Z@xD!"]`_wǿ6:o%H/aE)%Z=Ӭ`k8i0!hK;mB*hTqW߹7?^]yQ<0ix4z*h7(ӈ.˥_W`.m\ل$,j)W#k[EU.\]S4Rż)m0hk)>?ۛVkM`x߆ϱg ۂec5B!'D̬5H&(M˜ 0 nxz>u#UM0F"҉7/zs+t].4U#XD;GԨ^[}o'u)F R/ĆSbݮ,+;}G+!.''.fE v/9iEajѠ޽/Nڢ !xnٽ^"'`)8AHD Iw0 =p5+||yXldf) PGp^YVmZ{&ᓹKmhWfc8+]v*5gط~ Y 9>t̪/Kʳ'T' >uOc]R#2:ѝy[kVj 0_Xi+0D;eX;QE;ad;V.fP˒lKfAQ࡮I-+WVV&+u=>NG{'O&JkN( u]]]~H:r#7\_<;_ γ2u F(No}t Es< . Ss\!);|j>5H.w?yWW6ygU|L7`@xWN> \l]lneܙ&SbH}!W*ȭTj7l޽T-"f1=VVa-GQ}(BXUF`f Z!Lr \䝹B^"4ţV j۶U5:=ȍ~=Ȋ̓Mwh2R 5x 0 ,O~o@st-jq! iQB(2_f5JLLHVUmlIw/O^m1P9C-xw=mn4~ES^Sq]VnO#ur&fx΁AA@AJ>RdۉP4B+OBpfs!_iG#H&РU{z\+kHy熯|Ёp13 PCēGaksV9D4cuġ8^zZ̗h$9T7޼V}BdUrʍ7&W|~ Ek^{ )IDmXCT (tu5.լtM^W.!e$wXFFd|EvO7T 293) 6`Ãoi؏՜T$]Ud=O*K'\ォ@_E[_ޥk#u@޹d:!k߿yմIH5jxc>bT`"N[k}߲%vEbl7?Em!,4BKo~lڋh@D`3̉Z8Mnu?kDsb4Z\nGn30 $zw|G?"V@G#2K-/sK) 3K!06Zj}ލ^1Ẁ^KY2N07.0)TT\ۏ>~=:iJ:ZZ-)9M[nRQ3p,`YxsH6T0=yǓ˵8T0Ee/UWz}}eH7u8ºSy@7pI3f1" |JMki?FG@@GԓYc{լĺ=:%nT61Zh1{px툅5 fqiP'mZzQtٽOc |WQ1``>QdV .dK Hd9}H[!MrpULb̜%}#Giϟaǂ  }?B)@m'wN:3*ť<τ mwȳb28%.Z1U'iXetN| aWXo%}^ 3Y$EȌ`,*9 J-'D"rD24TKB tTM V܆M;,߆LJ;x$.%Gҙ6<Fpbքd%)(@-a+@rYw(RjBb BtKEr~ 8Q=$v4> ;K-LOOU5Y]y$Lu ' LWIp`jzxF DgR0AgP1?|J|]~T{z'tW۷zA*VE /gԦ}PY]T$! o$e!Aѡ[.i󈵺 R(ָ˘2xz̠ jrfhigVV][cg/^v>?z@D`:8`Ŵ}p!!s>WߓV* 2oɄ)X$y,ESI*㘆4[cH &}pMpFT-M&Zӳc6E? 0uaMҏ3woPBίߋ/>qeDoG1es3)3sPPDK[4c'/e?!uqΣiΧdPFʟ[앑PI CW@Cƭj|6jg*NR E8Qm4^Ք]yF`/_ IDAT6gp*t R|,E*g_|oS=zGBƾ>4\$40&;yڝH?K S=D! iRD~j 0s>F 6\K*pk&l(ppًϿxU`žH-ص[j q>{7置3&::G%.:I0n&Y=S I($.#lL}3vp2"7sx4lu? >e!p3KE$B-ChCu˨7{#3sz~՛ߎiJl0N{B5쬴R?@$t`E.8L0 T&!!M7e%MPgĄMD?JaʇU51[Xsk8OoaHNy7ڊ`~ Ͱ 9_{nuuTל $ KfT[wJY29X'Qed0b<߼yk-ݐl1,jR.}? 孎5:kGJ(6k=$lq< gqÀ*یp`൵; mh%tR+p"HEB<ŗ@(tJi ً=OQ~y$)nɚseu+:J:Ξa:QflEmfZ˭Az-kkYnj/dU!ckEwι|Y"U>4S޶ϿؾNےߖ1nzyFC2Ӓ>09GI*Y+Nũ.ҧ:mqf<_xhM|fR@f;!q؎ͰVCRZ&&{&^K@IE7__f7tDt)Ӏ"}뷟YBJ(#wpM'ՑAM :uWѶ aWQxov_( (bP@rU)u3\Հrhq:C] 'MZ.s,Rb%|W_7=i!wo(f0o.?vP!q;;#A$ZJL0qJk])TX4Ev5rه}xIG8 ̀~e aJ)?GUJ$E'4fH l|NҒ(IU^9?C3 ыo?_ǩb(%^!9(Fl7\DRPWf]?wpV021 qwڝ;w@Bi|^\bbCڦGv ooI'RdzMj|/^]>7$T j¸+uira#HEw(KA4$e1͔y~`hB q-=fu|޶*`QAwoគƵbS9roERXF$h 7n D8+i^ 1j&1LD3v1d@gq /RYý7u݀\7nt&#O]i$$0tX4 B2ɜCD&޾e|9`HH6K# iJ$ CL_z3^(G槓ϦndAHwЁ'6nԗj'YU`޵Sݲ]Qnyߞ]Q)E96Yi`&kXޡiV䘁Dqd4r_Ր5B0bue)8V)ySM[y bLc҈2{߆x!4~\wJͤή^_i in%{E;wk~;%Vw8ͮQWoFhdr L9Z~f"?WTX.T!+؜U@YUP^^6'ԏa(Q>yM2|vZb2C!6)TEGYv:.t(`tt]ӹ\n$!AZm~ED[+E-ԗ] __}~}"ev@ R0~OOB amPg{[,eͬ=mM{ zc`A,YXʖ4ּ7te.o(OKQ͜ Ai{9~1~u1[S!fM0 |UFQJi$wdoM\=2}@>4]Ia}A]L[ve668y̾a%"t] >L.#  ۴zy fRZq3.7 }QՌ~?H]L5)p7sFlÍs Kv{L8pޝYv2ƹ01 f`p = 0*fB9a~yueDR؜oޮ P2wI{>n]Wcڌi0V]t4%+ܐkI@pZQ)҇Z;@Z3 *̻ʦob'V,ٯs5ռ1P~\Uz{Ap~ ? ' Yx)nzbՈw8ӓEsڢjH) &׫חWyhԩab]9Ԍgj*#/MSE2C$ۨ K j1_) 2y4K>y1Jܟ1dM+.P] [ٓp+~>)m hIzuҀ̑Irn{J·N]Gzu.(4:1K݀!eI00J hS׽0s5˱ހ1 sy|}ioNAf"0^WjpQ[Հ/Wh  m{tEo ;a8Ʌi7hWv]v\TbOA>W Hhc1W^y8< dٱHEy(lFdvY"L * :F=i^=SQVۋp0\&P8##jZ1m2eC+7ߟJ.Ф11i_|ua2eXEN-𚩙$E+fXs\RV-&[jb)eT_LG vޥ[Kp9$tdf) 4e '=T)EK,zZm.bCуb2E$j=Ҏaڎr4E.w-Z˥lhX)XXEXmޭ"L-4H,Ȯz(Mh*Iǀʶtܙ X@Z+w47Fb4gŇ&XRN gYҤ"0>X)WNm|AXڶޞ_ ڻ&X $(Uk(=C^D$am.ܤSUe:(8>X;%(]pa'f Yue Rr 2gM?Ps:Tw=V;?X)#}MJˠ5b0ZNr7B=KH+*{*ў}o.^D2T0qkj׽'AVDi8HTď9l w9e׮ܛ;qoL8&l,jdMY5Nwi&KS̑ETMcA^kأVdsu޾V$Thq;\Q{qHjxOP(FKq8'yrzʘH֌YR\5˲HJDޜ9N6_GЛH 3ҠCQ zo;ziߔ6d^΄Y\Vc5ä:Z.V0%JQpæؤ+u=C>Q/o۷%HcI~^\=&jjRg K0H ̜Jb>q 2 ,a[k!DžfY+&XH+֜&<0)UUU@IrlN$0m`Cn t{ 1foBӈE2fy "(͈U ; ( qܬ7?~^@7ƴ=|e0 *EXUtw j{>blCoUX*`!e[]m͢T RoR |(ejL3ma9FD۬6FR)@qoam_ Y{rΒgnh(w ̾#ED|ל60[(7*1r Bʌ#0沿 0bH*!^_g Hx)RLf{ r.`=t{6{f{d šCp{׻h pN;e;Tvg6a;( fʅZi*TrA>n #guwk2![4\x뢍BHƝxi8'l^wi?n>Sm{U;VŀPKQNsތO#mXOu/hGФBfܪ =ا!Sk^B.HۺƛW0U'3WW͜OּtO޷NODHF.Lum wQ0mb * B瞜|@wvrچEpihٝ-ڮk<A08EՋOӿJ"&K9GE|#EPIj{>6"zWĭm/ƋϤQIEd&:҇h#shPk&x nѴfA(e00`^b{t3'YyN-c)'(p7"[c4KX N3.n8xϟ'akg:,bॖ NS?'@ #-~x@֖BT b0"I x*ᇁ^vXUF:rv5-خyҎtxiZq`)h'~2,&XӄCitF&ՙSx0/3Sq-iQS| ^FX4SL bњ%&~H6 :.0QI<3&(݃8ҺO"'pDBf..}s?'fuߨnރ75iQ/7 S?^5%ӒY^~7)hQBD\q W% j"*8;}g(&AӄXHGxg0gx.-zim7Y$=耐@< YgP M'˧;\-VF3j?c4XPo2݊3݈ gm"Rk/yH_bN@6@E>dh1G͊zi@GuR|*-w25-y2 i $LNQ@mO۰",Oַpwr*Cs9EuyЅVz @\$'^ ̓Ej{5\nʰrs\*b:GP-VP}jiWJMΰ\W:҄k,)TBFAbnHPfAA"&bt{6= ']M6]]p]1 eN߀Ū 5K`d;O(?&cJT׸i͐  N(V{`$َ+M kOIql|H%F;v@iDETU1v jF 9(@4m}ӺE!.4w ]ChA/[u΋xOI@4:̹;EBdVKζ+JgFˉWbm {dUS#"Wx6A: m\0xŰXNe5+_sG/7t;nFݵ\yB"!,4P/!PJA<-]+tBq[Ae8=iNɓEwh'it^|p@bMrYdW*li HwhhvOĪcv,0[%V˰ AB,{ _`62vXoa#f{WfF*IL(IV]G'YSZ ? 4[>t w`1k<<;'t?A(Qxi۴ӓiwJw ]ᙷ0 ;+<$9 :8D1*,fv0{> S(m^N_Ar頣WS .pYtuR=>{w`rvخzX`-o8,g<!RLULbꢵۢX48qHwa|O]9dѴ-vt COEInxN94I2!p3@vLaȭĉRFKp@cNq6L7"6B!HqIƚ -u 5;˓v}Ti*}UX֫<#Cڌ7W/qGfJQ+=p`SsaHlg%&jݠϜ}]\@i"S/mo Xq{7-` c )(mU9EGv+ q.{6W8 ꘷VsHpk\\#pCy6K5440nFck?V'>^UwFB떸7Nu3ÌOLdrq3FCl~DŽ;oxiNH>r?8E#*.+6nWs%wXUNZ2+s RL59ɜC.n{w?af~]ɹF,]s8_qxNĊJY5hE4H534&hbP3@5STe=?N2k!V.Xr 0@-f؎ѱa5j!gl^"r&OO3ku"\M1dU? Ƚ{'ߜ$ j斟۝8Cu@tCPK #AI aSifۂ̨ D &4 .7i3j/VB#N,y0$0oA.hf1F^ D>ZU'|ixI?n+%RA\uwţf`Ȭ4?2_䃻GyC,W( O Yb|jЅ9rr{IU\,]WVagW°$>wY YuB:hu] gH4r49mwn[Ǟ'p&^82N}3tmޭ\!::iɚV/m@0hBð1(ɹ;gxBqtH߈zn~|EsΉ6s ʟn N }OMW)Ma7̽Tlۅw w^`2KL,$ :W~] "O3MhFF;GwE9)ɩsR*0a3B&P]iu]RK30ԆE/~W?w?yQrƮ-&Iz7)v4YT;3H`7?~BSŬu$92\qfЂ\Og ќWC&.mo4q,U l,p;s,jQṭG,|uX25[5veT @gՑ~yv.(jg@ > ~= 8l΃ cF I6à))JLN̅ {QZr'e\NX"q1s-<+lY⪧5h}&` Kn>c"%ѶCՐ6{*h c,ZN*P9Q&+e[=&MR!gE4S2ۑ+ZLRq[|oh$1aՋuv3KoqP9\LD'/mڝ wMyNRJQäAN&'ե'}0|Vܸ~8+T}T3@3PU2/Eab|O/4Q]ol=MY$76 呾>̹FKHT&jAꬼf;o˼>c@]u,6cӯ/>ח_Ev{_xI0iL}gQ޵ M4D.PUM_wZl9K743a똓Tƈq&OiRik fn$YdGͨ> (\!g ۍ HXV|Wfkr;bcG&P J/$&.V]]b_=[z[t*;astGBM܋H gOW다{:+0f%dk[Iu~dC F{*6m/Og[Y|( AXivX}v葋ACM^ )f=|s9ZɒR\ꋫ9UTs`B}:Yn yyqRs?,]-LGzKlsI1`rk¢zw݇ o#s5wc>,Q63(90/%xjʠCIG{-NELZơ[k{ЌIMޮenEՓQ»Ē# 5,M Ikt.1zB)Lbul.#r®$cO:/YkJ TC1p/ۤOu2&"b0d%TJUkHiv$3Ь"`,kP툠6s'SBي'AƷILKԛg1`E?bۑe3$* xիѣ44?HuuRߏۓ$HCBp{Rut l̽zX3>b-yye;M8MP| 6ػ%K D9@ՠȸ<¼[3ū/ӓ 2rR ~~zҜ93%n2ϑޛ&HƵ^,70$=7(-Ubway=4X`$B;xG#s|)rQqTytN/?jdSո6ѶT¼˿rxI73LoG$HYa1`;s5~{vk):o|htU *&yi`IH:,q,7#kb/p4AwE[\/OOHvK Vjy s-z=O5a[˔u7 HfT:mXƷ甓Q4LN'R1< 9:@!0Re48xjHfC1>mF9f[/i\% `(7t$%Ɵtќ)"@A"w`>}|Bj74aP:HBO*R1"a4/HͯqߓmK9O@Z.:qA305sN!"jD/K- 5t͉oe! N IU v.NLz]o:"}B=&[ [,B ,pelvh65=8n(1^ ͢}۰zch\{7\82ᎦTXC9 %uR'Ƒ>|2b,5 ,QHuSoI>^Y>!Z{,ĝȬ4wZScCn tN֌5NE{v= |y'CL @%̩lRr U}}:P %:qffH2]/i21 VV,P6 Mx#UcnX0aaB2_ٍ̔Lh%~` %?iml guߢSy]X bB`єt7֟o)v8 0Yyr]G8 QYA[tpK@ b4J\3FN(Tf{Mρ өՙfcQdl;yh%@GXMtMTq)rM!NiL9 ) ki.D4˿ #8Z4|P@f4?v- ΅֟ԡtb-x fWPTZI,B(f"A?Հ['pV1f܌%7ɁOww㘏8d2¼B}ϴH%!%Zssk;#9bb1&;n':MNN1[.E:{55Q e,:tz[a-;tؤaO2onÄ]{UINQCzWfWP#'mxbpO~ϙ! ',c;aVtlwE #Ƶ!t5xMh== &/6q ?(e̙W+pR(pq&U( #kziysf;׽77e2 %.#LP35D@tik<;ԡI$\q 6waZFX&)6,'vp.EN>Z@=z|ڝvaaװ= O~p E%X wXqISI! ,`qY's鄺;\kbEjZ\Y9ĕ;ayoG~5K@MR嘄h)5?>;uCG~x?|%~P]#Gwf1# ttY֙pqQ MM0uy2G*KB<-෯>E:5kT{vdÇE1u&h68w?!̶ @g jƜ$tkZ}̭)M-{|)b/*l(rٛ~t_(ʻqqYqF@}ҡm&;]ߟ,s%/g| =s:vlt|h>f6j1ڮ S{?q\mz؞@/P 9 ~$ :0oyWלOO~ ؜mX :i4UNE\f!$L`1mG=:}ƢmCr~!*ts(@@4HOIT693.`o?_$gEK1F xꗮudVCӓޜe6:'|N4VCNIS9-Ϻw?h{7PœAWWqMO'X=c<*A#ӫ~NύfQ0#2~qco|Pn?LE-+v)?/\W4*_~_|q/4Is0˭;U)-^YO³YAab34$4Ygݓ9B0Nٓ5H)~Sy1 Ũ*F-glH s*RDܦMZ\yկRLNGKʩ 4jZSKeѠ{d.ΘYWW~}U:}S%LDD5A!084^NxL.c֐NxeM嬽} iQN.%A2h͢=mXz|Ї -gFPX$1=.6KN"_H%m.J7WD-qEĈ_~~/> _/)\ L3D+iptf9'eD$aR2R)T3h9iЈW?7zJzX{|pFl- .X nڭ_z4NVw@ rAI Qq6#- N>>ѳ<eFv`%GFap~ShVU ~l(i/~__}kiAϞ?|_?_7DL(v{HJ𩪹{@nYYwwW4)aw+;ë]u@Lu>Gy"yJL[jbJV 0i<^V0#yE(qrR|䟞|;U1i  ^^RЉW~g#*1J@[# 3qm3bRj.Dߦ0br S+;odԩQ+8Ŏܠ2)u #XPKcLAS<ޜ<{0}>#JqFDHdz` EcuSVN?<᢬2KNYrr:<. e'w]! LT5S'5"/@Pri5z}쟞?zr(9P&"mDDͩ#uOdk;_-Q__B6Ws Hk?unX}4nf.zb8o W9ɔgu:Tg_J0p%"1 i\/j% 6l:;=<3{Y91 @J`$VGoǿwn}4m A( آ&N]ZP@$ATӥ2 ~/g=P|E|$(=Kj&9V.Sg?7~ˀҮ] ,$(3Vť1Qh SﯭtV{ː4{j v5#`󹒷:J?lcbF+$r- Drfer`%ނZ%"!c?N=UM?:l=_ IDAT onv eU 2%]uhy>tz|<:|g'ߝp'J(`B&LUDeevo瓛?=Y )ƒ&h&CE`rKaD H:|#ÂD$\]5N@y[eaAteL5Tyf'rK 9g]ב4}VN o%LgU9>H'LNmtnNG9 3 fjaJ˙NNǣç6 6A1ndEߑAꄊ[l;y ؼm M_ h|)iNlJoP&-;䦂zFQS̯3y]Eޮ҄i~ZfU!!%1g)0'Zgx0˽Pb.8#bf2.UZfZ<3䝬1\ugY,'ltxAfyΌ `P6c"HxaD ;2,v~z/>ٰʱ*V*"Tk kWWy !R.IC֔-Fy^R KŊ{ąf~cF!ŋD֒dZ}/L|Ǖ"ϠrX8ZME?'a'Ğ+Wi$#aRiy@q.>Fv::yK6e!<\2fgX)3*(d|ݡ0R5Db.qYv?z? o:lZE%eה2_w-j։pXՋ4A) &[bMX뛸uV1KR_͝[MHc 5!+xbƤ:0ͥZ*%6 @~ߝL^TT0s 3@D,)CB,Xզ%_1#,`d"ǦIYqk?_\P̨C hʯܿZ zgwY_玟|wTƕj ՚P{̵ljgG(N+ bB Bxewkl޸i!ȃ_ShZ5D'x<=T:C&'2/Y]@JM$N 03cǣ{g)/fkH+exQ”*tV(fELMbP=Znb|Ox\kEdCGHDŠJe&$zc2 #3esmwW޿{[th  's0 "Z(n;6FHf@ypg_^̤T` hr9;>WLJ6lswޭH Fl!C{B;ۛY] IK/իw)BYL$&E6'(KǶh[GRUnqT )ԡ[o|r&L==:J*h2 !HO"Յ #K-uV܆_UVf/fd2=ӲWpΉH&@J|e~g^C IVgKiq5&4]M!;;4jKf8 ͙([y$@J,wQe嚻Mo”nuuW8@ƤV@ZRWra13%3@ qyrxl>ȪPbX&E3RkQ B gF^ZHfF^s5GNsJgm-oa Zzק'f42V1 j@B\!Ę^f.l[7V5As^(ׁtn .Vnv2)`@-wWba%6Y<9;wo?r]09us+m-C)tT+\#̢OzRoXf'hkˠ]Q"^Z\M>>>kͷR hBƒ䃁 hrG@'4SS)A ʈ~i0 F.~g#Ms5qVb,P`҈ZO.͍*S F`4+ L4<'*`k|?}CX~~,xRl]/ ~@nM)l^P2̉,RLFUiw`18S[IcE3ԭfkv7#O LAOA6n {[Oڤ0m@Y|HMlO&{/O*j,X濶'3^wK+_17*{Uɩ?|xͣog/yQnEF 2#kP;b֖mk謑Ƃnshtj(@oo޹WPE"$j ̠ls鍿drR\V߂N:cslQ,΍ewv6/늖]!G|UE  oS*EoT0 63|必n>{AQqj͵o-E&)\wkuwqgT5 cwBQSD}(_Ypu]W۳iMlu]2NwUHhd OkiO4XYhg?9h()4DFT.c1)0{:+ HoUZ;Wc X^"CxTUiˣLJ9>)17"fF fRMANB3k%//_;&YZDI{NoFBfh迱2ހ߿hZY.5 ~5K/ɄډE-FdF$DFPSS$1F0vgp)<c0u]y%lȖI7EB —/*<}q¶v_R$zM^Q*q?w_= ݩ`dUQZMDHQ{nm]f-C&Y(Vexo YcqLw?çiŇ僀S3539jb7Y -1mÐ`-$뵣[4LV( `jޛqNÿ;,o7F^pPJAg(^Ql㰝?s5|39f"oLb`AJgPճi\USfT PƝJ %_4E-lN9W"H'ˆo޻GwhQַ_5}>0#/dewV'4`5cƱ xyse.<2mRsEPpeW{`weXl1 R"~zKp逅妯~4mdႬjF3 >v8O<;3OSdfOxVpMsOf ļ,1Cv}%Qh̏ o( D~mG?Vv5bFb~NWj#tjrS}0,s wܽb%b!%R>}\xCw7-8MK|'S;bf!-/([@`+^]~Sܥ.nFfw7X< áͶjܪLED#r _?7b㞘H䏴c4S+ qPTg*BjZU5~{wxBplN(DgHadf,b-ȿA`;a:C3fbb%X(3d{/?|r:+ *]2ͺ@% &lA9_8G%ۻWG|̒ek;Jw폞 oYH4(qLo$mwl 85p=HH { ∄g(|QN\]rB'&o7"B5B!d[f2@8>8y6Mу_ȟ" hXX2*(B(`Lę9*vfSh±\[+zX8 (ў?\iOZU& jP%$ؓ,skm.r3R- S;pI9 MEZ'zRY9 'OOOf'OFJyT9c#wqj4^-#pldB"77#w[ӽj;e1.^woc< 7c21]Zr'u1+:Ȉ i[=$˳{oO or7kvGE.48NQ("o[ӥ%tJCk^;'N1ׯqhqu:ey*TȁWO d$b`y'i_$ 7Y&rʪmݼVN=Bo3iպ.cT~r易j2;ٯDDL%L[rg;G=ד>nH3>#&'G?}_}}֏nݼJ\aI /|-iC[9O<77_Z5N}'zYf(PS1s!ygIڈbz6=XO( D̶fjBbȶdz}APS\FdM+ms2⫅و_" !farI5D+C5}p]]sgaݗu0Me #r @*A,1ad- Dq'%F*HE|0PLLGq:*,૊ߢ9gGmж"[k{Ɗrn揆 XA?̅Ϳ^5,p;[[^@R `mꩅDWҖOiŝ431 V踚M`33^^<!K:j<7Mmdllj g`Lf&i.i+oV;F%s~=9(ǼPK`)."QA!@N^ yXIm& O'<:5y7z%WXr BfPu* PH2CP AJgcrpY{+J>QT2C M_ D 55JALYc{fMCDTbShcڟH}y@2сdFۜ`Zve!~tkj㼁,Ujŵf`F2ǿ/U'D;ž9r-YT芥8uF7PHUK[2@R_ptzpJgm^JwYbD v^r"eZMpNxLY@$y'd2dy {1383,,V +0$ IDAT5Op:v~;]X60"vziyٹΌ>C8>HYNww7ӉKtfN:9j|Q hZ/3NqBsL@, ^Ǭ<3㞓I)$D  A֊oFo(:19&&ǷRˆ\QtchT]d2L#1FvqEBA-(@.wC ͆ݭ I;EEp`qC"8F{dO miKB ťldaH#cwMSi%zB+^rt 1Q!Brmr}z/Yv5[ cPkW Y$<`ffQ qe M վEC  f`X|1rl޸Amd)\[3ԝl!Ic^ġa?C('#onj4Tpcghd5_('-S&Mjs@PФ+8V4u :}C]L: 4b/)e.F"nSdY=4.v;a{bK| MYY) lVelw}~_`Cl)an VW+wFbHB6?v?j i &ӨIB6! _^a=i,hKMů$0SeFLڱ3 J RZ 唌 UT5|9x\/ZJd U7%7,t(-!PakGga4 'q jmdQ}2m6WW!jAI/) Ρ{4R+W5 "e^T&0c .z)ݲ-o4`PК8KŇe PPVf넬ұDm6^j᥄s%5ѝ'e¨ꮃ.u!o9GKfyj%%fHB5эyD'D|U# +wBԘSi;`j|>B!F^Q\%1|`P:@V;?\ q/8[lTo#m+<tmmeL 2هݟ/p0zzjis*5ds+iqx]uI9{̦\hcY$#]) `AUVX ]_i(L,˲>˲x65Њsdݽu[94gۛ/{&(XKtN-H*3a dd)T$':~qfC_F$̹:Y~ 7$Lk܈@ 81D 1H/E`B0cVNgT̒>c. RO=% ̂*jhK3MSEa2JBǷy{>%1s좉,Y@k֖e?nNX6 c}ky1>\K/YвMQ-ma+rGhUk3c/78?*z6ϮQzԤȗ:98z d`CT2* `sv4Ƿh&c5Dl!QrB\Y̭}Aq8ͯ"SG} Κ~9'5qrfiԽDM#΄ڎM|enG=QBhIԵf\c=X儺͠)BI`b6-mPzh/öt):FgݖAJ(;4hC)IȌEinɦfH|!=v^} rB%pV~o ˚hTH4&NµoY05 xN:#TQ+6l/n\]TM!!cUԺYj  +z8~92VW~IԽ9hNX7u,P/N rf Y,OsfP HJA$9M@4;{2Ĩ)u7ޓ F$?cK”~Z6jH26o˲|zhGE  K+fβLg4"5C-,q^_Cko;k[2e!6z͗~yr,V~~:rDfs<#VNx4OrdHHϖglvJ;abبL+őVlgֵ;e!+%iKxE_'o#h}GJ\3]0:<"XaVUK7uXm@wsܛ~YrAIu(~|UJknݿ+hvN*x-n%KT9J_Bd'Cm.b-[cq`l^2ЮV^h^"L6jt.\VƇ7~mO3%(xQ3 Tmt<ъ,~ %z%2CÓgq:{80YAYvn'g1SI;doɣgw6Hr'Lf#vw~2\w /Gӑs ;%U:J⽢9DZ ^ۈΪ tj%hT,1~w2x*4TXXlJ;1 E] ,R͛h%2DffZz|@f9bO@L P 2"0ZW?/Ku3+(Z RfGyzaa 3`FDeWnox6.5}pJ,gNAPKi%*ڔ&ld})b^Rteu-/W͌}O)e ,:-Ԙ}t;}㐳1-‰Uq ZCIKTc],aakĹf lr\%v6H^Dq$,LLd)L$ho)A'+4@c\1"%3Z{}p?x1aʗ _ #xb:UvRT4T"L@1??_xG'_HF.gU5##qACYL;)T;W*Q+kTp/U( (T*-}kjڻ|;MTe 0$Ea 7:F;,՜uD(qPP`|v~r?9ukh5 /MZ#qntr93e-  9⛼ؗao]&no'eއ0s.5Mu Q B֕$[.>lNIQfǕ?Ù:% aΜt$^Rxv!& B mjR#qbGAQ)eosgAڥzhZo#&yY~:]lYuZi0d0,bLt] ]ϑ+xYҌgɚ^'0S-yEBBY&@#mv:-MmEǘT2wy]ܻ"Roi*lkRSmd1`^ ^AreY>;N/`dTC(8RI6%L^ w}TXra>bi(ڡcqn%ʐ Jލ3Z䛮O")țBDȄx߹~>OvNy&2c@qYj\q(P榵,_HLJp LO}{t?~=M,r~f8f<@ N_ڒ}:1+P\u[i"~I>ZV4po>L[ p2W\~jb#AB$j{ P:eiw?n n]\]@h=-&4!:‘6/#wօ5{0j$X]'15Z2Wώ_v>Gr}(/KI U"~a00SqUF0Y]J'>>ɕ`] o96P4X?/KuF@z#n-2p%W]A180fn ߹>w9oeSuJzϓK=k4@9X2|oc#by#%1C44Fx$44ϝdS$ՏbH J{-zFQ$I[e-UHa3(Y00(ܾ~>-w;Àh]ooc/'A.bq`ͷ)&0i{^StI"xDSEIePw6"#@0l&dB0RiM $ދ2oeK۹EzIX&t8WDl07\N7{7ow6ܭz\OyA+uOqm |!ɷK5GҲh:/~ "6 1J.Gw0dKQbXTCK˗qugīVJ">[>*ȘUo^/ y i#a|ɜlRb7Quk֧7qcpoX9=l &h;NK\(UiRh@DLdj/WZ@wF_(4Vg6DR]O#WƋ|n,؍bTrwmHCxs"+aRjdN|uz[?VCGdkx_t\RZ_`uJE̺ (־zk=P! L,L蕀D(քl RhŬ]~k!z)Z28LI1ȻB5u0o@5caL5I*HX)@x@MYҚmXw}PGKګ3DswOnk?`+卥 *QgگyT\k̓ehsuG-O11 y糍p8?]5QnL-Xդ0*"PvGc뙻 օKm`pP #:o^ۡ&c I9gBP;hf~6V!CeRqo#W%pTMC`θ 8)zXݿZ-2萹eνҗҸȿE]DX =!d^?=<ԗR)P!FBN!(s)&O)sG¨6f8^;?H$uh}3!GI2L,9cd U<]""+ @7Ѫՠ df%*##ܟ?Gd=Z b纄bq^1=ѩN}:BiUFQ jD%+F=F&B,`#֢x`qo/ K-s7n(!yGe8Xώo{v^)6,D!ҡZRl H:tdi[bȗ-):aL-;- LM8t צ%ȇpH L"D}}N5 (#"O"Mo=Xw6~]p Gms Jh"lHGpksۓVߙPgռHv XĩE7zČ&5bdZKշHBx{Q #.r} }%Ɨe5ybeEZC2zCYSLXrKg?ykvwFfXpnw~RSp P# hV{kx94FLڀ Z8v i̥Eb76Xmw3#k'k"P`z~vq:& ͙1Qmޫ:gFUME8s f:fowc֣aþ[/hdw~?ly0 ErUk -XޜJJZ-R<65?~s7%nԊXb܇B[؋&1 qYQ@ ,JH |J{2칕X!dNXHX:n 伜p!ʈ8ŅQꉽi(02r3u5gQBXRW뤍^a ; d*<#LW} Ajbw_ÙF6 !IDATn◍ DDHI/=7P$ W4oE9e}Yd]b Q$yR|xzg rW}W=5=yJp"pN1k3mwx{߼⇓fͱ b 3 }DFoJI0q$d5%bs6L/`!fo 208?Q-D'N 򊦴i9)FY٨T4_}NeZwGݐ\ERD*E^)]cY֕p!A Gxia\yd'O~ZO̠`9(1%3q,GY AD &L[1?'x4A{ԍ^?rڛ^g1fi畽>:ۃÂaPٌRYjDR5¾ ^iz"`SS6d3!2eotlRo13 TA"49X&7ƫ!,3qH `DFkÍ^1\꘹ȮIKrXJn{45ʙMN.^~o*VKJmޫ2)wC]Yl?+f߭ejA<-w<2J%ī!hvDRnb|ce& }J5 (0ߑiژzbL̋"^5d ftb}'$PH)^3L7(x9$me ,B^s^gX]w?l n e5Yh`6-WٙmVx-8aw ZR  )YNql= 3eOO?~g`S*TM1g 3KilD"R$à -9n1"sXm1^u;jIq$xԧ)DLdlUP븿>yt[hס/Ӣj_ 'M;OP%Àt3pn8XSqLzX,-!CXMDPpÝ{;^??՘ld>3nɱ_Mx)`mݝn}c%6܄7sPiHx '?ok{@H3d|Gl ww =:ѐMIAXP^}E/7*o] [n+'h%32t,cas ';w|*r'OC86$],q] ]W|1 d}dF;w:($Y"R bc:~7ϫϿyyXr'h.ݽvkgmjoAAC"dcmTzmɫ[WŸ*WlbĎXYa=Z\dq.ÌrV4\-x#;x bI 9%a A@K]YrK ȕu@^lTf㶾Beeg`s Ek%X`GqؙyWݍ;k{+[ŭNvGUׁ5oE޺R~2W.@ ")>$U!S8BP۽nO}7&UOU *CH@- @`S_ Nw іHuOnƤjKqV +EA2&(f{nv;|ջ XDŽ<ż\ xlZ?}Z>()ݵo`xSN`Ar8 HkX]yՠuO5+o] tTqmBr5jB88ãٳgɟ9󬜰Ezo f"71Re.33"{ ,j, iȝĝ'HiXUD[+q v P-3'R Me@<[v{}22hcс pH :7޿jCյ4|Т*YQM b4djqk-f:-O~{zq/:'eeԓBDͼe8C >@{3k e{AtҤ?,b7hӆ+)- ͭ$S|76(gr:/>~Fn+C!eץFO|67ý^oJNC~Hp Ėp, .g|]OJfO~6y/@ЈZXs'"ff=F5{fP0/\vor"exaͨ)Vz;;{;wn-؇Fqij6W6wvF8[7#8nǻ尽yvB]:s= 5 oe0=x}^xyC58d}BDVc=$P3Sc.%Nxi7 0JrP@0Cf倚g zZ TD [GIKɲfqɑ(,txfH!.C_ AF~*MB4JZ[Y鼲r?=Ǐ{U3ڤVnLl$P ?XmB"xSvI=~~lk'V *-/. 3߈#9ho}xGum9 _-nL hQB7ZJ h ȼ8^-oghnCfN! `\)eGhwo}iyzQO Lc.&b3\bB*h;6FrV z}ϐ%M-2kGMGГy}oc|w{[gc ƘcYX5żR O [g _v6 Q<[Ƿ%ϏΟx1yr' jOu Ė@Y=u Bذ[p.fd$iʂfF@nxytk! ;hL%`MzAQ'oh`^: IuBQ5Gs5F h0MICf ʗw/>-~V[Y9^Y @} IƠVpS6+pu44u;nilL&dHYww0o9V%$#D"E蝘g{,%SxO.psMU O1\}'!G\70hG^DYYc̟<9z<8~9z~̪f~Q#v1T-Qh(4-чA~tY: #F&lšg~xwýO> @#X{qI]3.)!{\na) 9z٣X an]ԈI\ l0fY&ItVOfx:?}h벩+< , Rd)MxGc~qRtArEC3JĀy&FXEzw^{x{`m8BJɗAW՗fra\± 9yv΄h˻4 @e5OAAu8وJr[ o4Մp~į*DRڮ8r` Ywýۿv-% Djq]tv_ !%XDM@jbI)aW:hU= ;AEZ8vh˷i#t1UyӋdx|^.O夬i9mLs 2^+|HJ̇MXB#N?*ä!B5S9#v?7U`a(_洝ɺP_Z% z(zQj*o9(aԐT `|*1IrIaX&k*o0 ۫h|Vɬ9l~6e=/|2ͼjT 3p5D!@ / {FE5ʴ✋ރ_ Bs%j6R}JJX!B睠Mx9Ņoyo|BK9txPgmX&36ud4pf~/Kh9fwV5f~RaѨiՔHUUMEQ-9gbb',ƀ L )+xpk|pyoko0z~gdqZ&t~,];uCPBR,Y&@ KšEoW ]hsBL$?znI9}FM!c"=jC15Ur N*+gYU/t6QxU-yU hU ]` a\\R0e0z.lm9pk}m }p(:ײO)AR=CnHyM+Fʛo.)S` ЉIENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-vokal_interactive.png000066400000000000000000000544361263353514300257170ustar00rootroot00000000000000PNG  IHDRXXftEXtSoftwareAdobe ImageReadyqe<XIDATxUE`؍c8c8*vc}bb݊X((6b+{ {={9箳c&&M$)]@@@,,,``_Bf%՚MF[6ӄviBc|@cƯ?ji&~z~&L3 (jӰħƜj̮1BOߝ|"K15{ٯ#}b j]`QdhAqN5擥9i7> TcO$ef f,ᰥE.-Ƽ>ZRfLh|0E`kIR>BvlfxSc5Ɠ`$XJc 5XTtMl5 >Q[[Vc.rٲJK$X 4XE3x-+1@ܬg$X uŕGeIOj n@FCJ">4ݲ}\i<', -}1KՂnAlf7]`e3_46XOܬ8OW PHVwjK-P k<]`l>BzG4xX2 0-KP`kK+̔mHHXOۨƚthVIJ~NHHe5U-kݣG  "JcgC4;|WZ "BI-*[lղӇkHw `Xr7Tm P,VRa_5;q ¶٪5@!X]5^+P@(U4Hm8r4^ B(MkE4F+ `^qV+@m v(C5%(`hvF].}2cM( ۴~F's5 P|bՙqoOw .(P\WkM7+&$XhPkLW`+<\ai75+A*|^cCHV ,ƫ*ͣP ͪƲtFsK$X|Y$=Ya~lixqh؛S?;RmˮY{nHeH4Yh_5~ɑJK4h&i{$XmZڇV5:<ϹeK)]}O,Ƿ>'Q`M(j3a]-I<IH2=W*A@O'P\f`3_ kt bjutl )҇e{[{WcI֢C%^?0 5\ V)` hO>o5_/[1+itw݃,U$`& OmGqRfX\W+) /'2P}dsh [Jk.tYhH^!$*(;ѓn@#U5߳W*nZ[}[5?F$XErt*`{i<*>V*fw2lEq5z?$XEpƮtfb@G}b>]YrO6ӒnAPt V.8n4~o`z.Aʬ`-'nE4t V8ne} I;Ԗ%N7`ƞh{L8p݋vmʖ\Pl"nqIܲjۈ;u >QS" V^;Tqeblvw $Xy _7ݏfnx\8,Q $XYk".R4nxH+ V65;Ʋ Vf؊n(+/t0O;J /χL\qP4tPwj|A}e $Xi;Pn4xj2n S;n J{n(47w @ +ؚ(5 $XIo 7ѯ*@lXreZ64Qk$X$X{ J?X+c3I~0:aT7'_x柗i| nKT.tEОX!Tj=97QtGli+Id3P6+5 ݓ/4wKZ>]S+`{-h:\Uz'jU4^uc=](6D'T\7enr i,BWiW Vl]-k$W;r>,v|]S|e;+|n8ѲZwhf_%"߈Fnfjw[O&fK|biQ'e8O+]sfǐ``<}*\\qt lfXYܞ)'?𜸒$/!Nv-v+pN$X$X4{5ZiYW4xLc_p=v _v`/ V  GcK ;+Ʀ+ЄnA#^g5 0Dkq,]^OU[55 ;n>y?X2+ $A<񀸍1n٭v<-r}$X%Xi\?uV#`-f^-[5:~"W[~Gd!$X$XKGrLzu~9N8m-'.W56vJjqw-ͪ`E`*D em'$XJl:p߉kR~Pbd{Ѹ,?ggw$XIzF),+G7}4fָDĒ~VVŮzjXHʑ` ŒKRm꫒~v0j^v̖mgdI#]$WlD $W5us;ѫɕ:Q1H G[2+z6*ώyCZ>eG\-Me;QdՏrd_(n֘}oۇ֜aN޾_ )%Bۀ݃pU~ؿdߗUV?^c%H@r-ΦqDϙĭ .*I$WUps(hh3qׄ\i%.-WniA"b\Po3XKi h hKfe3NZih e|?ahW{Xؐl?aḭAy' иaqHǕ)*$Wfʷ,Ar]^a$W@j1[Fgښt8lTf:OHs|K>*z0]:]I^)cUϥBm,ENlx ($e8T}ɰV2}3eZWc}$n`'O6g8R4.-O 4]SvE&`} |b=C ͬ[! =l+n3SQXDܬf A$W,z'Wv$rqcIqp)L]4`8Ŷ Hf֑el)NU~Q秸9')kxC8G0`0u*L]&]+ۿ`Sħ\ѳCXA?R e,7P@G:3fun.`.ۣ5`nj aEPW3xn_ɕm`HY+ EmhJm˖c+bX"'XvBӳ*ĕb(c7fTƕI97A]5+j㋼DXs fJGO p j$u(~WżH5"[F\E2 ۼwHq~ (Y?ylcƗ ޓ_4~w|؆C̮M76NnZkqKHxq%]:2,Qx_c'W f;C7SSXJqK ~kmfG'7'H6k``l g?j|Ā> ?MIx[~܊ھ s)slvNjlFE'٦c Vel7a fI~&"|63f6N.瓮} O°d7qSlk]6wڜ+ 4P{;CpٲUL\lK\HԩOl6vetMldq3k瓬< Vzh 5VΖaDf;k lohA~ް٭esM `RM`%N5'-ɬgBgo_{@}qQoi ~ ])[V\JL}ƮtK^?O>-@[m TCk+!1Z GW,lϔzN-!<á]ە)K%9 mu T6 y9 V2W)66=KڹU3e{]/d {iAhmeFdǶ]l-@G +&`/>MN ׸S(+QG4^ *-,o[ꨞw!]Px; !' EӸ6ODhH^K^穱4tItfuKRevW6TVL׶t| XX#{sBũi-.46h0$NڒX'k#ѓŖ}vy{plfʖZt*dE|mVk{ъ.Ii+6*¶]gX89imX=o5.=71VrfqȮR FF褼א7_ߟc,V,Y?']9b'F>{ӿy6pPi=:6`b(zYI*c{ Ѻn%m+h':[5ڥHNJgĕ@J3EGHrvP }_Od(DvV=ql[j(תJSm?4p\lPپx/m4{q۾*j+]k hvV~=4d #'e-mOj,{h?^q0YXih&TrLF>nV?&жŲ-IvDڎr3[SdkabV؊`&"["ڶuN'W'\Uk%]6{mK*b-#$#*&i BH3Xvi)жYpJ04lOIS@,i8QcW"eW- xmy,H3X,`?hre'jPP @ܲ֞+9Vw44/k.9 2-@XR»ށּ'Δ]tƋt0v8̿.f;f x} JA2w +sJɕe}jl߂XErL{;[\x O}֮1?F0eI0)_/m%6YW';msP-ǜ1']1Isu O0 ;K!yi7% mmF7ɮ n'c:/oklPl y7 +`[ܵ<~7[J֯G:s;`^2uq{{Zhk&kGL7g vVeJXH8Fܥ-XzQ mE綊x8#Bvs%\;<,6t;;oS+n}~]Qv>a'Mm߉Z" dS||gl9[IӞ!n` VH|q{ϢL߫_ `8vj2#di%"'\߈[:~M+<5*b3}4+ ᪴%%6V -rnSDuGq-#ٔtLrβ6査 Hթf˔%xl{tLɮ/YjYYqIz`l :j Kضa]qߦOKOvV–[jbֶln>DW'9V~@_0%B;/w/ԺՔ!Ohl#nY#9I7#mF<1O_5oE`Z ~%{HXW*~E+a} bdˉ+Ce%_'-Naק"W6'vIyh{֌(2vH}]&~l 6,x ŝ+s26x[rF#NĿf&,t8q`7a(njBI?GeZl3&Q +rϿ6-ho?*͊\?/]jSݱ;SjQe3rG~ovG*}Kއ*M2)g>ʝS4NkLwH\"RkXuU-͘s0rScw 5j_W=ޖ-7^mcKTi53x|bJr5]|af ?]m/~ fc=YrjmJj3vٴ[7hK OʴWntSaLl͌,n.$fMVj_ez6MiОefך,c( |?h%nXKȁՈ[ # =nZSW۪rkHMP`f>)p2{(qH@v]~[B޳Z4;, >b6 R6G7 TVÖPWqw\\}+t.xreI5$W(ղy(=@FY|N6%f®M vg+%aufgHQ0vsnؼ߇]@:~(ldDy{7fqWXD 6c8Q"V)ޖ|_UBߍDlš~#Ÿ<+nzɕ-[IPBaܮ͛{}2h@II ˃Gx+D>[7khw %E_<%Bal -1aDĬ8~C n+k7A߈[&$WWp&W6ulU\.^.ec|ۯdQ4zLbO?.P-|ꥀ!04Imo3|CjgL¸E"PR3@Cl/oھ@mzOB66զ 'woK4Z3t@ ]=@(?+nQڃ!U,[ߨ@ɕ]jW\MrTN_ExJcI:x[EJ6`cKۻ:!pOaD.H{7i|4ʵmj1[cУ Vxp 5vw >tlj qYF-sDUT'fU{{5'RO8m=S܅ш[EGH6fqwYܽS[2d@l_Kko,H#ZqjzX-2 +k|qH|ķu,C%]-teW-89 A=6 V9; cdR)fw1YX* 8GK]n>N+pMSxO cC ]sƝ-mVc>b^ ,`+5뢀gi7 |h|'|zr\,˞RS=^!Z@\&pڊ;rAl{FbғLUNk mVppPtU s8U5^dj ֪K6g6+Sc$Tz6HY,ܾR*H3WM\yƒCқW$$X=mrG9ܩQ.h|B;ex=c(D<%`d].J4|~V3Z/<5X]g5J­fQX9ϓVî%D^Yh-V _MI0,_\%v 8'ZiZ؃U2T$X6,_*kqxKܥ[*.8n~2 k!ht9ǰ"Vok6@ vӸ-[c8*Uoa%Z~/%TYJ_ޘV@Ӹ/iwkt {))|]$p&T` n|.R{!{&li&t- RI4ۏض&W`qKv |VyenИ-heu,,{06)ߵD@6$A?U[a;m*+7PH\hu_иc] 66cEԥ{ 㲀Ȏ???}1Qc.dY.P}&&M/4kV5v@ X8a„zQ{V@{j,NB)Hl @,V"!I,,N̟E5? "\ R3HWi}MgLD3L76j&Xѿ B`C5꺜&X_%Lҿ BV`-IY9H:%@Z\(2Y_7v VmL fH_@* 2mrU*{H@&I'Xү bI5A+MEhde۬+X3%`Y֚~h©;xb@ wTX3 0yUYR ּ'=X U`?&kDՂ `2ˉUIՆ `Y|nTse3X-O V"{l- 0$j%LD`N5'X-}&"`{x$j v%:X2 jM$7Uf.HJf'20QE!h'KiљJccĭ,]OD*$W,"Mh\q73;O^O-:t}|*l[+$T0Tm5ӸjZ4Jc!t#P kz )Ύ՘C,k I7i̭qg _c٬t'PhNj[^]8m/rה.@,!%w\g&>?v)N,I'DI_c7(}4Knq-݋5x Y:I B2׫m~H7#%jY ,glv Hg{>?ۑp`u~I'jGc끠84ǽG*^IeK.ҟ~5Zc_6}Gly$,c z>Ƕ"<3H0jpa% @5m9S@k[O$`Nܱ#ڜ*uƈ ÀI$XD ;Ux+CiKhG; &X`Yr&wTc  s! Ϯ$CDflUZ)v|1;EڱƬ bEFRI5L e5-v 5N -$h$TݾKv@ f7b8車B֕$XÈSaH6`n^ BL5Z<  v{nthϰ  BVP{z 7ip~-kϐ a%rOԨƅ=# Qv}T7i_MH¶{Ԟ 42,@"FKX[؊aA ,'jpT 'r|`H- ~H[4XD`'bM/ =iİ5/ny0}ANJ'RkJ$ekԞ53,@Uloڳ RTѾJ,.WHmxP{X*cEFҖ4gHI&XH-,$ɦ/ =4aXFyFIP\цaAF'`z)fԞc42,@B=Hcc!ة4t~sCTd7i˂2$ȀUTi#0)hqY@+t.aXzYbuZ@V 2`W'`}C"%6Ra};6bHa5ؘkp m{X*igpjYzҿؘ)j!n?h\ðqT@ 2Tj3Xa - K+Iޥ_X4,a]^ ɮ¹7{'`}I"4=kʰOA}ظܿWY"nIG"뉻~#V;; 7bHQ74+5!'_dKiH{vǰ B%˓?2,ȉa0aB1OR1}4 ӸaAd}w@ 9j f4 -~P(\z5zX!AFI#JV56ETVk M5.-Kj͐ gC`qy2'D mY 54=ۄ.tmX!A5k[c@UFHқҖemB0<6xJ#'!*@9%tyNo`%_*.Bq CMiq3$ZoAjꉼA?#GhH[pCPW8!A@liTcA5 ֧3rҩB!0!A [ m@`Ĵ3rCلkbHPpi<H[Nj,>#7UiBDсe><S|E5~F B:at4u VPA~e`)¯k`9 k#! ƃu@LTAf͚ǶV@XA?3$(i|@[Vx!A`W GM|o䪀bX1$(CI E\U#.am2?!Aָ1ئjQ 7/ui 1$xic8!A઺q92Q0$Uk@;Zkp[mU%4 =,"4Oi -v 7F,Oմ}~G{Җ2$H(D6ؗ@oRIb]!ltGTa@rVh+Dq '-Nj;۫x Cqj m. ja- {0} C[hp@V>3»%Y*U/litbX11 a,50C &LPMk|p }i1$Ș~:2!B ^5zG)ܮq C YR[ZcOSSZb4g{~dH~hG{ g&h7Llg]@Se-V n4 ;(a[iK?{Poh62( {32/3(>} R`f/c8PPhw。i/dI--wdHPPoX B:dޣ tq5-p Zht=M.12X!w$Nu sz.FW+w.Mj ˄(l@bfHPN!B=/ I*x`Ni˹2$]VA) T+{I-vw%P$--iΐ I[47#;CH)"Th'VNaHPIPt$PhSi˩I>ډ@q7!`=ø? -2m:R%bR_(6ؠ$+v"\8(\{p$1B96Ðiilp$FI&8,م 13?$A%b'DŽ`=^ݗ!A6^+$XRuc#4:3N(0,a'rC^qimk̢y 7>l{K6@;Q>֕\բi 8B 3(v, Jɤ` +zGs%C5zqKc+%ܤ`MdbPh jpDkyq)iq{[3(Mܶk/D('и)$WJꡙ%WH+BIqL mӍ?0$QЎ}5`8PREZ"4oi,͸$V+`w~ G4֑/s&niÁU㫙Ж P& +Ra8'jJ;HPV֗\"n %ƉŖ 1$6\\YScs%hZ_8%BBJdEqv3m*_={-yC\H; :_¸+# %WH;Cɬ,|e8JfC8zY4^"4vÂ#JfUh9(~ӯN 6g8Pr4>n/DhX&D]H;Γ0Nv\$W#$W"qD 83;CRh_K؈@OX"4ve1%Ƌ@qQLV@۰ JnӃVC^"4lvGY]H;dc G!@re#B$4EV/&.EY-qv m?8ƈ[i3]YX =_1(.J&0@ 2'Xv$X(4vs8@dli,0JZY¸$H]}#yQC}[/~I9m "Sm Wr|Q¸ TCH'BFI"u-oD`GhǓ3Fぜ۰@lݯY?hKf6s0(F܎VtcH2gKh|cX*FzQ*EZ"4VE qqFasre'B%SM^aŝ,W3[X 4e(kz༖xB -}s;fxO3C1~?ɱ FƢ "ƂED8 o¥? YWɕ9 y`YS_+}vb8R3@ܩX ";hMb@n@e(9fߞP,Cq<" cs EsrՖL`%O "\؜ GEָ>6 01!v^Ў4^c8|jPV};Fk CD^V۱ LYrS1}giAH _8Ӏ+Ӈ >f IH_8 6:oq;Lf3e]* FvJ0Q8Ug'\*:`{6.#n+#DjR@;l9`C^X!6ة] `gLg&_<Yʛ] 1l'\2`Mn۱!ZV㭜` #r|ŝ|zQx`MHN3!OjyGhs\S*Ef"by^!RkslByGy w_gY=`g8"f7X(mv??jN 0 LjQ,cWHjN)M̱ ilSl?d1`y~!bh@;.>$jg+`:d\բh3XƦ<1z)6qMؾs|ŝ;0mj~Xf̩<Khõו7K+H霖GrU"&X/7w V+7ن/Kؿ\90h.YPq<5^ȹ V][vЂ~Ҳy=xLKfP|,6 H%sGU-BCĖw8H tGrF/tN.jË`0y k~hIqGyz[ӳBC<9;vom_]jk^eI)g%jgʒ`uwoX;Ml֏91 g7<Sj_:*q`R!bg4. v9: !%W( _bfߑs8/>&ބix-.}kx~7ϑslvh`}thɕ)0CKjQ9 4 ?hOX)0k4ʶDhlS8WDn'[rnI'Vu1ɯU&09KYm@.ј+6j@}r{<-[J'ުq'YDTxp a5nm6otޖ^{W%)Tؒ/"ƍ9;:Ƿ 482_Q whX"bN9y'?"\e'WhZFdCڑRS=m%t>Oyp%r bO~9?2e+kSoD8s[bg͹ Z㝐creXfw-L05Ko9a 2xҜ=?0Oŭ,R3հiFcpdS9zx\uگHU-bJޓpyPKmL_lߕ<̀ؒ|M#\lqDήs~*&:Sܵ`u){ 7p܁m_ yMܭ I 9}Ok >9.I2?xѺ[>w;K}O+`vؾ馑-Yq$ݾ֡9~/gk, @)] LßDE\sd5~k/ O%`:LC YC9^8%5؆MU^slP߇`:X$Ԫ,ɻx-|O'CrF|+N3XSئx= rV6FF<8{L>4[kQ^L̇9a1q6?퓜\>%xYMŲ|3,NmG7 rv㊜`lsi\+`) *KE{\*{rHNme#xӱ".gt@l>OcxƊ9X 0++ %)n+K ^*|]z\=@+f&غG܆T-!̩MH* K3g˄7Alphbvq A(kviLA2,&ϊK7 rWi{+s0˞\Ղ=.d4ʹ TݡcN#<Fh,KٿQ gV5zBĖx3_EcSn< VwX"LϏ%@^*|I0.0]bIjAUNIZU$j@hlSMtCX"lS }[htWlu6Nmcك[4vuHZsn 0XՈdVv`ZIIT((`Ugnqv)H٩K#ni= Lfg+[46K%9$Xճ Բi)8hL7T%>t"2`>qK0t9t"uF}/$W$W#JM@7 B]5.. ' /jlI7Ԏ%d=!݀Yr@A۾ƻb?`0 H.KFa0@W 2Vނu!qK-6Dn}'醙d,>1@dlpւ #J Vz7 ĤcЎop!rv]tC:X"LM>N7 2;ihVx!BCF_a.`ec+{DdFw 1F7;R|!%lئD`\!r'\e+;iB7 "=4 =;|t32Iܕ@,{{ؘ@8n *k4[k&jѽыa@qt V /݀LN>aBf{ $XZc7YJK=S~6mC;DAr ;D|l V;bv(U #uT5OcYR@иnHFo 6&tb|xDig5>-3NcNqˍjl,Lut  @gq}k:m'a%" >ɚTfsIw-|JW0Q`s%5ޢ+3=$X ] ,TNJi0k$ $X nY9R}8`OzkK7@ilL7`!yg W@NDULkj hNW@q=ݐ Ƨs] (v^iB&X,' P.#]dNrUP$X:PO# ,k/(+4z[D\6W# ]sF_!,lrX_c ]Q%򱍑 iOW@; NrU2$X嵥ƉtFe4Faپl  cQqI z(waXV*rF'8`; 56wb`0Nsj<"]Jc#7bbJ;5!3XqF{!jF^q%~LWĝ`D3FtT"H`ŸuwabtTj[m-X 3XHŅ P;4&Ÿ1X4zcvwR% 0Xc^ ʶQt  juX? BwV_@w Mt*,Tfݭ1?]~U."NBloVW3 %fUs\`V ]$^Y`!/5zh-2CrZ1$wt't BZUC@75I$,%E4W7Bt)aiE\%] 0c DP-.C4X i#BVlOVO 4F2Kh;@E4ĮW\ɇt0-%v fWxH:{HHDBkKPrOj, ``ik-+bj%(I>E KKdmĊ>q}L@j5qX@>ɔ%Uvu E@,P_k3Y ([J+z6X;]xDQDž? Dp'D5F\]*KhK$X\5]z|Ot @akM5XL+C5'R4^77 L$X@XKc)q3]+[VlBהWok<1DYq3V5@a]5VXPlPML=;NC 95Vk9tCjO,~F`rٲb'qP{'\bxr[OjrŤ 6Gq5:htYcS<}+,?'Tԛ"H-9 |ea3_䫝 iZ^'@}蓦L2L 6>⓰Y>k$JN47;~J4V-YA'5~4I-}{RQ: (a5 HHH@@@,,[IENDB`django-rest-framework-3.3.2/docs/img/sponsors/1-wiredrive.png000066400000000000000000000176221263353514300242020ustar00rootroot00000000000000PNG  IHDR,,y}utEXtSoftwareAdobe ImageReadyqe<siTXtXML:com.adobe.xmp !IDATx Uy7(,I<DF!M'ILZ[:NHcL21M#N+m[4WEVFM4a}~f/Yko}[Vnp3?ib5fK8xZ+OZFe>MK X?`͌i,A@@,@, ,  @@,@, ,  @@ @@,@, ,  @@,Ch5̟<9t3{p;w{ˆ3j{e64Եr~~@ST Ң㜅3Ǧ&PIh=zz`Uߝ3E2ُxUGZ:w+VE[RQY[z] 0r^m5YZ6qyjBiV.@ wgT¢ #\w݁VP\v;Lw`IUŗUY ,RJ,+8!dmI_ob/e(ۮDh0)=([.!:;׾̖,,( bp?#`t\׺."`AbCCx(/SPӂ y,,@J#ZXZ V XuD"Э#V X,oKXŗ#:F T0Y8`A$T+YXl(^ÄV)J܋\rYałiHT-A5P5xV53@BUƲTTV}"0ʥI{0ky߇u{SqFw:&~%TpM*69{pgάK֚^nDK 'ݟTVErAYuLZTAS[vi2m-E39t9œv>Oq#7[pliXd!TM%Y66=P,,%lZ/X3Za9J$\kz"9rmO#X`j`I\>:VU/ } ;T2Ѭ8mw_W+|"r{s-DcqnB-ּ;?JqfT ޻slwȮ`8pZ2ؖ\CL啵rXƳeqUyDRm'ep g-ݎ`^@9]êZX J'v52[%k JȒ9ŰڪĊ`%\Gװ<֖b[eߐ`%`Lu T [[e?xL$Da^úeeۊrV(\4'w3l w k^ EaD ?[c<`aaخcRdʰ'T[rP2)YVL̟1aF 7N`j{Y׾ (ehA Xq\iiRDVcXi'o'6X`!V1?"o'Z1`0K;EU0,zVT ՀӋӀ x{'gF Vj,[]C,(\t)Zde!XUsp˾\7bYvb:DZ(o:t ݸ6;ww ա&t\zVh 'G)e%N*SwqVV{Xwh1*ITGP.1//iEL,+3TUݵ/5=s5=v+K'8RˠJXCr<+ c^VB$Tu>+z=JGF0Թle>($yXYRiQ2ĵvUJ *+HTrX(`< (VEB2TʸH+w;YX1w,\.YUd> WN\/㉶! <2J ,+!eucj#+ZYn =~!TXV`dȂmƋc!X* uf^!9,,P+Wɲ*C}P+,ȱ[5^IZX㱰BL^jw6uddO"Ve=V .ǔR€+_ll6A +]D *\B+߽,maCs=./"V2BJbWXWPUղ{"RvYVfR/҃}{_;O"Xv(ªG*/X*ᰈd(ϪV@,+VLUs=]p }GY Aw@4蕹N2hJXWnѶ{:cݗ,eS*!X^PȢ8{7տ:aEԴR JuHu)Sq$1EySR)whoB>`FWW $-q{{Q*KJ/GI-`;Vu[I b!UvlIAV%| K[7) LI V(WF(m!r? x]|=\.D*J$VKˁgo[@r,/A^%|,-r `);!C:_bʪ.+yH=\He4g7gL{n @}ݭV[fe2(8Y[Av\tm*ف;׾let'e?g,Z[QVU%ϕ鎹gVq+2MkXӳQP"kg|W<+ P'MĊ=6덌A]+7Y|޻c$48-YyC$ZYŝb`'TDہUX3m(IX!VI\l)K\K( :~ok) y5*$a5Pʜ-4@WfU\y$2_|\ UsuoՂC#Z٢ĪJ^M!G-P9ź{f"P˦i֜N(ŗQ^ zk_.X I)QzT{-e4z*pUU4zLLEΈPꬺis͌qCg{:/qu{׹'{ZݽWOr̝9}_~HaO8WNރ[¢'~zob߿fJk+@ru|7[o{ovgWwŮVu[??Euze`fEy&t㚶Uh~W0i>Mm$i;޿Df8twO}F,3ln+["XM:˚i+Lݰ,9w%l3qL[ ]ܟp ;?0ӵ.͢=ɪ2V=k&(S7;_\P]`Ov{끗kщ]o AۥQϛO[,>̺`s?Rfgvrv8~'']ז 970 lcbUT_#X>6<":dw 8uY o $ӆbg+ 4~~q g?%AٍV,X,˙9VhS{EAl`y|b$AcȾF h4[y΄FDrL7  V?_=|3WO-|nTP:@Ņ L3s yIx#xAA)bs_#XMevL}SԿz F*?LS;ųRD !E4/Go+-|bW(wP QW0k\f)/в7/fZƝYH`B;$T[ /r5u) ϿeZ7,~-4^_-4T.`yn昕i;N?~Eӌ;hXid%;n+}mZ^^2U>li ElZ6Y֚SߩvTZ#*[u{ McV[ +[؜~y6L+ep5l e?YYmb[h5v/n8㨌S@K334˦ZNy^?I01J %/Дon+>>n/mpoz>*Φ6fmՒRaN3x7 YK0k+$I]ZR8 e񋞗_a,)ߴA6sd[vۮh;M_R k+k(Xt_#XfMh…XQDO`+m%Q\_R=&S2bC A_E50SGG@&Sزkm"X=hN=:U--#}`E4վTDeq}FEM4[g1S&:ղ_4Vro tTVU ?$>QV[H͐e"m 9{{\tKXijw8Ut}EmMGeYfwk.[_D)i- ܦ%R6wcدsO䟯ۡX~_ڙp¢ǯ:_gN:?kL~%uy ?tҹ񣆝ݐۮmhϸ}s$^?Yo f堮 mRr$+qzU^i*2F5ArJo 9/8FAoo5<A@4|@` +G2_ ГFaӂ}}}Nb=@0C_;d b`41VU=0j?m?~?<=?w{M&5? srrk3c1g3I"H?҃A:V@A6dg**ʦc%EWğKq3~k`bTh=/KKAG A]1Ի6g (1PFD?g#~y;\BtZQIX>[oGnJQW{&E_{*]jWEдnm{>s|hlްЧa zDM DpG-N`7 PN3<ZA]0F83Axb!AH 5H2 { (JBPTBv=BS,L, %h8΄2n[.<O% $Bd5Eܑ#9H R4"WѵD>"+CȠ48a|1јtLsӂya~b|Xi &`%S+؛<]p8q*p!\ ׍{-xn4^ocYr| ?N  ;!PB't~1Ӊi%]{@7CB'j!2b#&9qD"m!IHe ۤ) =^ސޓ>>4}7SE1=wX| } /32nc4gc`dla|IIi'S2S eLŘ ̕OXXYYlYYXY#bdc9|GfEXY Y}Yֲdañ岝g6NfWbwfOdd>Ɂpqsqp\Xl|K˟+kkm}{#ų'8Ml9x|R||)|'M? p d <"%NѧQ(7(sB|BfBqB' "i˞-M[&jG{DEEREΉ<U -&&."_U8x9 5Ò8I5PcCRTTiXZE:Xíح[#l}"C///sNfj6m{n,+".{H_\\ܸgjfqÒ򕕔5lma}MM-5=l;a'nmwm;noSX  ǝ$z=:s1r)rtuMswwv?aQ19C|G;;yvEv^RkK>>G}| }K}?/P.P;plnPI`oC7\š Ј&5hS1P̎X6#w0N"n_TN|eˉ,IRIIoMR0))BSNC>3LwM=E{u{5?sW>}hYOk:9|~bvy\ܒܵ<߼n/P)8^+(={LKQra-G(Gr|-*STRUJ,+,*k+)/,_4l:w4c~;X_[Z\=vDKXMIojkΞ9{jt3gnU={|.lgym2'8r/ q_8zReˍ͢G^iZZZZ'[^ռzڶk;:*_/$vfvnt%w-uGu s7o2ׯu[v;jwU *^|}-T ]}Fo y84:ػaO?19yD 5/%_6ML^2|j|wk3oޔ|{»Y١g>D}1˧%>728:73OX[^^A@Z*!,Y)-u#ELzuuA-Is&o̼[Z5-k99v8}wQt sq$PU}:K  T|.#t l,u|Z4O_Kx8Ԗ\j&#AF{tng~7ս@EvNNz.-/OKF!wʡ뇫-.-U-˿V]}&_9jM.r]'WZj[B^tu|>9sx_7wݢk溽|gx{>=\|qpH1dӲgnw'NO {)dԎWƦK^;0{ƻY{}K>Y3G뙷]Xh[ܺxת%eoCWY%ѽq*+hnJA|]j=VlV\*TF,[(訬:q*jlњ'6՞8})k7J6.R'_RRКۖ~jѵ]{#{vZP)sK_l<(1048ztͱ+O{4SE^0|~mӻ>Sg9Eb_~.mڪ]/ ]KĶhxepG2gfc"33pY٬i9qC<ڼ|E=()#y3o}j/H]`z|Op݈(rteq\}kbCIʫ ]p %RɲMGTstVӹg Εit+8u;~#凎?i'&+^Sp|Wūyk? Hhʼn @8:1BRCk Kp\ wgEtp(r(b0՘X6vl!1WWG*QB"aN.n@;'!/>߫{k1zYRQⱩO9d݆FrS1 -Nm5t׺#{Envـ{n >\{1s4ɷ 1 5 72 1 72 130 1 130 2014-07-31T17:07:14 Pixelmator 3.0 <{IDATxkUu73 03mb18~Zv$niԇJJmVԪjJUUU7QE]%vN c0a`̋߾s=s}΅{}ϒ{=ZZk}u QƁ 2 ,2 d@ȀaL#xQWZg@(𢪯2 T πPEU_e@jʀP/ >BU}_|/*BU0 ^TUa U-3 xQWZg@(𢪯2 T πPEU_e@jʀP/ >BU}_|./|_fuUC.Ӎm/nY*^@?Jۯtu3vf9ٍorO~384b<@~ìjteJe@7ښY%q|qlsye19X;j y߬1ͯ5˨8Zb!s\FX#m0Sl%> ]7U5ͭW J|35>[^x OIV 5sۜۛ@0-07y-~q[v+'[WZ|kȥkE^R?&q6 '|`tʳ3JM~^ ^1k,>  rtB1K} >@꓏G9fپvt2˂ͳm7;Wd ̙Qju m/3Lmi&DfgI6]6hႛΡ[{aefeĝZȣM5MjW:k,[|Ns1|`iâe`MKDH_֊N:6[ s__i^(\5H=5l^/34b=C#+u/X++> W^5 u=hrzFX0>8F#K9 yпєe.K' A(bv2lk r^]|\Kǽ, $[x Bܓ90G5koة(:)2 /h cyAoUaYdQ#2?x2SlڎؤD2$ ~~R';.I~xBD 㓱:y}@ifU0RXybc\"ijW@6jL8L`0^R[qgXPi%*b2e8wFHc?e.h/ ^J~{_j3}?\3/^$¦0&>sj3܉ {VVҚ C1:R6{ʨp*N'L_f4Kn@ wwʽ 8\^kuxm:h<^E}#v)zdeN.,rjIKKoxJ{Q&'E6ʐ&ufVAZM (PQZ:'/j /r32=x?>c ܣq6WsR9uIo!0g>ЎeŖOL,c4ѾbPX)ߗ^Pakn92$ݬ@箂G-x]-~LSMCSN<_?\3"*ͬ4F8/Fcbܷhg)W;F֥ 6W;WY|I;DiLݻ$Bu up?v /qt$pRk,]5@MZ?&xG=bcB'EM e;9,ؽ/ ݥ=4 -yײD?y}Yp')ʋ}F`>Mqx\1>P۪^bٴyČDjS3upr{mF"`7|cfK'\wA@7j/3I$dŊO"O\۪^mX?yWBYKKgٯHC,SVfi eL0}TR UHC#xuƄG9mJO"zNg\KAu#a2Y eƉ듄B4/IEMu0eV>A,Dު)]F*α){Zs' D!IGesqzMayC`C&%DŽ]N}j\ 8߽٥%)FVBR *Bl̼h:nǠM.8wJ: !1flo 8Ŷ"Bd#E:GxU`#{hZ8'9ZCC^m+lٲ "]Yz`"xv]0pWTY !ФtR_8cLF'@[V1ذR136trQӸMOXwPj"eu«J^[(M>/T`=e苝PK ش46UT& SIb@Ib95%D™?W]1vp~ >;N5(Ս\.n0YU~{uH'D uO]0mf0Yr{Tx 䟳UA,r_ޮ"5Aa]p` EMVq,($xhIH9wxƄxQL1{ LbǕ!_@6-v,O+FMWr[1|mYbH* M q'p۪䴚08`E", ʯ~ͦq-mi IdIk;Zfew6ndx[B=Z|7&9Ø4[ᗶ-ÞcDڴcbR6kek? GZ>r戀!.٤*q?QA&Ru-XɫJTT+4ȭJMLk0˸1ŬΑn{<fB F#`eE; R܉(2U<=05QFb< aZm UGjb}PGh=sQM J5zww#3ЗP2 7vHa尬S,X7$}`ܒg~\d~A/Oi6s؈|I^rY$;ckAK:$/Q{NYR[7fBxqPy oDGm@O?&V=< 4GMRQAу@ gu O3fbUL-3TӀ0Z Pʮ r0%W~Yal_Vь,K ahC8A i5YdfkeΉc=FXq8QQvT1ul N;󔶅?z~'&D%xGȸe .2ع-dwrxTҞSJlfqg? A3,)ikp߸^c8$` tQI8JRqVieq Ӷ%6BX[Yg@,yJʪ8Beɫd̀P2VV*K^%m*΀PY*Yo3 UqʒWzd3 TJ %cmeUUf@(k+ %6BX[Yg@,yJʪ8Beɫd̀P2VV*K^%m*΀PY*Yo3 UqʒWzd3 TJ %cmeUU?`⑁VIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-compile.png000066400000000000000000000060441263353514300236270ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe< IDATxLT, ^,X@*"YшA /%Qc!&ꋊD}zc*P_lY=pͽ}(ٝ9gkF"մԴD0a $@H0a @" D0a $@H0a @" $@H0a @" D0a˒wB_ *J[lղsQ{-MM}Je(ʫ20ԈmT6zAmeMF3WJB%9ceJ5 ڄ@j DY 7nܸrӧOsssmllڶmjeeenȻw._Zq;vtwwڵ+ yz}~~w5F;7W^Ǐ={E=<-Z$ɩtٲeoUv[r"$*E /ݝ$ȤF e0ͮ1| w"9III|\zq͛7ٌ3 8ҥ|͛[D!Ę!i=bgMeiZXUC>:tO? Z R)1o<33zhyPپ}  z*-"v0 ^(ooonjZZ6;؞\iҤǏANn zAlo߾!lRhF7:DEET1`nX>);H?ScCfEkHHL.2bP #G5k=/_\3!mxqFI&qرCnh0ԯ_ޟ DŹDl;Nܹsvv67`o{}BilD & 'Of#g+))-ѣG ҥKl5kր|Ca#%?~<^#2cYr[n;R'NpV2uT22dȐڵks}KN֊hڵ4iݺumڴa[N덮<'$?dV2WcɇEϭ84j(nhꆇHo+,W|q-}Сn6mZrr2/qqĘZP/C;nݺȯl"ϒ }loߢ֗tTٷݱBmjܑ_-H.qMLW$o0Y^ΐg* |ࠀ-Y 0 CW 8R&<$[H Z#Ҙb]k @]v' VC,F[ GGp !%.#Ԥ˟'44iϮ]ӓիWˇ e[Pc}Ok Ap6ls2|?,;]ϕi]H%Z]..?dH+lekT6Y9{l΍`#""ēBDTSS!I 8p [FϏk1ŋ>>>HķR+V`4lpIM/}dG*ۈ^aXITl@6$aUtO>K@jšZ v!*s΅ߟe qg&qw]t)?s޽170_ŋ6Քh+cah}=iРAl ׄF,p*(9DŽ..ߏ Y9& g %ُƥ(.7C ~uupG~`%Kr  IpXwe-+>Ebq$?svvFV0b``  A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYs.#.#x?viTXtXML:com.adobe.xmp 1 5 300 1 300 130 1 130 2014-07-31T17:07:60 Pixelmator 3.0 h&IDATx]ip~3Ӗ/Y%۲l36㲡GTHH0!* A$?BR9rPH(WNL|C/|I%뾬^j4+yenJL7H{_~ t%%€%e,Y:j[+ XpuN귘W@do1`9Wb^s Vż% W\~yK) Z ,\S@p-,Y:j[+ XpuN귘W@do1`9Wb^s Vż% W\~yK) Z ,\S@p-,Y:j[+ XpuN귘W@do1`9Wb^s Vż% WcqėBš("Ґ& d UAj>rWP(dsf r4~s}z]l)ퟨ>Mdcii+t?#2aSpbMH$4+rG5> Mh M0MF@uQa4{ jȠNo^͛$7>&@:Y% Za# BOTFa㐅~d> Kg!1 c i=}ӚZʽz#C ]iqe)HA> mv_2d4sy0An^cF, uOF8 KщE;2LF0ou^0OWnTyHi=m.)`MI ,q7MXA0@ TW.1F' 4}jCaꔗU!#T+i 0B@02GKU cFZS|:@K [-8jEv(K XPjJ*-Y,p?ZHᇳL01$Xو6c :.qqq?bxI0jKh$挕5u*=䷩x2Џ̍~p[kKXp`V]Oŋ'Ѻ Rkc;xښV90V9yꆵDN=DgNO)rAZzRR`9/ pvT }rHC0x Fh4 ˯F=|~(V #z<=o$U3'?%/ -v5m|kԾeguBj,k:WGR @y-Zlou:: 0 Մ@+W@x(d>Mt/HBxRY¢ch!,`S223m |ϼ `_Ꚏ`rʟ;npWwڳ2 {&! {|!WH! ##SG[+sI,]P~z?+׭D=_˨rafQ)*^ns#ňsd@ ǂ>s&e saΞ>j|bc'sG۩|G^VZ>2kN[>X~PFd^T_[CR*%ODIqbOWplӅϜ:NsU8oMV1/eճOpmwRJj$ǀbt'yF ;sÎ[旁PxXYf&(z`C ,H5)[g8%w8̋Bdy(Y(;\4x ujmikH1ϧ =g[m+zW=":Jblpxw@E5w2 #Y~,I$4>Bvn.)j[}~,yY)X¸c^+C%hTE'Bu96v޵=,Rcs1N]X4J䒒j 9}dTOI+3łd?St~T*0m;9X_|h *^Z}c qxeጙ4=;璯^'\C1%~'m[ g^0o0),at.̓,Jvhx2e A>ͷM[Kٺ6Y6;/b_wz{E6ЧWW "\:}xbSm$X-(qώ(vB^Ʉyu#ç"Q@25e֎Ҥbnz_Õb׫ 1ym~7h;om~Df;;ҤZ})be]]h`So;jIlY; 0?GVaɸ7i iԳ M f'yDH VyX nqȋNq[Bh@`p™w2<`:P܆kh5<й>f+C>F+7t,`G(n Ml&Q.Bԉ]:3t@чs¤Mh gɛp_|<@c'i d d%8:Wc?a*|⛁((A^Ogšᢎa!ހO:`jW<\D, i@,S=dfSr@08cF=OǦ3f^*W#?}& -d!B)G~WRs%cA{2j^·)D!*|N ` aX6Qm%"tщaeW 7N3+{i4MPv8HF/AvlF3`Z'IxeggSq:L*D.iXzpk &<>~)?ǝӦy7ptQެܕyyp95u5}x._n?K mt #$53 /CGPP@pP@#(( 8BL( Fy&e P< 2tGQ y:#(τ AAjgBA^53 /CGPP@pP@#(( 8BL( Fy&e P< 2tGQ y:#(τ AAjgBA^53 /CGPP@pP@#(( 8BL( Fy&e P< 2tGQ y:#(τ A>IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-cryptico.png000066400000000000000000000233621263353514300240350ustar00rootroot00000000000000PNG  IHDR pHYs   IDATxytl-L2&F"(V ֶ(ZN.nǞZ9nZ9 $*&d e|~ lo^pNy{{9"B!F!!B@H!B!!JH!*!!B !B-B^BB $W !rf(#8DDD6^8uDQ_T?B!Q/Q_A(B(B @  8^7Xǁ<j駟ƢEa˨pE\|1RZ<ϣ B^q]4BlMvuuw@ @DD y477C׃8 !!6ʠ<^/xqlM@i:u /2 BD"᭷¶m`ۃ;KP555ӡrp9444hFDj8q"d2 ;@ztvv 9CVV zkk+J%:#A#P^^cܸqkcfF@oe''''DBBIs!---`ND~ F444m#""cD|vA @,;KP D"Y-1|8\rz"T*NR{h طoP(h488y$kr̟?{B8Z㘕/''zHHH@nn.NmllDUU͛L_ (p-<f B477c֭Xr%@PNJ+x J+%%կqZ[[D|bA&{Cv;{h}r .\ݎ1c`ĉ 0 hjj7̮+ R͆-[jv;ohh@[[/^ F7!J1k,D"l۶ Z[[r HӃL,_۶mCDDvp6@DPTHKKԩS,HҠm^@o󞗗իW#%%E"D" Á+V;@bb"ꫯ'Bff&3!"..=xD"xE ZDD¦{& 555Xt( D"GÇsg@,C `ܹXz5;t:6DF7`x< ."<kbOpQ-Ȓ%K0a&g}˗/1Lhmmu/A+_{<~ͱP(Dww7|M̚5 QQQ:sn z+t:E"|3_-J!x^@*B_ATTPQQh40G}:bq.f j}* wun7?"}݇6z;6`>|>cZ : gφbSJYtSuu5\.fs8Ç駟BVC.} <3PQ>r!//֭O<"Bss31k֬~>}—˗Q]]l ?88c =v#** k֬i=F8455Į]p\.;1uTv6 =vD"Q@/dȎq1ydL:mrj:^x|ᇸtVZٳg#33zBGG֮]oofq $ ` "a̘1 &J>B!`0L[{|offf&^y̙3;wDCC>r(J;Ă /ߤ$F/{qM8Nd2>g9^_tFc=5kh4. J0Z  ##O=zG1 J!̹(++cSI㐞pH$ !!Fo{ZowUӵ(J(Jdggl6t X ݎӧOUX4 J!x^B c@X(J( ZojHLLD}}=5 VR@ۖ?̫HDhkkc;<{7n[(yfaÆ A %( JH6R?vN'n7Ν;ry7Z@|jkk'H W\@ BVeB`j"##㺶q݈V{(} *!<ϜEE. ~!d2~=Tɓ'㩧Zv>D  Y`yyyHLLdb+!v R1"##YpngBk""~nĥK=ڷ?Bnn샿;t{}7|xر!!|7`@BHt7q\1Q/xdee7DYYYмm"hȍ7F ^brVFQ7tSP9 ˷({M9G;A!= B azzzݍnL!w]7Xz5?)XC] l߾[lA&òeȑ#Xp!@'N 77*"" fñcPTT'N 9cQTll~CLj:n'M\t ?я.0ls6 X,ҥKp=Q,E,(1vzQQQ/-KJJBff&{{lm"aƌJp88{,ՅDGGC"]3dz=z1ab{l bҤI(//˗a0t:N)S\XRRɄZ6SZ(**BDD<n7v;0m4ΝcT7nȍqFX,d2j$%%!++kd7ʕ+X,JArr2;_bXx<zwi@4|;hʔ)$ )&&^}UvR)d2tMǏ[oR)`-ZD$H"PAAP""M6L&\x"f,e˖ŋ)99͛G+WsRXXI$5kkzʾxbR*M"X,8h4T*Y?0v""OI,L&X:rȀe?t{tLIII4sLZbG?"ZM yﯭ 6Pvv6дi;酪3gT*%FCK,۷.^|J%%$$Ю]:::l6SKK \ڴiiZ?~Kf<y^wF'XLh2h(99RSS\.M6ϲZzzzhʕ8wx9`Z^Ξ=K~8qƌ^Gy_t:,{@!8NzꩧI$ڳgϠ:u{ &Ez+g޽oPXX=3DtA(--%Vܙ3gL@yyyd4MOn۷P}{MWW|&L@Luܵk׀H.;PQQqDk"99N81npcccc1a„MPe˖NgϞamrEŒ%K:?G^^-Z4rw^x^HRy~z( %C˾E|e̙1cw۶m.o~z6=.,,D]]ݐݻmf3& 0CDZZ j]vj%"/ϩ4)t0Μ9C2wx㡻JKKM˖-$H]r̙3 Ryyy4JKK)66Y_}%$$JcǎA<8pgqFVsπF7^ egg`} ===8cʀ֬6Zv-BViӦ f>h:} (??ϳyڳgZbLsÆ /}WTTD< ӧg2&&_W\ohz#p8^TIVw}G;vh„ TYY? VYegھB8i…K/QAAҦM; RI6n"} 2e  RI?<}ᇴn:?=,HyGӦM#LF"-ZD Ү]+M8bcciΝ顧~I$QVVKTXXH_ƏO*~SEEŐ<(涶6磨---ZyRj999{1|_w~en$p%,X---(--eV@x^{O J_l7uŦǓ&Mڵk<شiJJJ 'd/s G}ORO~2ټ8y$Z[[p8 T*o:(CJv;`-{#طobZn\Av\.줦~rHSsss.ۤNz:::+.2 d4@8xU& zTލn1RgQ}Oj-2C Fujcc#oߎe˖!//o뉈ͭbhF}ns=^,Q+ٌ[B[n}> aZ!hllߎaCW7cT AwށX,pvB6F1ꖼn݊. j7NrŁBBnYEee%L&R)233=-X,d^@Nwd !è# !ڠV"qU_^B}'\/vz!Yjz(++Cnn./^˗ /_ʕ+tRL:u ۲v1e_۷oGQQb1ض <ϳxӉn eee NÑ#GϼP(p:PTolՃY{rrF׳5wu"##qAtvv] f!11NH$@JJ ٱ2ΔP(l=R0F.\bA{{;r9[q;N*2/-L*ODDĈ,#VP(<۷>(އ@^zUu ~=֯_VvTWW#33-@\\^y$''yyy x嗑R,\`޽ٳgqM7!''@*͛7vC(b8s  L(7/=-H#{^<Ϙr!j-]tvzG."x^NW)^ɦǃ$AtDiԝo=溈ʯ7oכ7] ``fS&&`ARIBY[@v2SҰ̨$-mFG1+|‹2,a$+me:Xf6Y[@fjf 1D 78@͹zjq`$.e`6)CeF1XLf>/CԜktMy2sLIl6BB{W'-I[W;g iS2x)is0LH bU uԞkI?<jINHB9Ξ1u+`HKJk([ Ɍ`h0V$ ӁFd4ND|R+X)jP,Udc11h4tZ-V`ٰ8#;nw#XV.]Fޜlr3FރZCɄJRV h|>͆``pUy6SU_аm-MAV6f^F=Qz4j5N rbw8ڬԝo/@oEc(7uNj|ᡳ ŐƠu غe6+N6$X ="̎bE2-(fir3&|D +Gܨ7%,gvDԸuG{d$ۨjp`1țw|Xc{+5wlt4Vv>WHKLpE9y̟Obl,1ޕtvߴt֭ZKbbRD͊d!*,W| Ӂ>cDB+B#w,.(te=vFԄ-r{g@BcNT3'9JWr`Pi=rNblK]2s%Ib2sKR9Ys#'aw9alanC^|8]Ngլ)-#-19HXx2*x>K>x׽$R5Wxhh=;yݷ9ڬx\OV+/U*zÛ%l 8^'ˣ>$}>hMm^ڴaEY&@E }ardt]VgF_۶g'#O|ܼh)Mh+V.-E Q<6<>9"e院G{4dsR)ʛjz}\erHRjedx9kSjǪR!p~l߻.skr328fv7'I<^/ᏻʂy˚KقFF갘W*֖(SI*NNJecC;[q8SjCq|Bd]N#Nҩpn7盛U\rgcg"bFr?߈174Ud<{`=IɄ"db2_LOh4*߽}vu7LNFip:9ZY׫<=H(%40*]v4OF<ܺlX}QDFn؅&ix>3'GqIB ntfP47'5V,n׽ZT*i^)MI-f kI93ra%cyE N{Zuf#'>@Ra Z֨^{`hp k5R0L )glV,)uÙ|ʚ*NTW2drkrG?v]@bYxhQzlSr)~1e 45n؛*I0b#묬fpy L]-.E$"#ٞ>ûgǐjnoe'w젥mf2.ue:YGI"^Y;vҧTL&{;~Zd&Y-P C9~Wt*"xoG5 t. NO̖6EUCme<跸uOvbb&9|xЕ!Dφ^bxP>:a>B[KРRJB?ߟ-Z-!';9 Rc^\n7 LI%:"RVvKo"x^~oMQNbhR0';C5"*< qihl}m0K(Iy<^/jZN{6a`hK}CTDHH!!!XLJ̹h6UQs{'3룣g~<>B0.6_#ply]t c8~IRQ}y'n\hmhs-MvDTs!j6:9WYkj*46?1`"?3xfGDN=EOn#̝? 7hEs't3lSȑlݹƆI]+ڬ-?ɪJGq~! 3[0 ݜc:>CWO7GOW`YQTDED}xLV7mŇHO@e /χm6|[3=M1Q|k9=]_8CAIB璕`DÇb/}ܳIohpuQ< z}r1h'] VI?1l4ZhDuygy\X7_ōby|t,qѣ?CQ? X&"" IKg+Ć~`=ϏZ&.*tv_Jη``vZ)U|=~tDKg-76t Xq!Id>ϋ<M-4LweFcQᑔ-s]02j+XL '  B<39~⒠AC8ratRiA',uƻos1Af iEɑ3q<%&/D>mu$ !!_>˹fOZ$Ƴh *riAd0 dzKm .ǧFV%;5ԄDng$듐qH2wo8Q6?峷Νe v#? j APE'fUW I8N57Q\P9$#!Ͷ=ٺs{m/tm.XNpN _ի tp:hjkc#*&3jml߳]N9;NSχa}C%)oS6˅ux m-Gh|ε"oR? XGůUS[IJ*$:7鶪O{7@Hkk?<kktq݋m6nƶد-mR;`zv x#=\% oYRڱ#&?>ҹЪn_;j;$}*}+(}'}/LtY"$].9⦅%{_a݊]hk5'SN{<_ t jM{-4%TńtY۟R6#v\喊x:'HO3^&0::m,L%3:qVE t]~Iv6Wٯ) |ʸ2]G4(6w‹$"AEv m[D;Vh[}چN|3HS:KtxU'D;77;_"e?Yqxl+ pHYs  iTXtXML:com.adobe.xmp 1 5 72 1 72 130 1 130 2014-07-31T17:07:22 Adobe ImageReady n,?IDATx] tUՙޏs# $A,]Κh˪"Byѱ8-ؙveB£SuXf&<#XKgshAQQ rsMnN gﵒ9{OV5 44 h h h h Ek6;x Wi 5\]h@puB^Ek6;x Wi 5\]h@puB^Ek6;x Wi 5\]h@puB^Ek6;x Wi 5\]h@puB^Ek6;x Wi 5\]h@puB^Ek6;xí IT3Sok6'6Xx[ڹj Ueof>D3J +lPlu7H.gK*O5b?!ao8Pk0rV+Jī_ 4P]Vw۲ׇRiӞu9M3WJ͢`QJIP@rW7]! /"]Z^iKE5ɔHJbZDlٱW} >M4Dgr(0 d;}z a0vfdm !B@@6mQWa#rbi4i k `{ ^˨9KF,7?mG{A6C>¢'X6}zed=&c<`c]'/Yٺ𒒕aAJi b͎)kD#fΤzEaf7ܰ {!}!*Pg lTϡlU{MB8M%]aqk64R`_bB e<C]+1>6BHPc~iBqĦ3o`MvM;=E~MMFR&]u z-[|Ģ=sHiѪ8Л*iXEBFs p8o^Li5u5pN@P ) ɰx#EZW۰k MaSBKFﶮ$7?~[Zj|ns<1Xbe/65{oL29=nsvjL(/ދnVۙ6zMځ!c,)QY+Vv燣mr׮1M'ڳ͚24+94(΍=' /y ûae%tC_HO*J^i[IDR汈\VD`Jjpl$%WG=ߚk$Ij)եk.,-#U.2q~=1V4<3TozKI80cjQ^r"т(6TFȝ9K W PrfByOH:T5nMkӪOEtYߑ7LuꨯFL>c}0x!?N[6}՘gc1ޯMmlQ:6C%83.cԸ'\m67_66,jᙝ!SsfIf <=Gn4T5d)\UZs܈l̼ )x<讬lEҸ$!pF'f\Fò-e7͆g9 :ܙPA!;"*BG"7[`p}L"Rm(E;ڧIY{t2M,;)~C@ ) ;c@+ϱDPRз q< D_ñ|BQ\?1(P R U)K֧0%>BeFT)m\7|06Z2BsLri=u/bZ) 2*y;Bv0M)D*I\P1\?.p}8uSKQQ'R հ6㬁 pŊ8Fyʄ>b3¶3"=O> t-ݼ}d?u1sO#\*݊h:}}BCɽŹ-"a=ssK*Ln\do]%{_"fS9v}>k `{b"-¬W|dkmYB/3O lWkI(W"Y(J=V{6Ǔ;:*KWvzi}~ڴFK NljZВ염bf\M=쒶Tv`Q1'ȑbrf oEɪt Ӎ; 9M@ذ}j`qa˼ ?A(,궲1NxiEIj͙ͨXdW>AF! ]Z7*qd.ruߺ5#&(dCQFo5} W+ga{A `e[芾^3jzvg(9k#!yX]~p󩜕+X4sv+v$)6_ԡ޷X2Ojt7n%2L>p#[ eR@NǮ*m~3lԱj_ a)ph 8"ȂUY7.,$Bf AJRc(L#Ӈ9Z: .sSyHY1!.G[Jq *r#-l8}iDH<޵,#籶܎Hݕ؄wc k.f $g qT!"Αjna"ak˞8 DO5ݹ8Lڶ{aV%d,-]}ԎOf*eϞmuP8ָ0PH1M+\ ôMEV s6}ݿXmI#鄾m}(dFdʅG<]Jy !t71 Șl{EZ>%l`6k ftOV픭'C$!LG2H6gOw ȑ8 v; \$JY4e;&붔8a0pU٪a?a]zɈ)#a+`0zy{9NDK TUT^c$hq]$WԎ f\o*(c划GP+G Ü|TPH)ioLB4XpdA` nݡx*^ai|W3Vm?Ue3f?sGc{&S [^=B8nzMo8Sg*suY. mI}7u'|. Y1>~nߵYO3fbfΔ5EHB`B `O+6>ˬ] ,{{ JƗv$;׆]xr6g" 4„@0 [5wWg2Ig{_b1Fc_@ǶkiWdҏclq"x9Q{q}}? P@`ٱlٹ1H톴lyjsbuC 6D4hS|{,L8=б)nMKp t mE)ȉ" E1f͆;Zv}BZ'Ŝb[w 3_F,ZElfi{vX$ lqǒ';tdaSmM|ٗR?6omj32© ?2CRj3%24Ny԰H5ѠՁ>Iz ?`T^"4 TWIDATx{WAs~wlKl+G)6JyHE 1h"$$&F0ET0/@Z(ݖvw}ܻ;;R¶g~OM_3sf~97SJ                      CC!!֌';Kwk1?o l+wϧXGϲڸ#OiKAb"s'_}S㳚kC(Sxl1lh{.om=cp=NnٳP}>]"{Dg;{t+8!q8~f_K7fn"<qY(i(쎣'\-Z4;r<pB @&pL9` 'Me  =!` g863c#'b @d8~ +?{1X)g9f^KomƗ1< vd hÝ03^IgP|Zޥr;\vOjQ©u_pSۺu@' okyAn c#f,2{y|+}{=FoYv1jHGV27}{;*ơ89\W:osL/`%7x} ƫ%fPc<?p[/ Pb~D{W[5j53O_U^k@[Z@|?,7XX[gC55w,_ۇ PuE׆V%6xڟ{X|%f@,i}wwn|MoΚE P%Np[{*@]ʉoIk#/q_Y3Rg)l:-:w4U CwvϛN P%e |zǝ@$5`z<~.t{DU(B[ PI@zW>K@@09ofmO9G4tF1Ve'=&TL!h,~;K:rlï$t=N$ G⭏,_ٙk:p5k!&f)I@ G-vzrE`mKF'Εލ>Hab$~N1zOP11f#C]Sc`f8Vv<)P%Z PI@ #ݶP5s;h3{rp[5;h e H5^m,j+{ Pp3|u_Yn P5õl{/GJ31֊(B-V{ϥfʟ pjtShwCLKݰ߇7Ym5Ck^z xn9^n7h#C/ Jgýw=uwN2,t\'sp{8kW/5J#_јakϪ-EowUf (GoP%O8w">8Z"efi y"PANiۀ@l=-Z V=e}hU7 f?Y{fq#uEjp-?aU63@\j f` ($ f)d &4p3`%YC8cIܨ8V% 3>t53p =YJ6p3c?+ a @d/a Jrrg0@8K@8f!yڬ&{ql f?%3p +Bjl_C8bE  P%g)8P$8{sWag0@Vb .'z f)c .'7p3c|WJ6p =3p +?Ka @U8Q3p'|,̽|ϜP%rrg0@Vb  @X=YJ6p3c?w6p3`%jBg0@:cUĐ7p O}J4dg0@@]Ga 2rrgjHN#l.TwVP#N v'ǃ(X́<LJrXVY^r~}a,l*t+zX+f5pK!45~DXbߡTs2]+=ϭeܻnz]lv) 5o:w8k~:P]iYS:0ڊ[6@@@@@@@@@@@@          pj:KIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-hipo.png000066400000000000000000000176571263353514300231520ustar00rootroot00000000000000PNG  IHDRatEXtSoftwareAdobe ImageReadyqe<$iTXtXML:com.adobe.xmp W9!IDATx]T2le+ X@  j4&1$$j]c#`MD# I߼?+ 7|ys󻧾sϣTUE:k: ttaaIAA'tttaaIAA'tttaaЩY |%tX׀d.+6}K9PǾ2CdJ%Q.hM:)$Idn(T2(b2RaNe1ý*RFgMwb J0ē2G;r Br0j2@ae2R C j8 E YڔnE?$ X226pXAQ\bbi sQKg{Gw>ݹ)P3}-̼o~[A 0([)^\l7 Cv3K_WbًA X<i5b" Ko/)  єLƓJ*:$ #3vy( ɓb (4"g:OnseakUr9)fIm+^/BvLbV6 =39D^pvX/`(X:ꙢJf ~:W,Bk[CEױtꉥı܄b?eQҎ6-vHn+zU  "D]ty_udXXBKvzM:BYnxߛ===uؾo),-]lIƙC*%J09t=;돮.+Ǟv>۰u]cfgŔ"۹<d:М_{B WXo4 s%h`Uo-[)d>r 6 j2) Z .&՘0͙y0dyٕlp5'*΢o5N໇饯oCnpEڭ I~]A8LQ"b 8xCkŔ[vZ^y!Ho>(|EܴC#h5 lQV +JRQEs˯eyZl(\pd=Tq.xI;[뤺z)Br)\RwJUhsbtANgI!3w JS[ne7Wb.*dٚce7S'1 u\ *̿=?҂-f>2; Vqk-vTU.re_ r窚 pȹ߉:T'OkТ:JAvL|2n%oW}; j4Nu}Eѥ(Μ,KQ@T7m&UX)9/)Av7 !*K12i0eH9/aI)ѸrzT+c~!Rjd25 {;#+Nqv%ԙ`4SExY``'Ɠߝw"v EEݲy M/! T:DRMTl`ٿoG@QyuiO#$T1E1 ÅgF,ݬHĝx$Cv@Ѵ6z_4[NXϐԒ‡O|NnRS4x2hYdF  YnP1^R>Y [EgE\H"@5"z䟞':*{r>o6l[;(ҽC3!A LI!3b0[3RW;~yT3Y"zR6PzfіtO4h6XWC)a(>rae*R12KvU)C =@{]4JQy̦۾K| )c=K063TQchRo1a_jsPNØL0v`j;BdhrCDCSu.:}  )N9T2rG0t.hAeEO4,`* 颋 `f vD%xݱO/yUδchEFN9k z*5;}qR܇)e٪὞On:y?Gk;P Gxw)frg=Ö~ Ic0= y K|r hɍҮv\ձ WFC1)X*bJc>iw3E)i֙hH $XS# @> r{}7:T^7v#3q9AAeu'ô BMhKynG=}cSV ~}YHOH;KMHr]A H! B8 ;rH/8'˙0b>Pq^b} _`*R4if 9>aؾ+9ճاhG$̹>3@ (lʠ1#MS[an{ch՟VMؗP3D7jnM8Ko e mte;wkH98W%AuI~5ו Y~x$}ώ%|",(Z;6%BB[挒ΪѸQd i :t|D~7abcpXVk2 N9k!ME 3AfS5 ^Z3bYҢ3I\[u*Se$#=Q燷IKń !6 Aniv!`ZR[<\ a8vP *S* \o4Ί_ZF^lp{n]H*<4,}8N_{sud.* Y|˗2l.[dGEEd ̾ *w*9ݏӗFZ_{[j i-E:,D2)tY;vyl{GZِx -JgX<~ 0vm2>^cs/?bm#(,7SRC"G{$[YQMЗ72J"IU` 7&UJJ4i{"z8 d: :00ԟQ(wtUxC >"ɲn/)q֖LX(P8 r_ DZԡˢں@ gy |aÆ\æ[|iYʋ/:;pcӧMz??^_l_^($)Mݮ3O?3N/m'? ²"S *a;Kf˰VE`]0Y%c۟Fjިe98bbX&ABS<D.tξDGUt44I_((V޺u7oPEŀdHoiIݱLeE<_5z4(7Q؜4sJKK/_1|1cH\׶6ǝN8qt(#Ϭ6k*.\zO|@DcӧUWx;.{M&#< ˖-oll ލ7nSO} =B.d ?)\{_>p0 'Tbk?((e7dr8(hn"˲y0zs R,?ߺ38W7ν,hrEGقDJ#aRD#ӧM8aq DX,K,7n.6tJu ( u;Z0d3ْC,+,(hfVWF\(.#F tYO;ԀWOdCT ⠾&*y',yrP/q︱5hK^fU_>U?lf4uʔ7t ^>x Jd-hP(D7M "5t@}mX,˖-'bY[G-[ 0.E]\Fy: 6Q _@O۵8\ބР;?M9#HW{gףWR]- a#`Y[WByme:Ӻ`yR4:q<`ƪs}Lj 6vU|#=]V5֕K쨴i`W` SUEly{ POkh=ZۓqTaoF|03;ǚ)ھCGX,F`Qv}z:7t!luOQPIevof 08x KҴ4.FX%kXxCe'(:>H?*`ylu RaG``b z}Cx7a0tn)[EmZ`긌jn?1`xszg"اQ%1D!|h5?E\. 9*[ȄPzT%B-=x(*`7OPb)! ߿HS~'j$wh˕Δ8pz oH IpoiqH:]_$p}G-TJ=kKQ7]Si@C/B x9 #v9<o6>"ػ\ csy3NpsdžӿܓLfԂ:Ae\YY1\3BX X~{`0MK:'ߥlv+}ߣirm4ʒ]N/4bA6*E}3k  Y7mD7;}#/;QeC:uMQik%"Q}b&B[`LD ۻԱ{ K}s ھ"{W})Ws+.ŘC0F.5M'y'/ͱekyr654d1¢mM s1F# bU{>>[tOqΕ:JYCk?0?4dhAMkI b ,/JZ K0@~PIgd9 (gpM 2K5`bo6{zu)5`*݀WƩ/WXGx> Vː!UB'RItUi*! )|hfV{m\B8An/b> ȢFg7ǨH.t}l(#a8n ٧/p~1JITfVt kiUem Joϱe,yh1GByxjZIth"@*64,1Է"AbQ%X7L!ᗰXK` ,%W0 0 0 0 ܅I 9a&NSAblrJZ(eDErDl3Ӕ<<7 XBHv%Ͼ 0r_.@Fl%NC${7I5gu[ &# PlB#,h[ Л'#Hy% zy%5Ȩb<dnopA9~IA5Qpye62 @^{],Qv PK ۝ϳnUci%n]z v%+ C ښ FvTӁp`%P]&hn*O;CBd= .@v*ЄDž9Ӓ]iI(|M*h{(ӧJ¾iۏAóP 󅢵EŽ(!0,.P XهŴ2. PX," +^&;g 3JtSP q"|FuHBA!490ᕏ!X:0t3dkn}H:̛d#$)ʧ^cuZBKV-QF*aBë|~:L Pn0=:Q$NAVe^"(#o=CmgHo-WO gɴ]Ѹ5'pY7HK$;(Z0͟!AD07ŗR((as95E+p *M%啱4h *@+V}? E~?Kb[ .3%tX:0 0 0 0 0 0ڃCA_{UCng&IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-lightning_kite.png000066400000000000000000000150731263353514300252000ustar00rootroot00000000000000PNG  IHDR pHYs  ~ OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FfIDATxyE?=Kr'$p$`"1$""giEiay"ZZD@PC!1`B {o߸Vmα3=]ky K K K K K K K K K K K K K K K K K K K KZA-Yٞi`@6p%lBr/.hr>eUCpqcYV[",l0XZx|OOf8L8{31H@oK lC;8;&= Xs8fn "/0< 6sk#>\0~}6qkg;PJn5pIc$ l˧6}a::t Od+&Mu{\J$BJ x6i8k%84H~zA_IyIPvp80 ꃺ,j$Hg|2B(S#ÀĨMV$A*! A>Q'|қjLa^ -ɀ4 g iD)uzpѝedG5Pg{ ,|4Xw~w*;Y8{3M'Jz 51 _~#> o$ðcNK:$:\!u1g:I!Fv섍$Tt,DP7 `]-Tť΀L)p^ fM2?NgŢ@WFTM9j' ̚ ܲI+ծZy9JU0*EkYWq.."I+ Y\_U-JWPWnkʞX%R,"(OEWJ]YvG8?w܅Lg jIqz8xt' &2 IcVJ]Pĭ{]"ުe]Eu8|^N֩mG:됉YSdZHࠣ \UiѩskTaT{/v1 &Heji\ӯp= <ΪRK%'ʤQN'$jZf"Hq -Y79t1"Ld̡#p U&i" |L0- kσvLx RRYp rT7D?yCJG~CHHe‚[qG*S;t:Kс}/EwC72̎-Ck/-z_7Лq8ȷ8szIqca0z)zL)zk5b)FFڨDΘDծFipPsC-n㒠0\\i_R;:ޭic 9c*sl7Uo;5gUkj,'vmd#V6p3!lzmw-YXX"XX"%3[ExgN;zʟ$l0tU`:i5\)CL}b>t. Os/4`X"z8p'L+CS2A (738=>b:A*c9GЃg| +t$yntok:uY'yz^]ItwPy6z4Oü|!,Vt 聣~~)kC.aB>2߉CԾ$?_'-*p#K܇N?_[f0 | JδH&+_6k8=_"4k0 ||t.ɇ!WA3CH7䲛Ȇ 2{:nkqM$}f[vHz oۇ{]CI&&e&z'Nm%|k>'MqǡE|v_nT|nU$~'zSgTlXJp"3B$3ӑ,θjN*QZ$xeDْ/R\'@[kD68ߐ›=Mo4lM2|I3GK쫝'$\qܴt2죢Q0W) ‡+`[xyRJBrV5 ;g>:}>L{Hי_%<z߅a4 ʰ">z۪F2R42,໥3E@aH@EcwÄB̻D\)dR]6Fћ1T"5O$q^J N+^3A"؍T\y#Qقg?V Z*n1 /DjEq\yд_*飆P(gRKY6jsNXQLH1k})Ӹ$)8pd $" 7Ы=/<ٮ;J0(#O)A'14ci`{$po} #D$;% ٞFyy{f"ڍz(no:zĥ6H0hjDϷ7Bc ˈ&Q[a 3PҠ”V#\.F'5c߿"—s,)dMFnqІن-=jmtI/ FS{!.`qWވbRAЃؤE2o.#`t81,R |Ix³Qo05L[SqC2a爞t:-rr:@́'߇#^"?_)vP3X{D.Pw]c/%tN(O#az\ubj[GVZ{%oe?0,qA!b4p{VT!݈UOYO]6vhOđɸ66m)8My9DW寊6e[~V(A$eÈ2Sn=r}aInAVDM 'Mn&!u8GjѴ!ΑX{}']rߤ3t1vh/ݩ xȟ=Xso6p|}scLZ_:bfJIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-mirus_research.png000066400000000000000000000301761263353514300252150ustar00rootroot00000000000000PNG  IHDR AiCCPICC ProfileH wTSϽ7" %z ;HQIP&vDF)VdTG"cE b PQDE݌k 5ޚYg}׺PtX4X\XffGD=HƳ.d,P&s"7C$ E6<~&S2)212 "įl+ɘ&Y4Pޚ%ᣌ\%g|eTI(L0_&l2E9r9hxgIbטifSb1+MxL 0oE%YmhYh~S=zU&ϞAYl/$ZUm@O ޜl^ ' lsk.+7oʿ9V;?#I3eE妧KD d9i,UQ h A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYsgR&iTXtXML:com.adobe.xmp 1 5 150 1 150 130 1 130 2014:07:21 09:07:90 Pixelmator 3.2 6!IDATx] x\UsEpA*xQ-o"/AQ-ʻLWcfO2e:>g~9s~kZH1ZR_7VʰSl%1n^ QZb n=޽bH2>hȎ`l\˼c1aFRM&ddψGӕ{Ivr'w0`Ji a)\q+p$w @Vj].%Z)J@}*l[ѩ`;}.g{X~NY@ށ{cZXH`+a|+  i  g)TTW]` -rBvKgvG p3@~P? $ۀiSeO+nr[h/yBPK1Se,]|@Y_,gC܂\}!o>.vY.xZd A]P;/Z~!l `kgKw8? KA~J}-%%J&( IJ0q=&zw` ݪحm>ԫ8JzO1myL9u{sAKWZZU}Uz7~ʺu*)v8AD,DƩB[`KL?? YDp9h.jxd?*ָ:`0 P>>nHqCLb䩕Ww N?IYn,8xn>K[ڃfdPfE_̚LpA'B7pe1[;osUecy.XLI`,p]kCwiü5\HJUv ;.<6C[!{ZB]>~T>=n"0$N/&:ӾN :2vQ8ʥ^:KH8B0ZUȹϲ5u fyN'.Q5!eJ(5>s%pTًcp.KK= qj&?^hXb?A7đ[]adKS S“& +`؉5-ވ~!O[(Į$K|?qo1@ۂ2xJ^qPDT%Om;z? wxteu`\@1aG\gk!<2C ;R!i2Bo .o)%r,Y/ \i PAFr8#tw`+/C{Եrf ]kL`Rmkomq'Z'38VYVBVGOo_]|Gfk(mBtPaŴ,z1}~03$Έ;0  gac!y4ID(5,N'?D ([JaGe _7ڍݺ"_Օ]X~<$qGjH i[P` [>@b4rw&j;Gs9d]C2^wkZBϟ˳苨劚u'摆hT?-P8Y73B.8$.to0NF"+"Kr֌WpAT}48σ+>GKz8$.%6ͯCstDG8'KA\:M㥉edqB3`]5$a܎IJB0c`.7pت*kzsD *9؋a;MXYvuۢR 4[jd>8%nGMaE>( Nk'P$\o "HVٶpJ궲5R~;;8#w7|B3bSXE`@X &Ž6~z;00xt >$)qK'Q-YbNm]W_HoJ`wkyp2~^qZ ӶS"N[8mL P$W_l;PmGKX?_ yQW8եgp$p,4nCYv0\ק TJi<m6^a8!_I OC~^O8&; !y袛Ldq-0ϰ)`V}W_NIelm؅n` N|$=W @x"}⪎\ (`;@pyǫuVu[a $ tB_RuCˮ);8SuUK AΟP۷^x(k]s̋qx`>&)ҝ\c!HC̦O#Wyx璯<`H-].{er:MsMʠ,ßB 5sa | d r?*!'F}m5w^/UNqXoui^r[N.i3q!;9q!H|QW>`A칲;`i(*̋A-[˛3M*,X@a&琣SM-O`[ёsm; N-s?AlPg!چR@ݚX5p_iVFRd %L\=r+=65,TVq |/IP|vHWvpܓR$V8Hqr <%jgI~OvnxT0Dm`mz O ,WؗiH@,'.hvX=!5 |i6#s3uU-DPO0ui @=X۴A`zTm^l)S3+|b*qb9=s@dbڟ1"t\k1/I ;9ӳ%J7Lcu:}8dߚc ­4ݪ לpkE.oT v^̦~&|poOSv:x6G֘ _/5mrF9q  oH\" Ȟ, =xG3-C;|883c}G@$p$4liwtt,MȞgR0% DJ.w*QG2y3<ܖkLKqO GMHlML /H3$<qϞ^Sވ| lZwz7θ_) ]1]=+}bTWAQ-Nbpwө܃P--mZRCi~`!6m|p![.P 2fL2X \Ar"GAjR(Wbv[2{Tty\!m.t =)cʐAd0l-f%׹wL!ՒFµܿgлXfV@.M)_>UtĹ?0qD!P:abs:Kn%fS癸t~%LϺ=Iy Iziϼ^Dhxų Li pN|(1E˲C*q(݉#yKx8kq*"|p=5qbs{'7%j)jje>m[bga<0~~?B_dj2"*CID ώY0NJŮ3'WWjRK&dʗ] 0X$pw+uyFԟ_" \61LejGo <+6oZX-Kwf)uTR@RAS_6~[&|vB" :_D=-Ž2T 8~~MX~v77|mj腘esM`OkDsJ pϝ<ܾUBSоna.&zg++Øi~U\7t]  }}ۀdn-Ro089gE^ƨZ+zԟ 1A}!9Q㰌B,WdBF0Dl#ME޲@ChgIUѓ lun^԰;8yarN.☍ymJ݁r2*z7`"wr9`fohz8t}5k4)#rmy%.-7 + CvP- RN/ 3p Xj |pƹnY [t:ASi*zN|塀Ա̶!'}oZ+?\3u"C*%Hh Ŏ8«c Pw{nCc~ b_]ևs ڷ] ;,9{Uo0_Ln|rF׋:5[u+9_NU8#_ufLE>}ha9iJ_^lXAcVn3L6HdCZ"Ģ憭 +B2S' :`y[wO=[( 8ӔϞ ;+B7'!$&l0BXb>Pma ˓sWl.rVP s`2L}d%Ȕ;mBX c #WD/B?SՅۃo2d\ Ij"{qp h?O!b KDf7ό?UxF铊acWs'&Sw[7cs"Qy^!SҶtAF~ Ǎ|6!Tkp3xOfg<=B^L 2 p3^/WnYGm!av܎u BE 0]4i?5pIܲ;v-ȯT/  T^lkCVm=G0%y!XpyHA[nLl𱵝!-£Ͻ~)gNp}ªsqbnkEGkf$Sߌ<#aH8f}/:S.۴Cɉ#km[E&xZik| ! "Ƅ`a|&ql`Ilf#}ʼ+7bz0ǎwSP-y%VI*Aq=Cv!oǗi*ؤ(6\l y1u^M!K*kB%z%*!@ ~hc"͎'&&|}en." NbSs~eX?hY] 2&>r)u[aoI|nOEo kB^8HRl>@: sTv&>6ž*!Xx_ODCYh,ҕkqLO6ځ[E{4<~JPI:i V9m,V'ԍVTǧ c˵d! HTO@I.sDQ@,ъ[K^rG>! !Q~paڲ,U+XJג% fa== ]8H)NAy(?R ޗ Z_W7hO燃N5,>6_Fc0L` A<m )=P6yZ^;R߮!q @sLlh Iw$ap=&!F:9@Fp|g}87W;>f:2T#r~D"` e c/0![ z-rar{@s92L!D6c@8~PU8s}dy /a=j,5-R1]`obFDc?tx$l F t 9/Cȯ|!,EM=s*7VW4IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-nexthub.png000066400000000000000000000050021263353514300236450ustar00rootroot00000000000000PNG  IHDRsBIT|d pHYs E@tEXtSoftwarewww.inkscape.org< IDATxgpVEHWT>:z,H P ФD?AD㌅!J Ft!.l4|e Ï'{{"Ǒ>б3J]KG{?Ř`"$a*Q Xr; jP!_pՐ:򯏄Dj4p ʃ5$ !D/@.1^5 DB@s 7*8lY#  y &"B"< .8Z "LHL˹7 s+9~}AΔ'"<'Q&RTMY2*`ط_>Ps6[>bxur W7wߠT1%4*47$:C-W]<9 rPr^P6h\Fa(CqyABO:ҵl"2$k:ej$;c+mѰ)!K c H9K1F[`D` b@DZW :'^Z:wCE/EP`rM"T "dN} r@(=d{ C/oDPCLeb?E@,/݃QaiTaj5PB-P!S-6~PC<A]@N5b#For}<,4nOK\c o=x ¡Xku8$ T^ɞ:Np.( Z6"Z @Zɵ/Y՞ CHWYhAODXDHȱ_"& Wt!B 㬊 ˭o{Hu'"l-t |{"r;݊E-$d^9&"eWAr=a LO=f5t@Q/ L`rn @Z'"0-C˵vēFD7;T|!dJS'6.2%Jj{D#cjJ[S"tLyK$.fS"\"(BqiM4iKaMaGlh$C)S"􎱺w$Pm҃G@(4 TI 60Z"'yӺDeXHLƋWU}U M!$X@F0F=8V)UYMž>NN:Sw%V/XuT?2vғ2Q+="ؑ]-"o}CWݗlʃU:NC$T|g3+D}FG)Eu~R6RŤN⸓aaaaC$f rIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-opbeat.png000066400000000000000000000265231263353514300234550ustar00rootroot00000000000000PNG  IHDR-IDATx} `Uv:!!daSd7@EфpgSG g_?0ήT63:*ʪ"Ȣ0 lIlݵ;U]UtǗ ˹{瞻1! ܥwfJ-E^~ A&x3 c &3f)`:tfǎ$(FF%}T)Y'pn jm4M+XkpJ|W2DJJ\4O \>%TOSFZ+B/++ó%&Θ)>\]ZV`0^F&xT4 4j&x v T#X%R#Iܬ4t^e04WE_/ˍ!5bi|}ʒ| k=[B4k0N0Ur2y +.1-L<9v1~xgqT!$`nG5uK9uE" KVʊ247ЊkQ7@R 4&D*ˮ8l\GA?M!no%@ß^ZZ~:BAț6gHZL5t7IdCAɳ$&dqADLS腴` p ?!* g# v0n?شjcm9)(&˛1w>U17#ENӴ6^p(*U4C Qc{12P9"ـfbx9 y_*H+[>l:zɒ% hi7EH"d`yRkEbn!Ѣ5-ϯpݺGMP띕&FS䴀EHQ 6i ʂv>3~ tR&?0oêy|%#8E8meUyrhQKJw'$poܸb%e"j<)R33d8KBG%u= +)g2>@~^B}?ME7 I8d JeYaRn!Ѧ{[x^b!WfCxS26l8;d ~"j G)ԉO)t׻oX,EmQC[**o;Lb`3DYi2I>qZqΦ5K6Pkv׾l`dӛa]o6N+1:FM_O3SR;ϼKdLC{bMWfO`'~$?#t"1:2i7aΣ$ u N~3<7JW.^w3!7)Li"2cl .kUBzׁҕLvՍwNPeR,e`iz=pKފLIERf壘j L]\PM o\A0n Y)Ȃt7lq@8N@&əP-3]ԺIz[?p]0z/+{Zw8at!knw3$梕̋4ښAcwg8QD5.D+a':vہO+t(IE bIVVS|;MGq{"jQA@( ݚpΐTxs ;RE+gTw֜ˎ9Γv{A떀h 5ktv3i,ŽIz™.4v󶗞QMm`33)3tC sOd^X$`Hod94xn-!]>OU}En&Zv>7n{iiRL4W5$Ybp b%(bOG Lꖣ؃AjE7Öũ`X>="QV8߷qłM=VDg6zN(#`WEawY8g $+1p 1lpp k'kjBtΛ>?!KB^`0`p m^hxj a=p{NAۮWOaN ŃChi<)(goYz49/^m&[ jmmD$&mQiߋ`ECy=m }57,_B'] &X_!]*Yb96#MIGB8Q HupR.6z\4ao`̒MFƒR28ԯ zO# aF!f!ԕ8Jf(Cdy3ajNKZ +F@aZtױ`/2,{0DܬaCR"z\[-8NDSaج`Aܩ\ +f{9B+p 2`Dl 6WV6"8C]쬺[#* )h[qk  eQM8 "OUح//l˝y9 }ȰfOq{;x1ZR\-0S8Hu-/hCݿ[S\w kºI6G(qA~(hLE~QQq0};'͜V(mH>۲G"P?%0xϸh9 FSZ`Tυko$#|l:aeR'M%)8o"}9!??s@ :D4Ë\q1nCu1Uz? cS:f] L,> aC1~bRiD_FG]J$c]^3te1 'iGQPM= /4Z< #!Ds[cm/:2==ZP-\vGIT7ҲRC_ˠ/z0 HO::mNAwXy] )|+)]^D]xzI&]Q2hIzw**J޹ 6e4K8vO IyFR0&MPSl~%K-DroL@SWu1!QZҵʇ.rAx;n tS@7)Mn tS@7)M/޲EEKuJ).Ȋ}&ۯ1^0?X϶{ FX_3۵I7 tAveFM2IebNtVnkʢQU{P\/rCSp߰Rxx6k d\Y8e\EBtIFޕ:`b&h2E4㰘ggUxq2vIFpd"D"JYYf="|p>VH1רvyFpKkց`m+mƗ.,z^ t3B{)%Il0eU7%;ֿ$n`q>;{jêʂ1TGz!.ec/~GKy%UϹi;O20E Z^炄_E:io4 UOa0.m9w`tnxZ)AL[?[1ǁ甌,tw4(j::ù;tph# VvEaahY{p|q?d*Dӕέ5 f 29‷ "B_!JIħ$ / ċETv`cS(_#a"`S0fZ,0!];mhQ+qApݛ?r@di8v"V .MtA!k e/.̜%=BjEswZ} q6P2[p6wk7lzG;77):2H(+7P:fV>zϓo. l`"xLrS P\_OEîo!hx¨l[$ee;u\s6_0:a_PIcW~3a`ašEނKMȰtdqKoG^$#yLRC 0Y񹱱.Q NNsәbVSOUc0%n1.tEx{ؿ V`N`l2Vo6 ζDCK=F}/t1+~k1.1ȴor?n Fr}cVn8Zos%U͛ MPlc&@0?!V El w{Jr.?1 54&ya*Y2ژz%t!=KBhDښ×~\.VBO5]`r&>G>7QyF*1,D0h)UjoHr$X?= H!}[')ԃNMn bUi98t+hӟI޺ +&*袘1Apμ+&P &I*I$L7vhd":`x[ƌ3KW6:VDY4&(dܣuGOݴָ8nZ-̍) Q* &N-+wѐn'P?5ٝ<ӑ ࠃ5pѼ#D ±#>)9w ["v4C5(,FD̓F%Ti-uF CNJQ={dtW6h/whv/4/?IcpӍM;N=gj}g,ӥ֧`[ަ>胁yw(. NIߠ-T0"03jNSͲ֣dW( ZsQɛ3/!1b1 )= u6hMQLq$ *?~"F *3pFA_nٖ46oe-m/>wD<=#$ap(((%Em#b^TSZm4W3o(( 2guOA`Cda[VC]{geg^5MY*J6dNz:7^d$b0#]6ed4TKId^LXɄ-l\iJO.'{`ݸ?br+Y !~!h9pkR 擂.&#ęchh AN%9̔Ɣձ\zU0VbwJL$|U q'ͼez#\QʄM/qË ~HQS~垁t <La]-ƀr΀29]; ;ȴiOl$#0Aiv?ې( buJ8" 4`ߢ6H/PǦ!˭أ$/-Z4 DM-$Ya([ ]xI-{b/]2h`E)s8燺|'gOD):pEl,\AZZ=1"Pb+EDax`B@/]#f3k]ko9EG1z6aoH-muq#.=c"ҁta#.^Ch"0\@~TJȢl9W^ g~޷C|Icz-Lw3I*9%zݴf61[3sQ&ZH x}w_s݋E8Gw -c5 }M._siXjc:pϙ握,sFOML €$} 6VY%~t1ʴN {4^A٪cS vnHO5Blb5%:/SD H!P;@{SȇiP%??+jhYYT+L@*lZih`Tvi"nwKŇ&>0tA t3B@Slj4&JHuD a-Ys"@"Pȅ1P\XL.33 u:4~(bHFYo@N b:@܂<tDPF`3cchp[DEdbֻCu^auk U ޡUЍ WL 4:IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-prorenata.png000066400000000000000000000077231263353514300241770ustar00rootroot00000000000000PNG  IHDRsRGB pHYs  $iTXtXML:com.adobe.xmp 1 5 72 1 72 130 1 130 2014-07-28T09:07:91 Pixelmator 3.2 |Uw= HIDATxmW93./t)H~jcBl&ڄjM M5CcLY5146~hC,bh!V 1iK]]X#tw{g\v]f@;<'wg;y!80&`L 0&`L 0&`L 0&`L 0&`L 0&`L 0&`L 0:# kZ6' A+%Mo6eD O|$C9dpk Z6UqlXxVKZfY*nRQV%ZH,{(:z{O'Z*6ɅS=[tRFJ}YJ1`JB 壭|fFlKFoY-`ߦ+듒H(O_'i7g P&@H)SX=) ܉үo~Lѓ[ݶ6w/eCz^jٿ'ŵ h[I B#hpb+3?6Oj_'hݷwAI|uO<#.fopp.f^oҧ, ħ}=wxK-K){%佔B'YDZ6$muB yQ x?p4k_B^P& |Np^f(=BƳiG_ g P a$~!9H{ $KNb\FS~_@l7pGS;13NAK3?P@ g 3ęv,LA7D.N6+wZ'(ܛ*5o !6"ֈ:-SLiN_ݠ] Qh*CUކ )g<dzT¢ xm#5MSFlx&4x] JA@c>Ȝ蟲?u4c8k@D5 Ù6m XTVoS7 /-nƛ;Px##P*^sR-OB7So0MD_?#hD>eJ\ R =% ɛj%\yH1U 'PV*_:ٚ4)y'7rѿ4伤c3N .#WMY5DKliloG<^s=ffQKh:_ƷhѮPՠ,d5U79s}R˂|f`JOŎ=N$>)!w_ Qp?ۼc5JBΥ**aQÙ<9|rj1tjNk65[$$M5i .vC` h \4 $sFe>1ی,%β'B|3hHE<'*Ay0} яvA}}PV\“NEԀR84?ӡW:"mP*|_[2҆YMbɯ! Z!CߘSFűv@y1W;OtUNx2 ,ț. o(nRCG({=hm^XջchN%΋Tb`.=iU]k@S"  kjr%;4!Z6թuD=\RD#J~_I<%+ YbuS`!k@zh?[ aR[\P֏<*_pyDr'+Ǵ7P}~E LCg7-U/O=ԓtm0p^#tmH4\Z!5Ņ$PP*Q89!4tQ 4W zu(#tWO@&P ΑB(zG#Mx܎0.:/_g!]H:A$^^a]TV:뫷y#m/ =wc[j;nljҐؙ39̌K)@  @@  @@  @@  @@  @@ 9{޾mJEo;w۷}XB>BRYRT# I?hn޽XI C -0Ϝׯ=N} -T)% ,:/_vx )>x$N'u>Bax)9PwvW#`ҥTΫWc 1C8 dag whk3F% !PL~K0 ZQR7>% ̿EQWDpvXo /^}Q*bw+ Rq]kը%}:?gu.FU:|jr٢ DYiDsrjGW]ۏ|t҉-Jl+Σ4"`14$)ykrkhVUBdk-X䑷Iiᑛ 8਑{FԨyC_*M-TXLQ 15%ʼna8AY8f'_NG({3J=rV a#_rYVr94 <"W^2[Q,2K0q Ky!Ӧ;T#X(P>NhSy> 3F(E'cf98A `踔1A&y ~^7-f\6֡kOț'CI5$₭iM_sw#G~ : $7HqYOWVy8?U$~ 7oWFNJՌKAMg\دs - *Muuʪ)QR2SXգV:xua ZYAĕ,4o㊯#J|-LY;:yb+IA43exǛn>[scJ)g&8u}qBQy7ǚ >,P( 0`q{1=A;yPшP)E!>\nJ @C 4Y]+6-;Pc#X*d-ɠU:H/`J0Ij`ph8'/h ( gb>n8$XA}~(nDs i`7.ZmPI֫HSkآU x5`XtCq.y?2D9(u]< M)u_Rkr:^I@遡LD%Btnv3WOyufºg[L7ڏtܽe2sԻuq*)׻Olh,L9,D Zcff+7 b ,NRum="]w L[w =D);sݮu Y@j 2hvȏ:p#U̟ݍ]aS7$٢l: 06PF56n(3蚷ɀ೦y.9>C=\d[i``t;'+8Ŗ>Eyko+{$׶nN3Ť:ASeO"/2X1Ewك!G/?EM2NT> ~~FB%:JHy4|\jtǵt.RyN 9GwX=mw Hđyx7 29 U )š kߚ6H$UYm`Q.kŰ U֭ 'ZebJ ()źp[nM߅Hɇ^@L\XAf`w.aHAA>O mrC?Bg;vN@*A}`X_K$?6*S' LLۦG6!y\{3(y/ٞ`į6,)6QtFV S&=0Z ._un@Gh"^]RMlX*$MJcb;L7 )JJՌ?_=͚զs5<K|g3gV|ieD_|O~7뇞qY(R|a{q iyw,g/xvᡝe-O0n.ff8?' Óg ~*o`2I9_]BV;AZ1h K6(J9r47<4[&;7"vfXr6Vƀweho0$|[.vK.B2ꇆJ1]l(z^\Ҳկ4ٮWћF2u`â#Se+ZAZ 7w1){jo] wAma ijk(ՠa[}ÔOڏ<>=3ԏ-oiWaí}akm ,נ^s넬[T^MqO-t: &ʗCf{pm?  =:mq-9^hiCSb$ឪMwmo@d=o? :APs ·=ЄiFnws74{ A;[xɁ?CK{?WJAqmB% X3|o]7U}/A?6:bz HKp_0ºc3 e0E1A<Ý龚wu =m т'[Lrbq8vqhi"GBxmoXrF!;~|xXV_fd`4YY^NCu$Apx@ +rb (|,9̠D}U0רc]%;λNmib k79݃ IDշƊ (;^ t?Zôn׏]h$1̱ !H^Gq l+muzRƄu{$XSȊM_ pQ1:\7Lp;<Ҷ $)αX'W_=.1?6kDR @Ia= @V7Ǜ^uApϒ4>xeK@@.ʹ`J@.wµV<y_Վ]>G^׿e)H}bA0 wtjy=E \|Ne0#SO4Fd%`@pǰ C*]jgxF"oy{=p~ O"cNm ,KA#,GCܥ[/Ǯ##Q{\|$BqSb s+((|Ȫz^l{A/<^ۏo.N`dcKc*\ L"L#0=z˜GV*˙`{ꠤ+׮WV'q֌<@Si\#@๞N=Z$w*heIyQh]&9NP餂]8۩N wqb޺X9Y~w?*6 骍 ʚmC'kwX:pj~ik Rs`1|s]Dtژ?qYmYr%_W8+vWu6[n?8hp:$ )QiH2A'zD`dƭuA0\w59p9Pqs)K9@ ߸ v/ #_\dg!W~)+8m84UbiiSDh `uFe,YV5lu_{0u|\wA$)g$R5)F-:GbLoMyu?-Ͽc0IzU+d'| @'#olFjp},ni1QO燿@--^ν.0$3Ay%ja)YIԟˮ9lxߋSۇV\^#G1_G(i²#\T힞|ueu_YϷ`Tݱb7>d&-D )c|}7kI)5>y|{}LUg1 p1W0ɯg;Z!9P\MuW)ZvR=>)H G`7pw}_޵ق=y݂ za<(R6QM׸V`v!$adW ~? ʺn/;! $Iɲ&G$WBb ZT}Rp{ nPU{~mg\j`=Wˋ‘jW9t`$.LD-g%kenmJP)L~[d*cṀ,H%[ d{޺^"UA}(`*`_dc?4 8J"!8ksktnw.=d8YdҋUX>G ^;=^yDsrnsf;e#D(-W xWl3ܯHB*ns^#'IYl$P5|`P׫ XZ7=@\"H F`r&{`FΔNRZ-~ձ7 JE *_1O=`OaL VvPWu'S^*wq5_$=ܥ Z%qh0,d0 D3`xe$[&[mwbbJ B~#+PGE`$I9G>zV`4 >+s ›o(mYyNס. um+ŎtE=Qd װb`["e"ӎp@@ȷT8` dJo[(ۑ"}>vzK0nGG}R Ыmj9.D%vN0GV!_a vYGz*D(H,DDHkӪ>|`2m5 վ!QgAdC+ b`c;%{MQb %K[:<ßͰ+s:@j}ڗm n#oχ bQX'*>B37#VXjBF\dOkaڎ<(B( #]P7շ(|h%0E?po)9ֵwX H޺ꢑhD &2L ~ŻIOo}z}ceP=:5H4n)V|S Sw )W35wu׳8!oPe}$ <񋌽~]B H!'1%آ2qO8_8hiXCQD=k-`-)ȎV#y N!"C(Kz/#~u;t+ @>j%v(7C{>D;:0DCQҝeZ)pcdȹj YEg*P.TQ@o\bH8 RI,k(9uN;PD\#@BM Lju(ι٭gnA*C)(V٧`o`YIui.29+|'FB += I]GHr$v 8Sw LS/jys*Џ_t PCrK4}. [Bi !^*Lp[e0; 4 ORˍF`@tN1 Y젙t VN4I'Ey0(?v1W2]f+,[(bOq0r]`n4]|J1z:=^QxIkzH اZY Fs3tb_ƁhJsBUzB,XЈfɚ՗>{5 w G^r2Vf 7tkyx6=)f sQ'41PX@܀,xJ"g9$,9Q u&kX"RJYShS8EbfWŲZϩ.|&M\.V\Tב.ZyWxbduSHb4c[j:;pFaB֚ۃ;:-^qNTU,S0e TE%k?\+te5s챱i蛳NB;D!`ʯįdHDbjoXq -Vn8O7z5[Lǫd[BЗ}ˉt*$7=Dps;q4,DŖ.S_SH1E JݘSaа"Ans#_9I1M^FG]2RV3-B?KGVw#9h}^g&c3%vj_һٖEb } Fz1Ye 謹ڹ ʒ&ۅLĂvKI:A=ceymJO5q){,3Ep:LF1"s@ ! $ǜxvr[Vw5jtmɑ*+'M@LPNɏE*OHyVO7e瀖xbQI6j.-{V. /rF~QU ZW_C~b6&8>=e29$EK ӇG1F xD1 j,vbkcOl\|f=A"쳛@@~\eڅgε՚gGOh=PQ'ԛ"-T% ew Z˥و`kU3~Nw1ߊq'ݵTDfgW{5llݸz7~Ygp6+Ru<%JT~$V4tn?+-I&zqVŹPw].Uغ,;PgF`J(&s7˲'\[z`-L`bÝ֜dK2HwJ6꟨Xp{>Pj~>8נ e1Uq#maY渍젋6'GjYΆm-rẃdg1Y  3Ы>eO:%߾ʶ(Db3hADHneQ@Qub[i"Cj\&ܭdm܉0K/ I1f72q9دuF md#R%V^ͿZk=`Z☩anX$j7kL؏ZH<6n^$X6R&Png"WKc{@e?B*8Ƥ$]#uRhb¤ ;Tb:i` 1ԃI!K"5vYԂ:l~x|0\2Th)?TN}K:H"D[SsZθ%p|'jϣ KE=Ss}"Wܧ]q_~9ޱ c0.֊LhT1!us!1 lfPs3 u0Ԡ"^%3$D?E"YqYŊQc}'8Q,`@`~Iw6Y]!"S OV㚂c`g7;~ 2z$+Ht٘ Sr첥`E:ʷK|Qal@X'î7%Sq1fC5;W O s'5%N|#ג Hn\Lcr~ I=|>_S *bDX=狟u~_{)Rh#_k6r1N"yd!)Uڈ@ Ĝ5jZba$Ipј<1t|D i||%@Pb霕0;t|V?Rkyڸ(-rO`$?fiGA/DL 51y:k#du YSwt)h8JI8M#ĔLmRFƣ ϓRߑH$1^.G>DE rLK@2Ҽe5@/(6m-z+Zal% zF(p(y2)OK[njs #w`yӥf$C[&=$C/)_mc,@>|޻M("?K%JxXeNiT_R,APctt韊&\ 7'@Ř̸~_کA~G*a_S2S17= 3OaOq֒jH{d OG^Oコ m 45%nLQ/ѻAco{Fܩ56"(¯sKH'06_q- &CuˠO( !❺pQ&ȑW8o@Sox.%m-uf+7ml ͺA(b^Q.¾p;)Ļ MrLVdo ;'ё0xDWSr?FRNSgtRm4vӣQ boL]B?S_aQ|"Y?5F @o:^9YD.D2PQiݻ;j h 7gd0L 龚/r{^Ks2q}Drփ0u!)ʪkUS~8,.Vd^ebFaI^]u|+75,M[tQx$Կz RM~qJj\,$?M|yw=Ȥmˮ:P|I.…E:ԫauzs2`h00*#kmIq;#~V+--ͨ7vTZHpxiZq@ {Ul!'H6ۻOWTg9 R(!3;)Qfܻ˧1tkIP֪f<1z20o7-+Uò`ltYcg[VJfuB F>`"!]v^Ӎj_JS*PATmb߂^=QyÿgR&ͮeMEc 19CQ,@^0Ngѹ.xm==N 5m̧/^ЭYF+=E fTrD7I1 gHkFޚU 41x @9vhTGv;OnΌW6u 2Ç\f 0!/Pe`2Ͷ +nε8τ|E! "`[yf?:ZWSmO@Ȼ8n<GKn؞STDv0Uig a{՗ ryoQ%d/.u>Q]ٶrI@d޼rXʳ):yï*Gٕޟ+L{VFQ]~Hf|ɚÿ@ōN4ZnCG( H}`.3^fꠤljsdtU[N>3z»DoO~qAn 賋J xf+;Pm qs9DVx4KIs{&(pak?/aEvlmdmZ쓍9( kiꑷ *Yi^tʡڝ9ßm'pf{ŧZ3k$5DHtb{Roĭ#QɌW~?"]52{_j>߃a\Ze}ty}b1`dy,Eqoi'쁤bzRcsz_N^,!at`:ڸAd_Z# ~ %pHU' #h&YKAVҌxI8EymO)_4rIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-rheinwerk_verlag.png000066400000000000000000000030321263353514300255270ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<PLTE Xk+Y0mRGzCLSRWHT^>C R{SWQUT8S`RO JTUEPX0/@tRNS{DIDATx o8`c ':q>X46\W7$=ݞSu(><1R?YD @"D @"D ?$ğވ@"1B?Ay%EI gPgдm{?_B&\t B(ˎu,/ 0oE ++q`QR1"睰mu׿#.f4x^3.R%oqj0 ^c 2'Y⊀VJ7IzškWDh*,MB!Q":l#p; ]n\G=X^l*گC׮ݰ=BoD @"JGD @"D @"D ¿~`j8JGIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-schuberg_philis.png000066400000000000000000000525561263353514300253620ustar00rootroot00000000000000PNG  IHDRjgAMA|Q cHRMR@}y<s,٩<9SbL!GĈ 3,F0+7T3IlpX"61"H _qW,d ėrIKst.ښAdp&+g]RәY2EE44432PuoJEzg`̉j- -b8o׿M]9La.+-%Mȧg3YះuAxEK i<:ŹPcu*@~(  ]o0 ~y*s7g%9%(3H*@C`-pn VH@ A1 jPA3hA'8΃Kn`Lg` a!2D!H҇ dAP B Byf*z: @]h ~L CUp΅ p%;56< ?" GxG iE>&2 oQEGlQP UFFuzQ7QcYG4G۠t]nB/o'Я1 xb"1I>Lf3bX} *QYvGĩp( &q x)&gsF|7:~@&h!$&B%pH$D.q#xx8F|K!\H$!i.%L";r3EHK-AFCbH$^RSIrdd 3Rx)-))zR#RsiSiT#Wd2Z2n2l2d)EBaQ6S))T UEMSPgeedɆfȞ!4--VJ;N g%K-sɵݖ{'OwO%)P_RRۥEK/+))U<د8䡔TtAiF쨜\|FyZbU)W9.Kw+YUEUOUjꂚZZZCu:C=^\G}VCEO#OE&^WOs^K[+\kV֔vv[]n>z^^u}XROm`m3h01$:fь|:kG23hbabhrT4ߴw3=3Y-s.q_vǂbgբ⃥%߲rJ*֪jAe0JOY6rvvtXLǎl&I']$NϝM.6.\ι"En2nnn[g=,=t٪E2}4\j5loDŽǞ~q=''Z^utv&vvEv >mяN9-{ LOgsΝK?7s>xOL n\x }N}g/]>uɫ,u[dS@u]7ot.<30tKn]p;;SwSyoEV Adobe Photoshop CC (Macintosh) 2014-02-13T09:46:14+01:00 2014-02-13T10:08:14+01:00 2014-02-13T10:08:14+01:00 3 sRGB IEC61966-2.1 uuid:3D90B6044FC611DB95D9A98C0E2341EA xmp.did:4F6BB8702C206811871FE169E7DC3C98 xmp.did:DA67C380402068118F62A588B3F859EB xmp.did:E6C74BF40B206811BEDCEC12B17E052F xmp.did:F77F117407206811871FAF8B0949E228 xmp.did:F77F11740720681197A5E94B7C2456C1 xmp.did:F77F1174072068119C12FCC73F11446E xmp.did:F8B1200EC82068118F62B55C94B5F1CA image/png xmp.iid:f7d62d33-76b5-40d0-a403-b39009d10bcc xmp.did:dd036a9f-acd9-446b-b3ef-dd421b6ff3d7 xmp.did:4db3ae11-c20f-46d1-8587-b570f3c12341 created xmp.iid:4db3ae11-c20f-46d1-8587-b570f3c12341 2014-02-13T09:46:14+01:00 Adobe Photoshop CC (Macintosh) saved xmp.iid:6d119d1d-89fb-4aca-8cb4-0fe2c3356206 2014-02-13T10:08:14+01:00 Adobe Photoshop CC (Macintosh) / converted from application/vnd.adobe.photoshop to image/png derived converted from application/vnd.adobe.photoshop to image/png saved xmp.iid:f7d62d33-76b5-40d0-a403-b39009d10bcc 2014-02-13T10:08:14+01:00 Adobe Photoshop CC (Macintosh) / xmp.iid:6d119d1d-89fb-4aca-8cb4-0fe2c3356206 xmp.did:dd036a9f-acd9-446b-b3ef-dd421b6ff3d7 xmp.did:4db3ae11-c20f-46d1-8587-b570f3c12341 1 720000/10000 720000/10000 2 1 250 250 gYIDATx^kWMP[J]HTh .\D\x6jK \'If /3|?<3o_;M@ r"E;!w(BPܡCr"E;!w((3Ojz+v*Q=18Wu?(ʽ,}79R[E< Z[O#r?pHv^y9(ѫ?(=r={=ch(=|dl:ӕ=κ_&+w{&/lr3GNC6u͸3[/VjuL}cD@c3JiL݈3QИ{=3:)͝=3ΞQHo;{Fչ~\3b?dsc:EΞQE{UaAEȝ=žQ_=2R[5b?@wjji=w {&}ch@3#u>NCr_cl?|AgGQ6r=s{F r({&inǞI{Fr7-gE`Ϥ7Io=*r{&I1L}c$3!M{ƞI oȞI ́FǞ) {&16Đ{ 왔{ 왔{ 왔{kd{kd{kե7zz=rw=rw=rw=rw=#;c͞qܝgǫKgݥ/= 3ΐKW^3oM=#;vl=#;ƞcHFg"w3b{ L{F&rbyoqݗ{r}|Ɉ3@{Fr=# {ĞbψB~gD!w3wܽ͞YaHAޭ5gD 3B{!={Fr=#žg?_G=Fw&{NqɮZ!wgαgFAOgDAgEgJDgJDgJD%`ϔK) 3]~ij왖Ƚ'gX=cʞ)c=Sr/ {&P].s.{9r=ƞqEcϸE ϱg\"w^g8Cҝ~\3b?{ܥc8D`ϸB`ϸB`ϸBq`8Aq`8Aq`8Awjj G{槧u=#U#V~b@1gu=&>Lf%r {G=c#ÞAaF)3LA}"=Jg3E{3Ő{3{3{3{3"g:E_XzWK{ϐ{O_{vŢ%g=n&=C,_{SpbpR3䞂zͽ#Y4=Ch4[1-v]=i!хw_xb L/ܡCr"E;!w(BPܡCr"E;h6l*IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-security_compass.png000066400000000000000000000100131263353514300255620ustar00rootroot00000000000000PNG  IHDR pHYs  IDATx}t\uwg&I4m23I[[43vYR,GL,T|({PwUdŲ`<,El*Ph[hfдI}ԶVR}yg9CI0  LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 bGr 'FUM6^Iwgh9ι7ׄ}I;㧒8ˌ>#H"Ups|xL_fqYaqg cG |'ɾ%uf]XJ }=,?()z)&/߲edK~A@vz;SNf.Es3X!{+ӿ)w`SS>rm__5e7.xȟ;.%MCήNj҈>+:-,I[tȏx>kʶђo8֠l#tOUMJ~R *}>L}(=8MM:2X 邶 >jc>/s)W3^JgھLQ"0 r>d#UOaZAaM:,7uΥ'8s$WS; =ӿyݮǪo7$Oʈ?ơ}7[.uEuZ7C.w \{aҮJ%uJj_a\lb6Nd*TIAlwOO{ 8Yn8iw֯%3۩`z{VotKɽ1a2s,ędRzhGWcۥ:zs@2罓-8֯4\<~rS*`^L~pf%~~OtzHՐtzس`skdOLW9$z))[ꡏ:JgMQKTo%9R/zW$15rx^#ji Q[XK.wLϵ8K +6lyg DHc(>e5NgsәOXp|jlL,x'vnuj%Jߟ>i2Bt\Y BxkQj*@P V7Q=S82H%+q7.kn]41uEuX9:njy_+ky}Ak oc"@2j$aK̶Xޣ~5CFH!b}ܿ >ݒ_{o${:)(ukKK<]PXMWؕ\rr'on9Ϥ[̨Z`yw=ORiVzWn1 Nxa`-Z16$S- kܾ=*L# H%0I<_D/a!F|Q%f?\j_Pn?/^@>t@BW[\Z4gfRac1KBAuorݹA @t@3$xHPqP7\pM0}X1jT%,uu>U=3X%vFCKBOpbO-^ ΗkwCI.0^I으o,t;_u!Ow 2h:Ԁit\ }3-k_8=!T?/-}\U=?<ɡp++_'x[S6_agGၿ2o^+t_jj/;Gh;o+(&\*֑KLn={`u_=+۩ln B?$ N>ၐ5A(~%ݺd HJt64'* =@Ng4A~u/O[3͝L0Q9e!Doknͯ><M3َ-*UyRr]7d/~s\ n"7RKvU)ZtY5;.tr$Lɾ?hJsw+Nj [F:VsRuzWDDT|v5WTB8X@Bȝ`hSS$W_y6l(%{<%,pPŮŮMpBxS!uLr{$ Tz'Uy? m| 2K/Ipe<^I9H@t ډ}X& "zʯF,v'*n͟ v.ݾaMߟk\5M>wLs WȎEhjɽ=LTx=pG_b_/0rT̈́/t&"Ը9fr8V Տk^Ӫj.Cۏ b#V󥡩eɢޞdcc#|5( *G !uEu1*8s9>BP{p޽Oޏ`^` D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,B0 LB0, D,_"NIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-sga.png000066400000000000000000000255501263353514300227540ustar00rootroot00000000000000PNG  IHDRiCCPICC ProfileX YgXK.qy "9眃䤰 D*`@*( b$ wyf귫zzjiFEGM (n " P}cy,lx, ,~1@vh_o8@|h`7$FmBPQ\m/rJo 9/8FAoo5<A@4|@` +G2_ ГFaӂ}}}Nb=@0C_;d b`41VU=0j?m?~?<=?w{M&5? srrk3c1g3I"H?҃A:V@A6dg**ʦc%EWğKq3~k`bTh=/KKAG A]1Ի6g (1PFD?g#~y;\BtZQIX>[oGnJQW{&E_{*]jWEдnm{>s|hlްЧa zDM DpG-N`7 PN3<ZA]0F83Axb!AH 5H2 { (JBPTBv=BS,L, %h8΄2n[.<O% $Bd5Eܑ#9H R4"WѵD>"+CȠ48a|1јtLsӂya~b|Xi &`%S+؛<]p8q*p!\ ׍{-xn4^ocYr| ?N  ;!PB't~1Ӊi%]{@7CB'j!2b#&9qD"m!IHe ۤ) =^ސޓ>>4}7SE1=wX| } /32nc4gc`dla|IIi'S2S eLŘ ̕OXXYYlYYXY#bdc9|GfEXY Y}Yֲdañ岝g6NfWbwfOdd>Ɂpqsqp\Xl|K˟+kkm}{#ų'8Ml9x|R||)|'M? p d <"%NѧQ(7(sB|BfBqB' "i˞-M[&jG{DEEREΉ<U -&&."_U8x9 5Ò8I5PcCRTTiXZE:Xíح[#l}"C///sNfj6m{n,+".{H_\\ܸgjfqÒ򕕔5lma}MM-5=l;a'nmwm;noSX  ǝ$z=:s1r)rtuMswwv?aQ19C|G;;yvEv^RkK>>G}| }K}?/P.P;plnPI`oC7\š Ј&5hS1P̎X6#w0N"n_TN|eˉ,IRIIoMR0))BSNC>3LwM=E{u{5?sW>}hYOk:9|~bvy\ܒܵ<߼n/P)8^+(={LKQra-G(Gr|-*STRUJ,+,*k+)/,_4l:w4c~;X_[Z\=vDKXMIojkΞ9{jt3gnU={|.lgym2'8r/ q_8zReˍ͢G^iZZZZ'[^ռzڶk;:*_/$vfvnt%w-uGu s7o2ׯu[v;jwU *^|}-T ]}Fo y84:ػaO?19yD 5/%_6ML^2|j|wk3oޔ|{»Y١g>D}1˧%>728:73OX[^^A@Z*!,Y)-u#ELzuuA-Is&o̼[Z5-k99v8}wQt sq$PU}:K  T|.#t l,u|Z4O_Kx8Ԗ\j&#AF{tng~7ս@EvNNz.-/OKF!wʡ뇫-.-U-˿V]}&_9jM.r]'WZj[B^tu|>9sx_7wݢk溽|gx{>=\|qpH1dӲgnw'NO {)dԎWƦK^;0{ƻY{}K>Y3G뙷]Xh[ܺxת%eoCWY%ѽq*+hnJA|]j=VlV\*TF,[(訬:q*jlњ'6՞8})k7J6.R'_RRКۖ~jѵ]{#{vZP)sK_l<(1048ztͱ+O{4SE^0|~mӻ>Sg9Eb_~.mڪ]/ ]KĶhxepG2gfc"33pY٬i9qC<ڼ|E=()#y3o}j/H]`z|Op݈(rteq\}kbCIʫ ]p %RɲMGTstVӹg Εit+8u;~#凎?i'&+^Sp|Wūyk? Hhʼn @8:1BRCk Kp\ wgEtp(r(b0՘X6vl!1WWG*QB"aN.n@;'!/>߫{k1zYRQⱩO9d݆FrS1 -Nm5t׺#{Envـ{n >\{1s4ɷ 1 5 72 1 72 130 1 130 2014-08-02T15:08:26 Pixelmator 3.0  IDATx pV yH@4B% ( (RQ j>J:JłhqZh *:bD-PDD<@HH OnKdߗsw0ƈE B!P,*A AphFpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm@fAD sE^,RVP~5ss"' PzHE"-DZo{b|SNHdT Z T'rԚF5)d)g{ BVW"Yv릓DsuZj@#O&/kT^iBCLQ!xI{C9rs[!GJ,Hbx}#}DiKt(7}ZT50X"A{X>PmyGR׵M1mDE xVcoYGFޯl"fCd @[Y'0? hKՓad6}}m 1A2ֶcH9$,rIA} pȳ@2'HnH DnzT$2m^%h W\yH\U?۷Gg])"<+ !g B8_3.F\14M$s kK.%OVf1U9zWy-em;Cb(!"7<1̳O"B E~-,]Md} hHHo+%$#D`䋼v6]h߈X֊<3A u!oįI-~?GfyeO1fE5˜31ٻaZn~ؘTR]rȘs >;]Rc~B۩|uݶWv'GTA)369lLzm :`#YK3q(;sh/39̜y<0ܘ5s6ɘWgS_d2,s1s_mZl̽j]vml3/e5s4ȘU]^zO5kk6oM^2‰i(%ȼnHRnWdAn{9Zꭵ"Qy$އ;FPl "YH1Dz"͉d2MݑaA\`SF;*62TW_~5c}nߛ-l`I]$2?[=I%?;0s`6ج|9La˜o+G\(*s{%_ؒv)IZ2gUYθ\dK"sMj1qvȅ J|Fd"C&_T[~|~inLd$.]ņҭmOe%hL@K )dQ擡29 NQS0#e Z״ +zS\BHiGDs6^DWLujʕ}ZHHG2k䟴Kr#a71rP@)"3δ 6V( 8 Սȝ82POHDP:&t.+kwFg\k>NfZFm\–3KO 95@N8n Q)?1&8$ԧ |)ORd#+lS)pѰbb˨3^8p}(> Ȗ58:dHqF{5Cy*bIЅg-A>u1 >եhӓخ^Dt-9A=q{q rPDv_,Jl_MYw0~2mi|DQT)y:=M:jːq<ozAUl"Kٿ fލD`~mTyQP_COʈ.ZKVX6?.b39H~! c{0T"yw䀔,n;\bܓ8ǼK}7|Ƹ1-{x@;Y)PȷD_6Yߛ5y@k<{^m~x4$,b{ojSARpD׀Ԓ12"`؇,@r'Sd)5q*{p7 !DSpKJpNDh80N=7-#}T߁r3XW:k K !}QzsXuKLm2Lvc AVB꒽-#ȡAOŹ"k߁D"Av<0ذ񿜱ǐ팗igZ;#5g,eDR.48Э!4iGG!4UK? z̍B8(;: V!\QUeGg*7JJuzLhH +ul~3A'hfXVX [* fo$f7ս ,6{#!#!I!=q^thFpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm9BpXxm|ă2\IENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-singing-horse.png000066400000000000000000000505371263353514300247610ustar00rootroot00000000000000PNG  IHDR pHYs   MiCCPPhotoshop ICC profilexڝSwX>eVBl"#Ya@Ņ VHUĂ H(gAZU\8ܧ}zy&j9R<:OHɽH gyx~t?op.$P&W " R.TSd ly|B" I>ةآ(G$@`UR,@".Y2GvX@`B, 8C L0ҿ_pH˕͗K3w!lBa)f "#HL 8?flŢko">!N_puk[Vh]3 Z zy8@P< %b0>3o~@zq@qanvRB1n#Dž)4\,XP"MyRD!ɕ2 w ONl~Xv@~- g42y@+͗\LD*A aD@ $<B AT:18 \p` Aa!:b""aH4 Q"rBj]H#-r9\@ 2G1Qu@Ơst4]k=Kut}c1fa\E`X&cX5V5cX7va$^lGXLXC%#W 1'"O%zxb:XF&!!%^'_H$ɒN !%2I IkHH-S>iL&m O:ňL $RJ5e?2BQͩ:ZImvP/S4u%͛Cˤ-Кigih/t ݃EЗkw Hb(k{/LӗT02goUX**|:V~TUsU?y TU^V}FUP թU6RwRPQ__c FHTc!2eXBrV,kMb[Lvv/{LSCsfffqƱ9ٜJ! {--?-jf~7zھbrup@,:m:u 6Qu>cy Gm7046l18c̐ckihhI'&g5x>fob4ekVyVV׬I\,mWlPW :˶vm))Sn1 9a%m;t;|rtuvlp4éĩWggs5KvSmnz˕ҵܭm=}M.]=AXq㝧/^v^Y^O&0m[{`:>=e>>z"=#~~~;yN`k5/ >B Yroc3g,Z0&L~oL̶Gli})*2.QStqt,֬Yg񏩌;jrvgjlRlc웸xEt$ =sl3Ttcܢ˞w|/%ҟ3 cHRMz%u0`:o_FFIDATxyeWQ/Zk};ܙ@B DD S@C3T'< >DƄHggZU?NwIOAN>;}֮U[*G~861WNf{Wn?[IaLe\g 58{*?\v=k#l -E =\`[:m˽ I--*Bq^G ,@Bt?I׶~q znMͤX0뽦$tG8|uPUܲ|aecY|Y|L"WgiΉ&&X j.+ک7&eyF.vC :6r?QmC1hyb@ hvoCe&N#}΀\4+.K^d @H,Q%Ըo*)DE8t!|y`Iv) z|/G5>W"PR@ *PRTU .@&U*IR$+̋. ¹ۆpr ?Ͽro^콀kV zwP`+z ;QN͇6? :#Gշ  >.Zy\/q{cw=J aNDq( !ݢuG;LY#H To \Y|̰?-cDsߑcְ?/'p$DӽR(=!.j(XMYylYj9Z1[7⩪;l_|ӷ x&0}o]~pO){ H #IXc: <@T*1 $AD1 8c5*w_ox,p>)_PU\b g/ۆpcsWGc=eeT~Z9HPxa( hi@`fZ%EPa{"2^$Q UEEZ$ocPx?5VOEX&X/ ԼVUݷ .x;IlU VWVUv(yEnqd/D׽LĘB+Fu`}VR)\;vbyo;mx9گ5x (Eâ\Ll8@k= ՟TU_]jG<*`Q%Bd b0Ӕ_JSKvm;^0)+G|j NBƒN T"&Geas~7a6PQՕM}oyqWqR:W* ӄ&"mә/-PD{̵2&VFhg * KgD Y1Dwd6y;3̌Opxmn;m jWwx;ach)Wlk P3F07ST( QRUkVbx3W'^ʣJQ:߭Os^Y.Ȝv„#_+0JdE_U:wOJq7"Ze"_:ãw9kCA!K^)K.߬)5=6}ɫ&J]aV5-?IE,Fe?eCDRW[]U[abGT&^cUIUQ8AkkE .J.4jTw[WA54se hA 6xVoVo:Fj "!"u^l\>}eB: I <0^*TcFh+` 8 PFSo" RR?{pD!P˟!C"! Oc*[3I1+xRl$:fPy ]e %vbxYמ#Df_y4ir&/4??Y 1 9f^Qc RXL& C7+3T  Q+!ϒn[¤(I#5 [o}؀sywCyz0u"PEeIVkۗ{*OtpL9@!&R+Dy4'D`9 A:_,J M<;ٿ\QQ;SE+1akq}ĐE&>ɤ%D8 (d &m|'1h8\ i bHeE:vhq=Î>> "&I(VohSBr ! dMV>D 1|P%쏞!"-M/tˇYTĊIhaؗyOr.ڷ6IU*/Uj KXw4J)Bq iC5wUf`S1 4X9aC>+ǿ{mp#P#WzMu2+"mo&;J-zY=Wc+8aÁ<72>?} gE!k]ԩ}B54j/Sf* %L6ϵ_o]CKTpOuxS NpRlw*ĠZ&_N-8dW*Pm9gCL!UU%3 P+ x`jPB"!xU*Kk6cOIQ`|/fT,ϽF[ _d\xtkoηR[]{ guBU}]ɬ"0bSN556XI[ld3ͩ*bU+oH[]d|J&n*b *`Mm$ڝ@0I75wm5{Κi1H89؀kr37sz/&°prᖹ7m\T6)"G;K H,{D Bd̔Rd$@*,X0uIsܹUQ ydMױj s7Ϸ3."rSy!k8մ=FEְkC͇o`2SO`ijD$Dtg8^ 1v_ߋvfbm\>&+sw셗]0*+ Lt(/_}`0y~f->Z%"j}>7zL x&Ai"tH I/ȿf|"IŐ%@Mˬâ||uyW0 }1q;ٗm[C+ce<i$8UX&J̗[mU&r ./Z:(DڂҘ}M݅sׁE鿹ӾeyRC|`R+Z/㲺Jvb󞘉1 (f[2ՙ<DZڕ7糷E 5[FyLUB DZ{ͫ>֋lpU(t{y?Ĺْ?>]А[x{+e8)ZWyk \bXJ/6$H@U.W(IT;DzÆ{V<_uk`|[=Y&>)nz@'3")8z#߉):Ⅺn" ._pͥ m[u-m.{<<3 +|ݮ*% n:߉v p5lJL$l8rh%-*e"B2*/"=ngosS+oE%OT_$9aWu^x=3[oË>b\ߺ%C@ڸYŃfP( b`l 7H*/,n(~CC-yǽՉ5dhv( UO3 h;Ig %@1Lb ^v= r̾܄vj`8P _R:" eF@ _8äDqc!,+pnQ1} ãDx/]K^1ý݇W' ƅ*jľɋoシ×l_weLXL,{Yc:|17门oU^sٛOk%skE"5 -o++԰Z?BPk*'qM01-6r%]ƘM$֊1iT7Qm"O’yEӛ\RcDU &DI1:0G@~KW[V?|240NA EISUh]#%U1 p^#T72Cy#Dὰٿcvf?_r5ʈT@oٴV `Ehc(d$3X/i+4%;#kX Qvh0yџ#wXO~\Sc|DÂ':QZŽoطۆu AO?kɯS"+ðp?*B'y!7_ō^~`m,5OXӈ"i6"݀{1N:O_D̵ کEԟJA 9xZ BMfPTyn N 5%mkL!*J?^(HTq (Y5ZRU'!%p^wmr"L! 0`]_:A<̱N56S32{3Cc0P3M@w35}jR{EZCb -K&4Z s'+HοL}Pf@,}ִ#vbҩ`U3Q` WB+]:+K_^1R NdD1Օ&[iCMVzpknux?vh^sD,_9-Ye^Z?k>(܁Q0%s^6ҙ3 1 5uK<$hmX3Yj+J^D-bJ50c-X}:1 <}uc"<*'?vx8~X9QWTJq}Hy\#Rܲua /=,CEm(f[ͩІHwkPUm~ADI+A^ 7y ?8~ /h bֻZr~26ji|t"fvˍrZk=UD *7(@Tґdo_y7^GQ%2I+_{F)'fQr#ր\hSJA4&QS>o5!폫t ppc 1IƟFaS@>H24u3j h $+ADDbkX#zqű ~DTM=v,v{j͗:Ej3| ""F왋f BxK@B_Lͦ~ u5xB?(Z^#rvEP:RF/e, 2h# 13k@0HH "KCr6%׍.Ĭ%5*wg5\Q Q3: Hj' &l\OW5)kú%&1r*n0&#<=as.~犊u%T嚄^ib{ Ax*/n7fKiHEsV *ܽ2*Z;.ٱCϭ )L1ZӛR4تOM=t x.T魆1k-@jJLyn&OpNs>..mMXh'|vu4CIB C>d hjj8yN ZOogNfS {ZUkY ;W;B/Z,uZM=M \'ԘDcO+^<х6 :85&sL4Qer9<1; +q /t[ֆж^0]˧)fxӓ4U kyUvjϰ(/g5D!n2W:7`J H-#n&樞6VUe"5[;1w6vf]3*6ހȻ vvFn\:ʟW:yZlmϣ3:LSM@ n"fw^y (p\:(e'ZoՋƠc9 /_v^ SZa4](ncvtVG+:):ݬ11ޛf["ۻoU=k}\_eɣ=aRK MwYb,2цhCYk)_$]u{7j)R=t|{hz-mչN8Jڣr%DU^ GeQ7eJe$,j7KoSU<}/ Ub''d'޷r€-umz5nC$ 1NYi-=>*HC q(U Q9 B[tb~tmvG}H3W!';7)Nm G-c*W^/r^0( qQ٭3Ρ,55 PY'i}_w\pxep|DBI"$a )P`4QL4/:4DuChXRS6 ߩJ)OUoٲ>@ViP(Zx/0u[`#6 ~& 5>~_BRyyy\b_2q0Wt-;i%/\ya K r&!q 4 2]U;C|Ԁn, 4Lb=wn`Fr*ꊪ~G^m45;OI`ur˦pf"ݡn"bR)8.^y;M>d @ /7ײ cf7WWZG bXhra\;lrˋ6۹֛{VH9 Xa ^AE%|R߾,`%QEݽ^NK4%| #ND8~^W7*2DYǥ/UQՀa|^'# ekLB붠([DD&"z,kyC<8UEM;|ܨ,KDC(+߷^3cd/"U'M ֹ3pKjee毘Wa+[06Ƚevb"fM`Gۑ;1?^fn:nw^N!&iaQoq/"޴:_f@ȉC!HIu%|#Ltg-"ԣ=yOq!^hr7DmHTqEws6556¶czLDN>BbR/{G|*1o%W(z'1SӐpMO^+13\qzQ㢖QT^p<wFj1ck>*8NG!Ȇ_<F ea/R# G{s,i4.+,XO02\ Z,I!s˥,/"탯g)*ENzG? XE:lnYdކ1kw3̮v=uBΎΛe60jH;%5Y1&Qm(DWeG+ q\ -"p'JmHq e!4x ډ‰~yQ\ZV)ֲBzbbI-]^M^%Q{Dщb8vaNBjQT0cPX0a!+̚eIGyPVe 2*w nGLIQ?ZdWoT`9SK&IջWF靖`R=00IU1q@#j1DRq-t[QAw* whsY>,ʟKN%&Q!R t-3KÓ vv"|n{G-An}1"r18'$\͋TnS4yB'yYj &5-2|RBο|RN#7{Wp^X%2{|;c'*Ǵ] {)qWhS;lY9usPM$Sc*&+o:4ky"s^l%m; * 0L" D^I0 +',V3WC/^D]eD$Y5^] xgL+=NVЋ Q*wJ:Nxp[gժe>.:{Gnu ä>j e!{y([|3,hRnpӋdʝ}v=3-'>*xvюz`,=?Ԛwy6_t^ LYHd4L*zm\6]M76N3KvR'1==רr[3#:(=^ lʬ"@pTX Qa2F~Jj /cg ?WNMSRRNbAl*3c4cg-uOga5>{mK-زZ+9#,rp0?3}?K ˽PdJ n_T?+['}@;%3Ef"LJkcXQz-Dn+ɋaJ9t՝QH'"@f(y 녇Ń f}P8vbW/9?X;KfNMi>۪P_} BՊ;ek۟[W??}ZT)Ny]ڴO&!"\[}pm|UfÆu-)(͵ao].htfIwLOJO*.-6uqtĕGj|jXο惃?<0F( _Jy{ k CK[{/Jٻ0p& Dje"#^[O_Y$cmΉC+m_vh[ ;u83w`2*Lkݮ 4M]|vQI#-fyXb1 9Ue=ҡrͦ^{iz:*JPƂ].:N1@T?mۨMSqdfgLEe!$l*/۳6xc]I_$?Rz_nZVR FSE]n{p[c88`}\Uw˽K:i>ULXHΉm*aM(/D޹6.]6)PyIu>q $Z^ZOqL1 ,9%GTe|}kW .N X6L_ꒃQ{͇W/ZW3n]#e@EEDk  ):10.S k{ϵS # *ҢAqB)ְRQDUoW?j l=SU\sv)5V}$"YcRSJR=oy3k ;$CP47i Բ֕{w]Ts.9{ V|{10۳:B)i@|!:PTU|!AVuvL2(xCD]ζ̧jlE+hg| vCG^6*/A]s/QV+J>x?/u:tE\s)*=AS3g->޹0># P4ƪd|j +7~rӉih3mK'Q뤼3Qq8<KdUM _z 3, b_ U(m5=Je5C5NU+%&=jའt>̗ ǿ~x()j 3̆fR=L;Y*zoY}Um +Jgzs';?q}eۻjY?!\q XS{>==g+e; T'{6 qg/t03 wgg$H%aq"O& 5Cg~)r ;IZ^/2u*_)Wb" r °0%Ruߕly1!b$i`SaXI}SWn>0|2:LaP3:Z䅆!"DVj{Krm3 5 MY es58,3v Nm[ۆ¦NB7K>>)ݓsт$eFR>;΀W@s2J{?P L* Ɲ` Rc6+ӒZCcH7Mb\UOn\N%(d^jru&$25zFBX;EeO1XA/AbPѲ $UlT wྞ]j-KM1):3wkZ5L4. I 9wƍ'I*Y`e/%S?}&M֪5++.wKaDR&'# \W}^w2ک9izBG@$`㴘cD%,7g8 ͬq*i9"'nocQGq(wJ_h%tZ,͡"^$81,O)bbYd~gkDD!G³|m?c 8&Įf J^Z\}?N쟪j^[J-Prdp?A}S D `6L"<cnU}%CzwL 4="փ]*Z`=/B(4m%ΣŊ$MYlgD|+TyY^h%|HnN#e.ڻ6IW8L.rwLU) Hw`)!ZZô:.~,a~}\~xRa3kL(5 2 1?Ja1[V­J]$Bb)$ar"ezҤƠ\G։'aP0&KD-"X#`ye4>rYsE"(]mKaep3O{"ue())rqzta}CL~í5AQ8Ŗޡ1ò>s/"[/G#/F%J [:,auQYwNSHiƕ*/m=Q,W]·]a9jx,F@ O:l5I 밨.5Loڿ>OS RCh2oCi i{8ӞLkia*Z'\A,nb‘" Ð%@D9S΀aԲQ]ILuS=ɵ?L5eQg\B=C[QQEYb2.D pZ AxQj qy$VI6彸Ŵ6T0kaZa ۰ 0,8(+,}*=(X(SBDӎh5Dg(B1V P ao+'o˒xa{AQG˄pw\+CFq0Ǹ 4:\ I !%)E;8$D$ ` D$bv`P]b\.4E Ac[YpYClx+ %3='ˈp{Jx ='ڌV1 V" SԨ04vYum$%,:~#Q1 *X Qfp`0A)*j(`Is=6 U""`B  ]Un^z{ a ٷ6q",^1XBe(@*G Aa:-S#lIoPmrtcL}`0%tzA٬6k2j(rN?g$ ӆ``Ko?Z7{jvq!1 zq41\>caaÆz gLQǎ Ǔh0%0GN]E3xffR!Uf" kH FPU]UU%6\VC8M%~Ӥ,{*k5Nn˾=1VU-(J' RIk&DJaZArwxw[̝/e{!MV8C@ߎKY ';^~|nۨ[ܩӶLuߔ1O+:1`JF~0l wi[$=3@G Nsc21gF7f bԜikWqWekΡA#c>'slJ =-o0v#] aW$FZ5,~N=)^Q3gHJlo{C yv v#4_ jXEml;&Sg8^el`W2f5&{ Ox:gkCW4'z),N0ЮU22BѥGMspI doׁfǢAʠntd8!Rg TGpPj Q[0l p}5Ҡ9_b\teȪy%ҧ^ơcϋcDq@~.,H=.9$nN7v]茨mp)1yWq9+ုn z7IlD[$~)Å0p|$Q%w3+&`LĀ:pVdcH6?k+5E6STKVU-(-pn~}P9{.w. X(mgCem.wWs7`pG83kMcKpVI]T!) = oe7}Qxx M0N$sPѹMR1/Y客*wi?̖Zz81 L E$$`}~(%B5KedJ7I3o&CCo;s q`-KmoPD?KQ9cq~qUTYR@64'ԑ&cqOqa0*x2k7_% hlY!`l!vPG- & e@VC00'Z0&xjZh@2\W;ˀKQ`| pl` NY_"UWI((^0bf.g:`"]=K G޲3I!+,Qg@s10 N(j/}M 7z?00D-'<+8H_ mI]_ 0 -f ?6\AZDo>((P0aٱCюix3"6n殔S "lɺ\9)f/gYNM#6bW疚"-^bJ1 XuʌH!Ie)ۭ3{mi_^ lh"-l3ůrdj g΀=<9P$ oK/$(.G{nˋ&K ! 2M`qbD9cE­HKn ڮ^t؊* 11"[N 1 82#Xp ilG™efCe Sb΀Βd;CC>8*[$Ch0`_0Lf f_Y0ۿNipp d ݀&a [.q%x#bqZX0/fK`0As ie``7TߛMw;-3(-`’A8w}咹|nyv kƺK22mpCmYNZgj*N\248%KZ?/sd uk%;& LI Id7n) 0<)23j^he l6&1Yǂfv5I;x|h"3EgeM-~JZq+$Zf|y} 8' fq^~!K ƂbR%~MRHO೘n` I 0E i屵NfqsTxsV;OFV$/#X˨a߼?cήs*L ϼ}!HiL ] ņ, 2`/__7ů2  @b]n|JuR 0 ɥ-uב^ʀ=%-(.\ĤaH.~Tj_Du &"8 fQKbj3.}@EG0Tb% 0`]01jG3<N(6V_b G* Qԥ>x8 6è: c8FQ`0׀Je J,.yJ 0i!`|1 C c тHac|[^M x4yW)4YD 1ipyyayh, 0㩖a'iaGDa'zNScJEp ̀D[i2`4i_O L6 DȠ3L 0`@sI= i2t F[Oe $x 0`@b;Y[oʟNrG0 /@,=30 c4!x9T?3}.dgv_xis{̎e?5X慣 e- 0'>s*HNG0\ؚYtOD9!eUfUfU4̪#*~ݾ`@Bd! d! Bd! Y€,a@€0 a@ok9nIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-vinta.png000066400000000000000000000152741263353514300233250ustar00rootroot00000000000000PNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FIDATxyXGǫa8Mt=W%aJx%"QFL1cjvXhbj܍وx 5דxdHfgz?zsB2QtOwUu}~GUψ0 $ (b (b (b (b (b (b (b (b  b  b !CRh;V}UR)[wV\ڪO.3}IȺ%Iދ5o*|w="aH%^lRG ;hrhҽ.O ޸󃍀$y`/jߛc6'O?gP/:hbk7Dg& pawx6Lo00eg>0De]jceU9&hڎC#|AI$a!ڗ|q1ォ0fO=q:xw/^Zɘ-0 r&/ Hy=Ҽ5St,7Lom|duﵟL^`xVt $G`BL9gF.IH1㦏6[+VV1"ӍSΆ)=gtsmҲu WG\.潇jGC T۽v=?'̤imBޝQ.wmDzƟۍ֯OPJ)~//Ԋ/o@Twac;16F5)uY74Y{%ĦR#jLJ1X8hsȸs?h;{6\T,+n18T ,%̲T1b32 UQ cт{&q߀f_蔉z6#kߟhɸl=s΄]S퇟 Q}dʔ$atv_/)=p pH~Gӓ5*hjymւsv;T%)Xx#rڥƁĩzQ& 5% v|>VtDQUC엮/ }^_m)iIj(7nu1j<%or1H‚Un Ӑnj |H5&tP33o(4?ןGEӓ,c yD7 }х.'vd39{fk E~ml jL@ɽ]Ѵ$Q.O X ׸QVM0@59gTZv\AS/^k3pHȐ=:gwɰS[v40{J>uNtit=-7|5ihL0&N_l3!Hm2D]6{)["AQn3yn&y/J#y[i=uӺӴh; IxCӟ8W}&Dv'd;~VP#r9{o _ }9T>̹\ +P6jr<ҍM`a .W&.yVb)CY@c8wY8?1dNse{u1@ P1@ I; %d}MGX"3/y0t,Y м%g,(w5د=059/+b ߾c,tÿh)pٽ@ֹjJo j:nJo:߾C7 䏷Bkr }*X~!އzjl:V-qY Ξok(-IO.ׇ3JumS+=bhq yic1 l2|[[rۛS%foH}!@G|M"3(Vd&C~ic1~6녠,RF=kSN0~tűMB-U&ę6S7T}6_CJn[a,ܤy5KXpCG5x$ w c o,b?W(2C]%5v:wǟ)0k9ral1n42Եrqۮ^o+`&u?Ee/߾42%5U%{kܴ+߀rpj+Uʕչ;0 ]v*垝6[ZR*[Z Z oI6n(D\t|;\;eIZ>5 `hPny4"LO\+b^um\VW%H{DD܊`*UZw\ W(m'NJ"J8fl3u T̛vT%C Di:+SPDLl ڂx]Zd?mىO7*F_IصWvJ7X55T J#(w KeUtscRgik{OnZ?XdFGPe>NP:Cb LQ-x"Ya;{NxVqh]2!N5vvtvLQz!%WQgej^R$Tsz:'@֯OO~W<ׯv7Xʿag\pVG[yXp2Oo`|jj ^]cY߹~+:7+(7Ky؏6L% .'8N+68#1ί}P?^/O'{5yd_=b(+ @\2R7:7ahLJ^ah7%1?TSS5Ū#8k)V9~EڻUXpƂ[ʿ1al؎f"S~K;i>νI`mD&Nqfb<^^عħeU쳓  EfY -[v} [jZɌqT}c;sY J˖ݺ ]BܕO8-//s S&9QihMnMV׬zۓݳ\96ɌWDѼeR5 [m=eatk.-p x|@cN"Uujfl5MQZv~漌w\5cBl i v4Q['Qcm%w˩Kչ+="XNٗKd}JJ{p b  b  b  b  b  b  b  b (b (7K5"qIENDB`django-rest-framework-3.3.2/docs/img/sponsors/2-wusawork.png000066400000000000000000000274431263353514300240670ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp ס+IDATx} \Wy}KUﻺjrk1d[6ccllvp! d&3$s3a 9 0,CX [-KݕW.%Ks|y]U4!ayCWﭛhswv2^3մ3,X=i&xꘜVc|Kq>^ `Ox/d\CٗY2~ _!YX"]j!L Ò,1$" &7ʫV"_8@1 kdh1h!a-"_  3 ;F` U@07a5@ J'z֍lku?|ư@,2ByA Nԭ#rL G# W;pM+r + -t"M+imi`dWRA3y v BEbp H)lCKka'ƗZb5<j~Fx@A`M(rjl.k0)^&pjML@NA I}N!q&L`4,mڨvҫx,P;aAɑ) D̐g<.iZ|(}%KI8nQ >lDAqK(VKlG\j,6&*b/%m&`B62#K@+}&; q% 0r@|(4  m qD,rV(1(vcC#Ra/ ܳq#,t99q"M`hV$,% zbH#N7`"Bv#1^! $:xSU5L/0]ṭ"]öꇐdсH FU]kE0oVaH3D^Vj1fRѷNF>3ؕ݁p.j{v<=Ov; Y ģz$|뿜}f5 `hQ; >庣=s=ŏRNG77~Sb 4hJ8ק=PwN֊Fs 9_o^]K+X䎃j;}T(Ńnp8r53j}F[92|/.<VRI,Ĵ x|SC <9 Nd{(tz}x=/EkYQ>vx@ Kws "/1W_J> hbs @9Wn0`>:J\ȝؤR=6\ $TXbOL)ֈ?O-doqKkQ r,%n J0Ca͟dX^J,h7s8ΆB]bFZŅ9e.a?Fz.$%3Ya}+""'S? nlZD) ]^'+pɎWؒKE } Z99BnaX Sym1Jk<`ُl諎emnV(fTC޽;tS24mmz/q@u!Xfڶ ,/ii{Uo"و<&#` |Xg-3qsMuEE5̴Z Noqo% 8!a=^I{-Tu}|B|hO&f m5>@6V%{ m0B4,A?<&w\9L#*@6 ~rՏm ;dbnyg^ZԎE($GhL -SQݽxIjJHKA͛퍞iDI=>ՄnK@}xi4M= d}"6AdVp)Lqn^{mT$KС7[~kgb c虁D W'cb1dw;'iurJ ]ӨY="9NZbKHj (dΩ]Yht\pԛjA {)aQtb$Ne木S*.4H?ޛ)XA%W}&S-g d/g͘YnI0aR & , 8uE^A΍նf.js":a$!(o$k>X_B F=ߗKux,ylBy/vVG\5Od`%ʺ}"0X{[}C<!·đǗopn50<z~QsU),&kTv?ASx=W+nG+ܴPPʹRCأD}sQB|,ך"# T#|֋N( Zɑ( kF-aF(;Dc-Ŝ ^LStS2(.k-!Iq -Du闅0 J@e\(0MF [Vj2e%Z` 9rQ<9p&It UZjR@R|4Fi: X?t=5u+\jN$mV[9w $X<ݳj)&FoaY<(Nz=% +tVm˃QߣW80)WA ?-70^bg"-x{ j ]x^E'z7ND,Taog:ϕYg~cö}CWEp Z #\HFS $8,(~}}+ȍN֚UFϩ9~J4~M/WZo3LBl^4BXIA`ؖrmK@Os(R_X(IT>T,&Zq}8izGZp2fGzZhy6$Eǀ#xn#)N xDčtL/;B=z&hsh|2?75Qq}nOpbx%TEB?$JBxsm\ s{W_[LK@mn`vO! F].ķ$.1 ++G<6ܦׂWs((s௡Q.E+a_?8tŤQlϒwYrv `iT԰–9j٣]}xf6$$Zsmtc{y5D6۲3&n6\ @ 躵{v_4,a@^H4~Vpkp m܌xejDc[gh3)f`E,nC/TLiQ*s c՚S /{F偎+{µW`0xzq lǭ*N Ա F cJ׎߱ S!y?ʱ>=ٛUO~q<*^YPx[@w,*v~O ;.QfxjAWVtOhOB^6MGb&+W(: 'i,`Rģ<Za3VN:?;G:ooήES ?5<%^1 \pu.!5lAhbs/-Ž>.\v&gTIt=z NJs<[~s@'X0a lF9}̱n-7f?50<gx|q[_X:QW(b4DJqģ |߰!tAo% >\x@ca'"BY( D"dVRDnn"~h6t{'e{&~/MULWF%U1YUo.d$,)4 c juP]L<돨y̫-pnoStЀxf+ 2+5cW`5< X'389:Ԃ*+9hK'Nr7̇vODu ĤZ;LP 8Bi(fotm7b|ds{xIoa.C#J=aށѝh l&gcJϤzܗoj~p&ډGlƕq;<}u{擽pRJ0UdCw5{W(?vkU(fk6Ty-րi28@@:)sJ]|lpWhkqyNJC#KH +Qb۾6bo/|M:餁%<3ѶSwyHX,[V## _Yæ$H?ܜ[K-%|KJ+|BcRHL7#_Jk9=/| ?펭[*4nT1a$M:u< oڅ*Y6\*g%p;RO-Э_Z}vEwSv0xZ[4GJ7,,01^잋X^/ k fL$ !Muʀd2{Oj(m 4z@!чSZW!RprDaRBOU@߂:j'~`|g"7z7Z/jxZJs:p/cAw6/zL[s]̠͠&LH͐H=Dpr~<,L3OƷƍbڎ m~ds3dSaŪ*V_/>ڨ )p ;]I3Pbk9}M#;WjmC`\XBQ$X"d< |*GIBxhaywdl̈MnjU A2JIJbw6z/6`G̵([K>ˆ*V hSx:23j&6JR?cVVYKE]JTp)e;D.NL*kEf -b{k<I$s4X4(#\XFgJuh'n? p2$}2r:# X ^75Wzc|PZ9ǚ /| ! (IuCe{tw.1,86tGt:(L.6Q4{: ;#Y2q[WkAЕ0>5k24[ 1ѽ?w|tȺ>ܿc+.k Ra&[# pK6\@13:蓽WOO*.`xf qߑqeOk bs5:J]AGvTвǔgM !i' Bⴱ@>&oGS7@I, W(m|^d$IbP絛 \,Q}x\Y:8}}k=Z_P_u`p `g`uұB]N/mKc"W1ٚ,n҇7;@Hy; 2ΩȽ#a}Z\>凔( OC+@@6b`.%ѿUV{wB|KApDT}ttqyY>$m)2Wax;쌟%6 #+($ 8D$H{/rhD0&Z0^:~s]AF YXhd&(@(ܳ5hJt{:[PD!hn#_0ЎӮ+Pv@/(Fi,7G 6#y2^6Pe3Y+ZI/k7`x>zZ[ B邼x yCb!`!iA`A$Pع<@@wZ |A,֡ 4lcilI1`3vCIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-aba.png000066400000000000000000000450361263353514300227270ustar00rootroot00000000000000PNG  IHDR FiCCPICC ProfileH WwXSWH! #a/QB$0buQѪU:q[u|EAŁ @O~}yιܓsry>P +V$F'gl`p"yHBB (Ug*twH\$9KT$,@#+hQ,p $Qa:RYZ哜@` N8%#BE&^pP"@£ # g-N߰@5S ƃPCA#\Z$RvJT/ezDnR~Yքx>"2met ”( x c6ʼ!l+P C1C8U1=q(>+˟@#Ǩq(" H-A+|W$9 ao,N@pkQ^sTF*2llE$#!XEBY($G#%DsIbYʐB"/P|F:Jq~["$I=t"Q݈q|E&wa|P!m= =נ%P'ȐOPU %4ulD5"'d Oơ>57҇Uku#hz$ÀGMbMS^Kqh$.G)<9RU%*r}\\]> *@ zhgaI1?b~L8zZ)WCX<x)_k=x=~_;gx#,g‡# "Pr!M]_%:=I'$tF3L!d!9\Jn wd+y|@il ͉GMfhUCS餽<}\lR&>z3`0NFɾ~rFsb8"|N5s\[SF;D{vvAK=:::a:y::unru]uu t=ۥгՋ-ۦwRZqøBSN}~~~Omz3 t-/[;0tD%#2H`Ca>FFyF+Ǝgo6>e3RHFn8$6frѤ4Tni,,l1nsy|q|~?0PZlh跴L\d*jUUx9uֿhHlڜykkgfmm]]]]{}}}5C&ˎı$u>6wlTͨ,:yF/01cV93泋Kv;z\6tstU]sgGwot!q˓9[O^^ ^ޙo$,9K {_ww+}Aր@~`fAAVOBBrC<u U }679 /oЋHq?22'.73jvTs4-:6zeaLmL8qsǵƲbb7>sS5Ǐj 6d!>&~U„_''&L85qN$nҴIoC'IOQjNNM}V1i̤.K3;2jW='M1n)O͟zt4̴ݙA_VLƬ^ap(XZ-WddWfwI$=0-ov +(,8,ӓZM9]$/w)U*vaES^AI`Iuɻ3ԝ)yq%F8-2b9:5e;D-ص0oo\U.zuMM/X蛨o8e;;wmKܗ_\T~¥R߻~eږ{-߼Bʠ*u+K+~5uk9WQe-srmǺuׯXqd}M6.vhӕn1RnmZ_c[Sdc;>ֻؕvux{= qޭx*~?g|@쁖>bCCXICGczcq[:םG,T58cK5˛{Nx2I'Nlm;{'τ9~6s~9pBEϋ~PW[%K}/7m?v%ʉWO_v7Rnܺ9f-ѭ_^{wiwܫor?qAy$|쏢?>v.~~\Im[בOzLO?7>_]BbWFvxҗwMżOg|d|\Sw @ Pgg NG{LK ƆE(C`qQA;9pw*vwS@[wLM>mG{ͅg=ʛ:CfCa_i5y pHYs%%IR$iTXtXML:com.adobe.xmp 1 5 14399/100 1 14399/100 130 1 130 2014-08-02T14:08:85 Pixelmator 3.0 LV8IDATxw\e~ozBYD,躯ZY\ʮ*KXjB脖 3>s's;ss_odY+m% xK((a@(1BJPb#xF(ࢨJP/L\^ɗ+1BQ0#pQ{%F(j&_b.zEMKPEQ_| (#5 /1BEWb&a%F(ࢨJP/L\^ɗ+1BQ0#pQ{%F(j&_b.zEMKPEQ_| (#5 /1BEWb&a%F(ࢨJP/L\^ɗ >z51b}=Ǭ"}}aef`6t2iYO[n?جG|#KA=u -+R |fhoVd3-X:rwfrMVW7Lf=~dtO2ox95oCǎwIOz͛gz O_^nN[l]=yDӓyo5cHW"o^WZ_O\-ZyYtZ6y3xG\N&  v zscYuu5οcq-ө$<~%q,:,bHєc}Ge}YBLXWad ę _k,a,0O ,y^`ɤa4ax976X ⹌&ZƬ3ҶnڎD 鷺zD!DqɄ%c1p5o6^3M$.4 x?h2iGyu1x`1s n#hh!"H&2 e bz5d=@&,Bi\]1!L׻IuØp_(l T2Bi4> P9KN**+80HDڦ7k#GX,e۶n=9L?1#4[<0f\U0y;`bi6:iEI ]qC+]⻍neDwG8d3sDn-•X_ BFd "HQD$ 9=˾#5$fנn !4̐:f`A,xn"!Gz` ⓩ!L\fO$qH=Dx$9 O-e0E0\ZDp򪪜Apj*ֹIg:Dgpޱ#;f 'J1<0YOtAx~:)\ QquXœJ5q!J@p>8>v%t- qY4̀dfPIԿy#!ܳi&#?*/!C*ģ0.CԹ&-RoG.ZhUlwuc fIW ^_ǂ,X"cR.BE1)L,9*D{'a6 ̇ q·6W ~-f"lgGLaN|&=ݸ&_,Ƒʗ#|48@`~L@,) r{%~4)_ m*sK,`_G#0ߢ~ 3v&}5Hm8pTK+hnsRKCتl/8-h_/ 0 Gqpxal!reVaC$4뼟@# /60x]w*gE*H$M>ƁĵBTXK& KǤ,5DP1$H.{%u漸}8>$oED]0,_Na[;qlT:+:t P=Y;ZJ듟&AG!j e_h% NMM"DDH&- "|yWK5c0f\A~ w +\_;aC>iهl9b;D8+{+F,EFc]7o- #8$MM.mg)`WԒ!NBpkus?rl>B*I#or1Rڻ#ۏf|HqB4jZ!s,æ+ ij[t儏faW)jɽ̛C!khlt׮pgnvWZiGΛc۶lhfϝi;nr8~x};OC֭`-C[z:;lӆ6- 2`(xq#FX%wXVUCI/!Hلb}K`ɱp'jSd߾߱ IB̓ q兹PYj+k_R4~cB}w^] r0.s$-bh{͝3q8&V\m=ʫhi $Kn%ؾ=*-=۾ p|b %kgt[3ఙ0~[X}B]vك=jkɓW_e;vY;ݖ{IN裬 "&7뮽%ܗvFG\BY[VX81ҬM$?e&Ld{;Ilݶ~;1Lˠ8A*W|њC8=qV'E^ldPʀ/:9bei &OkssCXgMÆY'6j$-Ƙ2y҅'zQI^B]-X=xAzqX;7?v( :)h0il& Vՠ(d!fYS5kĶsXN^q?l~|]}h_?[6e?n1'/] f9%K:g3cAxGIV7m{'x]v {'FFTuu> ;h|˖.Z؉yI'SeqK"̲o-'\ B4i7ppPI H08vJFÕIC*D>$DU[DF;ɠ EB"G,^$SJiwEWM-EUMZ #٤k~.WrNx#x}lxcq/l:fNg9{]HRU_o-} ~.p]vۣ-%%;erA?ș|]9N$yqz1tvw+ZPBJuk׻kB¯S߄vNv򎝻jwT"*F8 `T}T EÄ!'9v;:`:1AiAԗOl+)ĜZl:1n#q(Aeo!L|[aQb7Kq_iAh+pg_)`A7Ԓ[9* ̞nu5"z9r~qϵyHx NJK(TԼM,e)NPe^]3t575"ebqru9Li-W]u#g^SN>{I[p+*TWڦ-[lis/vK9?8M?kvܧ8x.0_]Vm\z9(M[&UKݥq01'6*ywհ:ʪIQ~mJf2]z_~"Uu<.%I,U"| u&g/EiZibl[7^ݻvY!`-\xۿ' Iz@DI4HRQ%QyUl3HQꤸ)@$J}Hot~N ]|Ʌ˯" O!sE~^-|v; s :ڟr|4n^}{ov w+޷iSp/~}V% Δ8}dQO53& Ûފ?yBHj !5vjuG|%yk?]B"C7!Q'{D|j|i m]C*փ4kT;+ M7ێ{mͺhn1l[ D/.'-fG!%H)-NnBrQM'?ymO5e=et\xU܉2|}6rϻk FS| /8E6Ś)-[K~RЈ&!Tmݝ20.MxTDKqegܬԦKZ/ Ug|g~ݞ7cr[?rlm&xD imh vv*=@DfseA4~Xu^-Dc?4zM9U4Wϱ_M6q8Jq0թWYEu \\ FaJR9F}ڔ)N]W6\90Fsqx \+dW\@QV55pPegGg?,:ȔOqH1Baq)\4ECEFc'S%+x'~_}u}س]{=M &@*-gO'u;?~78q|zw`ʓ*纈5k[9RU'1o$B"nW^~1`ea54A!U™1nI:^ &"TvA+Br?Gu5:I}goA_0XMAE>#9ĩ"T6Ym %3öyΫߤ7wmgy.a4pRsδJ?SO=omexe3aR :^ zcnCN{rO5N* C1J[ڷ"#Id${\ƺuk[Aoܖ6o gO۔L2W"8 y4$$@DNϒQLwcIU8̓rY"gcθ|hӨ:, )uWݰ^DΏؼTK>'7j(# /QEԳ8Rb5k7iK qێBIºO^| w-ՅOĭ( ~TlKQjƍuLq3Gɋ3'/c$1C(Z۾c6oUTU]h{JEE 7;?!MG&΢d[c#IeZ T*MLnzrK#5ۉ'gS!rl߹N;tAIVumL:bGe-} !O.k7ۥ_]1e)y& IKv0JZ?@Z(aV_,gM˾y._O{fw{͙:t|q)vٕep/[n)l9PS?dC|ew0L*<)jqQ5r0Wz!KΟRM?B N<|fK!r/ w<[droB=x{r$;yͿPK!{I\n۹c'Nc$/0xӨtn&l_DI@844Z"J)]`tԥo_\3ގ)̩vĂE츱1v۽?joI1YP骣b2W-`څvΦN5O91*Ry/uW^_NDۺm'DY uxEͳ -é`vFg< ]mV㚦%pCX9Jmv 0*]4Oϓψu%B6>EX8"ί&Nj SGO6-Us-\]d~N&/SG"Q׍.'ɖO=lM_]sǏe# "I3QJB]k'qo~w}+_gcX؏;ff4!pt\2}8Ȕ6C*,!!v&i̶uϘrBzX*ts/<Ԓbt0͕oUU5No7N-Q% ͦ5 )sI2qoj7 AZ|`1p}̖pM~Sߠ#{wo#޳w?D#Xk.CMAϑ9cjo<8+_";r0kinplZJR uhjK{9k&GØd簙YZ.X$xꇌڈsh8C4خlCfu4ۜ3 T6Z SI!ia׆m1:i%9\u R!R3zq5@Y-1r"IvQ>>M%H.Ր[$lmmkw؛Ɂp dݭuZ?@T'sP]B¡[%ta9~k{8WQBS'`O>z/f^[!_~4eFH ze/:rhoj0s@rY(L57sY?s %ǵ%mY6\JE&jzMm/$Fh5u4=Iz(:9QGO;ťT'R1&RׯU^gYZenFjPecpUuԦ(b=m˺^I8ye6U0T1DUH@z{AbСr.u<#) ֦~rj03Cg3+y.%$۩UַأϼlV U}.u;L;Y8!>RU[Ol+7SU6do׸2z2n.BX{~hB DHziTi6bM2etd;28Jhv"v]@1G.N`4'Dxy$ 1̹q=R~kب̈́qq]CjH]ÝHLj 'pKH`6n:UzFnuum]4"b*lC"Mv kWrSeW<ۦLkϼn Fo]vi'nɪ3+줭 ;ŮeVK9~̘1vlcOE H=ς7luXƭ  dr` 9Ina2\UVB)-B* r|@h~]Vm!/eKX` #'֪Df<qxS}~qvŗ/qzt1|(Un *Q݆3Ncc7Dt/%> $c-$F SQk_!?95w]?oa6OTϞ}z:yG>ŋ;.dckةoߺ|vv!muwo7[ݛ7Y=Vkq:irtsU_Жl0GK:Õw҂8)i:]V#bMI6A|1j^j}[*s&;X:09hg^w`*׵2E=ɾIM0[n8c5O T:1F fOjq3s*`1f͙cX$}-w |02E~^}]\ %MiK kvYKhyy+uڥ쑥HƎn$&:lBŠ-jjBSSطc['i覒K>!|V1 RLjeo˻MHa㻨v!vo@f /i-v&[R+`Q:qZoݷr"D^UOou.tQ3ʺOZF~X@֚A2BI_;')o E-c߼bZ/ \f״2r7-ƲxpG~:SkoM;H{^g.9et}۵ӵ $SaT##M{ȡCmԙ63B]FTV>AGߴbJY^L1G(j`Y J`8[:a&n?0[C'v8 QR4tfN2g'B2/i[<&Ҥ(i@@Q!` 5()V>D-Q=8S g;m BBHoɆHD;y5/YO-}nl>5*H\@޸O e`hA;PV0d#H(P+IN'|k-r.~^¥/Gɥh݃CݨH&W(r^#KPr8]>ժ4,Ӻ+R^%+lP1LNNۏ$rV"uZ+&(l@ŷT?I@V)9r#Fp5},kEA7L 56Vz)\%q (s`P5A} RR[[މ GBxI"yԾMx3|Z Ô|#;ߋd#!E3wRgr(q8CWp{5~0c[i%w1 \۟p*UV_%T4eUXEDw+Az* i1jIPh$MfP/ 8pBnvʢqBeށ[q`Dx9ĸac']h6X͙a]$zXa{@WAd5Na`XziUL: P ?0)IAy{!BgC澥rr;r$ו8 ˒v EmPzy"Wl}4@K#(<&/A ǤS:?ALnui9\>p|2`ACVC8&Sn)d3gͶ=wGJQSMvIi!޲-'yTz@ի{T{,3r5<0 S"6[&.-?a=WO8ɶnbϔMk>v}O8m PQ,s}αV_̘5,֜YLqoN ] ,? !GNsBhXbAP5~Zήb]ȁbu1EA½[S [I*"U*rp@jٝCRGR'=&A]B;IDU.nbOnyQ-q‘Ls$6S&,UIZ8=8$JrJQ=.i,N.<њJ51y5Q465[ X0j'|eHp7] lȈahk.\O~b֭xX\o(I2P R{_rv5r^_&G@or[EV:Z(abS~D]&1 U9l\3Xɴ1'wD=>fֶ)c훷Z޾y_A~Q/@/$:~:qḆw$ux +AH/D@pR&tޟdqhԇ ^o/S { Rm\44{}M,v? |HBAAgglq?j/6^ vV!ڂ$ԾLbfb) 22W>!HY̅sPFpOuͲTuij$|@`S4@NV^/% HI,%-8VNjBK-'ıwԊ*2MUOkV.4Xպ?Fv(yw }ss@tՆ?v$)BA1ŴH^!s/e!WtLUz}J<3H'TQ_UoffR+>BdTӰUձ=49%z),RA`4RYNӊ%zڬG0o q[9uͫ9f QJ>Er"=] Pu ypyDKŜƑlܚRF bGK'Kb 6h1DTv簫T8"QGԹ ]Iw}|ب6l]+dZ #ʶ!eC =ofYTLRZV_ S0B&壦c(4)s5kZHK;MjiBöAnfY\ [y "'PX TdܛB#a$~֊u1"Bgu`s &kbܲw2gMpI[( Ubu,^=Xb0Y/oZEҕh;J(GpqКM$!zB# R9Ru7+W#%sǍtY#n+Υ, oE$k6k3w4jM+꧔M+)aB#k׵XCG/ b˸=C=w#8cO/JE ɳ,KR$\*E_!$>Pmm=teM_EwPnGv17 MyvלcIa@8LP@J<@48a%F(1B (i.zEMKPEQ_| (#5 /1BEWb&a%F(ࢨJP/L\^ɗ+1BQ0#pQ{%F(j&_b.zEMKPEQ_| (#5 /1BEWb&a%F(ࢨJP/L\^ɗ+1BQ0#pQ{%F(j&_b.zEMKPEQ_& TiOWJIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-aditium.png000066400000000000000000000057241263353514300236400ustar00rootroot00000000000000PNG  IHDRa pHYs  tIME N<<tEXtCommentCreated with GIMPW NIDATxy\SWO"a$D6e7..8gjEV*JKmj0:jZ*UV$aP$a q3B:9O>λ^sν! F8 1 b@ (ĀP1b@!ĀB  1 b@ (ĀP1b@!ĀB (ĀP1b@!ĀB  1 b@ (ĀPÇ=\\<\\ǎQ{44cZ]*hREˋ=T9 `r@+fѫ͘A>ez!<`(>MQYg|Jթ%Pvkaх`FO> =JzP*޵ Rs^>>L}ByF~^^kKqyzy;yAuUdjvLðy.-,bbc`= /DќʅgÍ*(H BźuZbcΙ7~ ===u>yD^NXg,c0TXPPXP@)dfؽ͍*}=z@|ٍ[=9}ER\!w晆Nᄇh\'{sl`/찦&'Sѕ嗲_F(ao󎭝Yh;=D H\-$gG Zol ahOӧ?7i^푴dRenŐb[UYI o_~+G 6rkK>yZ Uӫf2`~11 ?ffSz9kyi)zR27GǗ%ɪ]]!J Mioooܟ;@)7=1 &mM.9S)7S'@@< 537;%A%f&BCLJZT:G'0XF3F,㱍;?Zj@=* R$cuS|zz3]#_7zSnғL&;6oC1!N;V{`FG;FE JUS] !ؗ_^|Y?Yl,"3|7,eVD]͛H( MwgӬC) b@ (ĀP1b@!ĀB  1 b@ (ĀP1b@!ĀB  1b@!ĀB  1 b@ (ĀP1b@!ߙ JjVDIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-alwaysdata.png000066400000000000000000000222051263353514300243270ustar00rootroot00000000000000PNG  IHDR pHYs.#.#x?v IDATx}ٯ$Yz;dfdyuke`1FB6< 2$$$^Ј#na0GfƖ1{7p%ͺU]_VfrD|-13J2, ?kOO1~tOO0m`WABѺk\^p^s \<ccD=9 @@Fts޿L @'\(|ld⤏9 ZwdZ79ŋR+_%#VOHl#{{4;+|xQW NS6A'Dކ*o2 @Hqgw|jHu^ 00~vS3eևcp H%9MZV%z&3BXɈT`VHn:xAo籘@ȏ.T@Ɵ}(N@*6?CcOKXJ*qV㝧Ĺ 8\?Ɉoo: LLXgJsqI}Y3Myᧇȿ8ӯҏ0PmbA:Qr1hL,1ӮW>&:fHи}@\$x,QjbGG*YPeVYuWBс8|`mtVΔK٩OgCgC4X) H);J˳(Xu@ gyI%ֲnaV("thv $1ߏ8_ϐ?9ҦW6^){Uzri+".B$#:؀3PL sFMRq>(.6Ų)/UN/GͼIʴ+Lu~α?Y<'⠋h_1|>3D fz޽[:͙g?RW_' Ňa8;7'ޱRU+ljpӂ(ԑ+ nԓ&Z)Íl!]}3/dS 2#E_+o#Z0ݜ |'CON]@S4(. MsbDw<2 0*oO0ȔǬZAgڅF8ɠF ;̈ڈ 9pY >~'CO zIĠx΅0Tw.$He`QJ8W'I^}76w|~$QԲIO`ɡB b.)JJ z3+ E,P ._qρ V  H1XB 3klfh+Nb|x4nm͹P&ǿD&$'N3a*0&BTe}Ly3O%0Y M9t 6t ãp^}Hc4ol"4`.F~q9ε~'@O $n P9fւJ7TzJop6([SZM~\+٦~"T6 Dr#,%#LJyEBY .bS:Z *p/pOuttxOAaaPeJ.de) mjPّΆ *}LQ\[WZYnO<:HՍyc)O$l͠yVVɤZF#4}!*l-0`s\<GdO3c/,U<t׆Hc>{%.> r\ tYT&p@0GluFZAteA; tbNM X[-(8&n)dM=e5L *E2,Esoq <1>[.%A ʤksf_WBr<}O ?[w2@ Xi  ႶeQLe1.;mP)7 f Q}>;V "@K&5ZɎ3Qxf}RT+H‘g[ 6Uծ j#ܹHX~[P&Vf)@™~UkՕ0] W. P;Z1 eEXVˌ(k Ll4x| Cꅊ@0Řq` Ce ܫmd-Mlbj)@RtnO73zXTg r0I&u uLh_ԫOtI8`x=Ǖ+: ^4b:lINݮVLQ>o1Q [eEqxiqgA[ @ՂT::IY"nhDٚݒY5kkϚm"F>HU;`v#!2,F Q?[0A݀0]@y5dlA{7q [S9^zQ7w6'Qc;ikhURB?*a*N(C#LupX/-GhA h`<.&I:U51d%?`nLB*.Q4E:C44Ybi1PAʥyQ#D15I0QOȌTQ!vHRnО6q*vY&H!$D `Ѥ0E8"BDw=QAQ:gXye"D5_`'Bkx u6tKK?UX8$}khT!}qy78H}ӂB.O(y`0zUi%@xs ϸWGٛhڄOL5%k0#ji`F&XiKM@ / c1Q\i^5ypBTߜ|+IjDXWRJ$9^_+%;滿)@ɉO"rVf XDZ&=R"&-+Ahl g fUepgdu+U{a]w <$+I"EƎK]J99N'Me(b {.A+dmtEpzrKzKVJ`[j&A-&rFŢ,R0Zh(Z$"|Gc_!Rc+7Dt_G2 YMHב F[,q? ZnQrct܇ 7,D,+t .ۭ ,;0Kh"ӽKa-y@geSY0d̢Ai[ p0sHͽ"KFBvJ%aҿH/Å֤~Xʙ-u7 cփ( lH$ZkanK./%l!jƗxU2/0:;vֹC;eqX(C(i]oXą7BITAqiwϱPRAcjrf{iL(;ͅرj/"u^v8MIj4bNlϓydgz+\S${QBg/m_Cc'Cv{C=U>0gC:R#8kN-%YcɇGxbD ot%K1QnȌU g`h2F0Őa/w4wbAAge zDોۆSHe.U^fG^ %J^s0p!h@(8E. 3F,/B>(SGvc&S@KzshtAp(d[M;WRQ2av˕R{".t Y#A`H*P.D6C߯-@n8pb__:2YdhA&`Qwijj,B1QYQu/3Ish-mck8ݘ͝ f,d<0C6pK 2!BBKHM̌u S}-t "dFAki~st^1M`15Œb7\KfhH;,ږRTǐyQWr)%J%z1 {i~}̥];u<ԚRĻM]%SNF fpBe`8 E~GbOP]u5KE?_jTX"LaZ ^@@V:kv (ͫ! !ҖQfEVa ek|Po2.Uݥ}-V2_>m$z), p̀+ @I'È+u%@fQeE7 `!L_!J_&kplվ=v!zͷ-0@@7ABwdz} ןV=LURt&* TSBA9 ug2ł%cF_yBhޚ DAՅPjb Tp#ic0,!l\`j.Z Ha jFhműS"/ 7$!k(Kŭ!S#T?@D9b %.NZKeε_9&n+6K^&FW^WClAa)vF&kxqAN%ɐc,˕'q%ieF9ƛ ,>8 Zdtv[}\k1qcꆥSyr6y<Ä,2ń8?XceU+eOD,p٩KG0lRa`SC6g ꗴgP"$ivݲ,E~Na+Y2ʱǰJ$qCYkl (dM$:[MUbIc0tTJ˹u,+"Bh%(r@DQP/"Z*~ J"t)"S],Po`*;}i70EZ.;Yf#Y6Rc WN&I7UEAnF-@e$P=}/pT KF>,fխ*3.(S,A8*Qm3O깓3zĉ,^ ` |Fw5$9uʫ~R Χ,c]APi#ra R1.W._3cŔp6]Y 7UP"@ x%E!1BVdQf1n!r#@2L ]Zق G$Y |Z-aa2TD](ձz'I~1Z>, Y+ ` (?&FuX)Dj$Ra" ?/ $)̑:[)C԰"`iFׂBWn9NfB)ȾPE 3 @>1HyTL\S]C0NT6w,二u$G@"BbB˙EV^Ȱ.+i;YEF("F.T ;29;}W0%2\Fe"VF^JXEQD(*$hiu.|2( Lr׈A|M&\*EP!Qڨ A͐)M%k0A6ͲueREK$Af^ͅԒk(e`Bos䵜 PSF @Ο@%JZg?`Ikc YwnuT_SXPJ0<cx>Bskd$[mtqb8$t,'rk+m1a/ ae|'^ ^P'/S^*Hw:Kd]XC`z&ٛY@:y FaS_یq,l"pm귖!@C=|q<(p핦 FfpqTu6-Ng/kpO+;Nn)9ϮΫqM ,vN-aFIL?"^+ :ok@ lw!(½;wOaWC,e`U h\0cjF'_Ϋ :a_ZiZBnm:CA&R)bT%:TaňHRBy*6>97ڗ2gh֞T9ZR/J/.0ͫS)WA@ [rHZxA=f,W5g:Yxf MQL \K%шkb[[ lk՟ԿfV%Lx%"4bRޫJ?:CD@-N!i% G(XY` )zmg-f4q {d{=_ B\,IZmqNs|qHaKHv~]_ooa8a8Z;5( )/('oFx`3z )!M.-`$ygso ?F6_ÿWԊK UDgO!>!m6 "a:г'lDxc:x/n(,Qw. {ܹ"wԖ0H.U ##p!!ȩ)+t"P*[p?Gw'8FV=/XZ;We%T͜B'^ tlan֍MD&^Di ̖ݗ]FN)~~OZjV2-Bk~I_ h#gDyc.oso I(Kg#V m6jRWIFNG{|'1mhZAG[轳mto>7:qFI^m|,,_?G|@2jo}@66{75b*t`U.j5ȟ;ؼ;7{%"Q^^˵kEk ZkErſ)WIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-ax_semantics.png000066400000000000000000000263651263353514300246660ustar00rootroot00000000000000PNG  IHDR AiCCPICC ProfileH wTSϽ7" %z ;HQIP&vDF)VdTG"cE b PQDE݌k 5ޚYg}׺PtX4X\XffGD=HƳ.d,P&s"7C$ E6<~&S2)212 "įl+ɘ&Y4Pޚ%ᣌ\%g|eTI(L0_&l2E9r9hxgIbטifSb1+MxL 0oE%YmhYh~S=zU&ϞAYl/$ZUm@O ޜl^ ' lsk.+7oʿ9V;?#I3eE妧KD d9i,UQ h A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYs.#.#x?viTXtXML:com.adobe.xmp 1 5 29999/100 1 29999/100 130 1 130 2014-08-15T15:08:37 Pixelmator 3.0 ȧbIDATx] U3Mx SEFL~@8rht]U%\—(|DIdY1E.a鞞].؝W׫zUPJ|H>>|ri!>yO>Һi!>yO>Һi!>yO>Һi!>yO>Һi!zy$͹%iD Y5iGJ5#A&Yr f$ܥƾ{Զ*ĹRT'~GIꧫDGAޓt  p-֗4jeuB7~HZ٭c ʍd0XȠ}k?L?51+@ ~TdZ8i>Ʈ|T@s{NRhl|ڥY2?VP6SE|Fܞ L&Vb`0_U4kުx&1h \{*Qt<5jæ4ZۊDvHD'[/Z2I5v]nuʯKiSӫ/iW̄:+l< XV\5v b~fd?&`LhiI [Ts59wsJ bFւVBaoHN̹Ls!P8gT>}?% ]CK ԕ2A-PcVK!:hX4Czܪ1`΄v>1D_^՜j'F^JՄ``U;9wrMjj3HYUU0O}j˙`X7JX s&xv*.R=qPfrA݂QV Y'PGg Xhd?2x)"(SVpLbUP!b=m kd=l?" 4Jb&f4xE2zAuJ͸4nKg ?ὴJmrFek6~DRA;`pw*cSHn8dRK"yBDu718󙿼wlGVm;iYBA@I} ]Xr>Nj^z;# u,"Ɠc^.;0}7LDHBKdsk5р'ջ@`r>dxZwj-Dmƅ pQ"P7l!pC*2XY94u%w{벋S u-]#D|BrI_'_%<-CyưuZSnif-q.n I/w >:jf;D#@P0ƙ%|d"S^?xQPcת@dj xUfpJ̗xi QQ5ܴP0yԸG~#4aLn!1vGw(3T> G- ${I`s"3CNA}'V~`-[ʦ+ʺ1(+\VmwLl7(p֕@8l6y)!7!M d#a;MTxg1xhݮ˭(H8pVw$w}%LQ eĕ 9r\LݾJ67-$D_ ff'6L7Ba/.G2v`ײ^Z8fWD: K ⿙RСTERLk3 p+3m;h|8g $o}:>#7E)N} -n};?ĩk 0z`ތ{KsMN-[o/^b:.YDݘ90S>%-ǔuQ)afȗ&y(-J,Kd"6':], Ҏ3%-AmA_9Le]ו(\›bĨnEϮb!+SOH|N5M=bZTv8E[LBsݒ)B'̞%[ڢlF.<·GD&|冉.kz~^!DM8h#q]5}ަ.A)R4x!භyw[`Vd.]dU u6YƮy/ y LKݚL>O۶2kZhը>f8Y!>6>y/V;T39[^S Ӝ%7RMAm>'%f/]'''Xf~"/ʕNqSO a?:%7? xYnuSh=}:t`=\ء3VQْQSZ&5~N7ݞO&N>n.{=DR8? [X݋{"b5nJwªoGeHFρXx% o -pm1S ≗غ<"pUXyHz}ZqWlNyTO vc1:E0!w@5*B ޕv,.R8#Ë+. "a;!yCRu[9ܱAm-jƝ MP{MM>Dk@"Aaئ\vonߋ$ܪv)h\y;%/$"|-,9LG%-O3% ؅h3XR!SMşo,}F*X0_% KO33m-.s#&9dCX`y@jV3$uuNSҡj朘Ý7qze` Ht4EKiOl]dOKtuVR&$BtZmcElQ81:#G !/MEl?}@@[ IӀux-a7OHf, "%jܴ[ YZ@ĜCwq4V)dEB}\Vs-F& vSD+"s'Y" W,YMgºۈZF;б3i*0M@` J C/Ƭ]o)I9OmybF :f}.SmU&FCH[`kQT-Է Æj`[ẼēdXoQ b!_ .T%-lۦс$ļhi*.':;>0li&AMҚEL-{*5CO1j?Zlc+<y5x\!0ܫ]s b1SKTXƩ~_I; |-+UA*;lѰIkS?QGW-G:ی 汈iP@_2:F_O^z8au26ux'w3y~gÉ_՗=wb{gw]p+-4ax͖E3o;-}f_&3ռ7db{̩d>3/Kh6(a| Kw =@H#[xd! \N92QxU%!~иc:Fs(@i] *E@χ9[:#*6qKP`hC i'[ryz f6E#(~[lPHmpQ =IzwI{x$bOeC/<}8i`cn*g+gqY]6nbZ8]fyLcyMȠyrZm;/aޕ $`t`Y{t^V@į#=( zt`V6*[ŞN1q g Rz( 7g Y fcX 3KډeڀNd CR0&ĪKO7|oCHeL mLtYKG| Jt+GS欒2Ӵ̽FhܾkJAH)}0x ;uQr| SFfQ'6ڧʁ:?5Tm>qB\*x̣nMZYC()ue•AFR4mƬy}ujN8v ]v\( mEz8y~'^MNJ[Zύ 9.ˌJ|&ĮÑm2Q# +./_C}Z|x N7 ,*z[ǩE=O 3y_ڷ G{C_tf,XB|;po[Ӻ̀]Y&.ᆹ89@3_8~[eo e;(s7VY>2бׁx[)+u' O_YaejA +ly1Ei@i`;]ѭm .*<>l:/Z4L'd} ;D[| 1KAC0<+Aw\Av;20J*0,aܶ t]ڂK=$0:rY&DkX}d6@|Hv݂J0w]NJBTng_.qz:Bq?#x.՘c?c-b!ǫp6bN/SuӑzeE֛C![?Ih"Yp7!O8R~ 4'5WEMx:r2" Aû%_m}aHTTP#^BA]$DH^F$>ҡ=&temI@!zC} x`R:@H^F$>ҡ=&temI@!zC} x`R:@H^F$>ҡ=&temI@!zC} x`R:?XnUIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-beefarm.png000066400000000000000000000314121263353514300235760ustar00rootroot00000000000000PNG  IHDRgAMA a AiCCPICC ProfileH wTSϽ7" %z ;HQIP&vDF)VdTG"cE b PQDE݌k 5ޚYg}׺PtX4X\XffGD=HƳ.d,P&s"7C$ E6<~&S2)212 "įl+ɘ&Y4Pޚ%ᣌ\%g|eTI(L0_&l2E9r9hxgIbטifSb1+MxL 0oE%YmhYh~S=zU&ϞAYl/$ZUm@O ޜl^ ' lsk.+7oʿ9V;?#I3eE妧KD d9i,UQ h A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYs~iTXtXML:com.adobe.xmp 1 5 20223/100 1 20223/100 130 1 130 2014-08-01T11:08:35 Pixelmator 3.0 gD#gIDATx] E3;ksK@nQ| QQ勈(A "^0Ccsfk71ӛTUիWj (`#> }tHN;1a 퐺o> $Yeel>^cbamxemDWUUZ |~?LFWR[lIQO"D{k*J?1Q "_inn+*n\"uee(|dCh$bjIck'^-`OME1uQQn`#t^Qǵ߲J23oA>ȸ 2ܼyXM{6kV~x .Y|e i]4Aou vV|כIIIV>P]V.mÓG.A67wI9n{5@0EaʁEyZ&8'E@ٞeRq  #%vyy1oFD(DXPr9sJ:;`~Q£mdH \ )7NjJ 8Tj8~W 6NHMuU%A'F* @6oO*yO40($4T=އ?SqJY.A)0xǂmF3YLq'j91kUlv0hXﴶn@?2}@B|Xuw,)aD2LTƮD_VVV7 uT+1+P}!yohnEOqTtB^^H9; l:qp+ `="&ޫ,{#""v5 D=w~S`C$.D٘6^Xzart&얜 lDKkKnR6˫Bأb'뙨lЏ[;oH I eqAeJ?EjtHڣG54/E죸PiIueڅY,Z4:j!*U ƭP"]5k [bCWWϮyfJcޒ9V|5nH/ƍx}eSNQ,Yy+gWD2:Hn]zjrJj|ym/`4ݲ P/a=̑W:.(=6Н$HmϳR"T6)T< P+؆dd󙋀 ӫ y5NƶK2"iPj3N45ex<|i<Hw3[ZZXs L1%`mΚ5IWR#0D`Ќ2Ҧk`iX[W1M84^gA k15RA~/`Qd+U?h_ aDP܆M7/)tYJ+Ҳ%6\w JZ1 ԛdZO m`hp:d; H< Km 7:q~v ~B&&  zqM-!u<q`f @hno+֭8,S[R&| Yhʂ~ -TĖtZΟ?sP[,4勒{ε.Ӳc'-gHMPeHd&sZД?Ԕ͋~oÆ [Yv:kF[=3sitYnvDd %p2+X'ۭ}2Œ><2-Wѿ1 a?4 vaYt^KZsgx7] c_J}M7tttt%zka4bĵ%$zljדbƳ!hIz eףҾ7lhnD6^8)?'e7h],8Y\F V]x Q:^Eom=%.-=8 Ӛ z ZmD6ƭU0YVA``B2Oj1@/oܵ-Cuuumk AoWW 25wt-ruwR:k ű!EiBeM#u_,/LncjAQ^ 7X+Wt]@2-k::wC_uo46ZlQ߄ m{mنI\vaQcT{t{IF !cx+IDm(DU?p%h.a>?Z|9 w80>ˤiy-+R&.0rAs5 yp}اfH[AcUwr+5>#t DŐp]i'07HKP@:yI!77+7j9O` Fx- OE=JWOQFAϪ_s@Hh G`Eb2Bmla&s >))+zC`Ē7\ÆQ֎ۄ#'PW^^=H ;֙=u-T ŒKfLU2c-q.,qx 4z# ykO:=2x Y[(yNV2xիWΙE9Cl GVLfwD@wd@= (UeL-Z "\cJ?>q3c >Yo}7'P^2mņ%~ڊt%@k@䋼+W0]Z?>4DMF>nSgg{=HY ~A}܍Ԏ:ʥ f'*zw{Msx@]e(A:,{!rbx_fvg <(?6ؓXΘj˴i|8,Raܳ&{xUwٯ˪w|E&RVz@ t0F#ۼ)p}|`'hP IS^P}%5U,:$esI :q;wl(Y2[nnejI'P*fO{XͪD+@eK C\~A|+bS jg,W|$ҨT<ֶ9l)Jf+)ex?,?yH#eAy B^pn6h"XuzY|:O7P*@vUEJ;$hVTg?`0P;~]APCL#mz:^D{#>y8[ *9E}$ g2>U H„@'6LN‡m?^64hjHhH ll8x TaBICN >T>=My/roH$Og/a-M;`T+.4_/d vH b44kylc3@, T%.~Zqee/,X`'O@JFR^~~ )$if򭊊hIբ9RcbY'`ᆥS.I `r. xVLWD` \1>y~y982{JE C#z64"o282O5TCQ곑q 8:uHP\@{_(A(PҖ\RϷ?Y@4lSNKӊ }P J{ecWL0:{8␀L6y|ath2gcgJya+EM>M<^{>8(Ͻ/a6pztcFT"CB x GN6czfw(Eʲћͫz0@R*Y5le G8|ٷ|H0sġA9𠄰q 1CP&76y۔ 8Js֢sw+HҏX62㨁҉ U^D95 kjډZҰh907Q'J‰'/5xeҎSˁ~lۖQ *hğ' ~Ɂ͇>{&-СyڑgԸdCi ZIT +LD|րàa.T\xQH.׳dj>;SSYz#Ï9o kGc*Zxs89!z4y$,*`OF*2+̓Ř耭D7P I18J3 ̃wV8OW2؆c Qpj]*'99GqrʡXg)s>c4~_#r# 6 4we=9*Z[9"A7j1%jdPnoԪ= <2ż359G //-3gȀ+# PDgZ&mA=o;AJ Jyiv],Cු,iFm;h 5 mYz/c*pZMk/xE\F |dFL=8#7(~+*l=CXFBc #u  ޟAW;,нe+ 3Pa5XZ cJaE)cj [L+1H ~<}gMvj{Y1Ve`F?q觕 +Ҏ@9KIO,屇m 73?SMܓ2ׂ| N4B;#lC|rI2l Q []rϠm%uWfցLks\Z" ٺM^yW /~zet0R ٔYG߅#FNl̓`NMw ʸ/6:4lH$4'nwscq>ݧͺ4327Yil C{51r u[E*TULEKIK = Px!B3pH/7\S+OfNcwZNOfQ/3"N`vt= Xs`]rCcRW>ABmlhgai`ݾsNE$~ahCD2GFw0KL9sdPԃ}V7p$:5MN{S`$%)ڋ0$ 4Yϙi? O=ũSw.#H!ۓSҀ "hOy^]a> A=MW98aVI<t$Ltv3Wp^hPY[[{ʚs>mSftV&Z$'*<[ \ D3 :E}@ZEj)Nze:INGU7oJll4h{cs>gz !ȆBНeE2s"ӈEC@к{,N;wRTi_rs sDSGD_mq|@S Ogg *Y`_Gu%NՉs!$̉< ;(@n w Ѧ?>WCIFO_H2ÿ]9k@+v`xų,IT698fCpb(H;8}1\ߗΔay `Z޳e)ɋRӓm)qN@Ha:+Yd by4l\0‡ 'st}]u`p[ro ?4!1B [~OO41;gLBNV+dhcCk" Z;0ObW?M`lG`i$⯻r_P$eW4%Ugo/ÈlʺՐ!'@ XJA&$*u"`=ie_`^Ɖ?8氀b-$G oÍnMZkX7y,8tX֦@ v.t斩>[(W7ȱʟBR/^KM|Ofa%=rzIM,!cFF&Z PSq;9̽a{@+rV{?] ]B<HڊOAKNK~nBLغ6h6@A݁!wypGm`wU Z<YWu UJ |y;{ߟɡ1>ҿmz!։xE$y4G qG, e_jh}Tˮi5fa^ːБ`K pnhc7`w)Kq=cxz<7Xr%A,@э 7|8YD7eƻ@ QZ;EkbۼFlwdL;˴muGC[rwB \I'6usy8rGw 6<|׏c1),'&@ /766LLWʤIҹ Ehi{&.gW -/1~<2# jjeO!Q$yN*_,0*0*m$t~%' q.W}LƒdX0e3wcu YWQeTk ~xOz pUUfyT1eِI"G6R-'MN^̞@pHS]Rk5X݀m ِt{TVVu<" l1㈝ׂ[7J #W4DF}@C1h(WaLIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-blimp.png000066400000000000000000000141411263353514300233000ustar00rootroot00000000000000PNG  IHDR(IDATxŲkaɰ0"bB Q |U5>( rw`D%+T$D%/vկ9 g{Ҟ3};sfUq5h&,$5-mZWp< 8b%`G^x@ݺw{!vQrvح{G= 8b%`G^x@ݺw{!vQrvح{G= 8b%`G^x@ݺw{!vQrvح{GWޅ#\ƪ ֹ! 4RSS%%%Tz||*TP *,  Ji*RRS䉓rq9~?qBN:e/_>}.9*@bO(rf]*Wko*o2>|XIOL~uI?""dpuJm7#G?ΑϿJT`XJ%[wgݖʢK9d…Ť #VnsO@ڵ7ȝw&֯ܟ˨ϿfN"0 {u*\ PsΕuof֭{^ Aۢ2u 7$%mJ%o>ɟt``JO`G3"B^ңk9sTxe)j8(=x@_y}*MLiitHQ)R4ɧ*D…H"FmR'%Z]?ǎ5Q'`SО'Mƒf~ =,X(YWTMdƍrjYrWMFeU?_2Xnj.Jvd_2#m2-UTPf0 k`mmeM\% .P])ӴByeÆtPX޳GthV^7P>?!CDD֜PB|iJڱs?f|_XUU7/J"? 76:0puj3h!.iR2˓%\C]e9z=D^\9?az*ΗEm{]rSRl뱨P'36D o, pmuUA0*jUd_E3G`?ߢ 7a-sO>aL¯d4Wo/w+(j&6pP؀`Sk?I?P?3⅃!&аwGJx NᡰP. 2M&~SƱDX)bZ5 +Wn:{3-A5oX8A6 0,rAxf K>TL0ѓB޷oTX1A4.y~׍PsNZ{w&0;ø:w@}FDS͉[v0ڡQ/(~LCGJH214d`?I( #F;w=ic=rTmr!3o; Pʖ!I+4KjWSe_\C؀@hҥbJ >[I )I Hp"V؞y ]H%&Fz_>V:pBX2Z~{ [աw<չ{Գfr٥7,~:}ZL/G D4A'^Dq)O*V4kjځjժJys FPfϙ ꍯD$g8l@\OΜb(,PЀ"^S t^Ƴ3˜9~RZ@vaOF.tũp,țVY#_|5Yf8&"7);]mh2BUU7 `<ʗ+kVZF~٭ !ϴkZ%xbyC^VUQw:qBO}fҺP9u1@Y^QYze9*9I]љ hui:~YB߽דfUC®QDp}%HMM3-!;Ѹʿ^JceV]gG}gK݌4bTpz)4@036|UWwm@t37Aoe-*d'LD+0#Ó?2|0cmK5xՔ鸹E%Z#Rkܜ* `f1x7 i$tg<ߗWy9m۶,^^lI2 P\03>[ZCZ!GTLi) YXEw>vQɬJH(n<pg J` {䯿}fi k7@p`PGHpghe^hZX|dZDgIr'"TF=21J#aտw,9,my@=x@8KEkFϲ&1e?8F*l[CSoݺS. ]:=꫏S)]1VI[۬~0ai-΁زNeKG(C~G]ҡG(qއz+qϣ9Ta޻댳r3HO`RIzC;σ#$y]6$\: Y3B]6me-@إ3zzTeCF{ldծU iԴJ*GtuT}ʮ|Az&3x6OhV:7Y=r PhBegHLLR?@Yh%5^RR<0" Li"?b8$kV"h0>1LI<wk=?6D>yhBL* ?o2!偱a/QX$ =bKu)l= p+%ьGYoǑV0!v-n8P &!n3w|ժT5 \N&L6Àg詡ʔ.uq2SWw֡Ζ}0{bN KXQmҢ(8'v"1eҌr۪s)f~_V>0To4:E4ut24ԭ}D@fv~S&=6ilL{/ѬiS;`6[\* +AL ?0T]FE u K4~$֘"}ߣ4pz:cqN}_0zY{.8]ܧaY爷՚1鞻[w{osf\CAXJK.+apT]$^S{zVYSΩSG8ի~M+pD{d) T2ĦS437ֳ#F}n#.~YOȁ0FɊ9/ 2}۞ÇHiy <%wtFR,k?pYӠY .d9j& ^{V!0:*]x5˯'w#'A5(&f{n.ݾnz؉ifeuӍYnjXZ&*! zUٸi5".D8M߻j-!] "/06nG؟qmAtϨq6U{%ojջ-VaJ˨M|f0{^szr 0s k1|hG#J nnE!!'yk&5F&/_apm|6D 5 O0+D8;"Xjgʹo,,jrp d?!vnBv9]W\fC93ČvduAE.1Nc`/KUPF](:\RC hƼJEkyU>"w4;d֭Zq😒-TU6ʾHNV5 bYѽHh vbwSMƒ*o{C|kXK/sc-|#Fzbڑc{Q@ BuKMډ`hsh=[`dݒˍ s]s]0SԖ?Bj?HaC|۶vǛ_G`ToϜ5UJޗ3/cLVpRgFrLiEXۢJ S}/1[cC[=XG,ch ?&2ŏ$K}`oAjQk-(jXMż(}/0z$">=¼9mn%ǐ PZwnmP_5ON>1†u F P%B Y$48* MJ0gd@}) iP=g Q 8V Fbj"Fz2#=mefqd$IFBu٩Vt" y2s)4aSUFg&{D0 S "2I<J(P\(A>,es]GAT*$#*>ѧNCTj>yCgЃ/CzlMG5>Pu-W!5gn3^*+QϡT^K ڇ\ŽmKLBn Os8]vkJgQL7d6m(噇e~^Ihb* MeW(㫏VZ c>S,l0Flh-$15_reӠ!̢ HCffYAK w !sNBs=]f̀8W#LF~@87k]ԛ`+F-1Ӆq~^66˘K1>';T$ɿ:Md.ʻ92fR &$Gc-K1M·{6Tx98Ugnɳ ! p~2FbېFj݋(GoM CC,Vojw\T)Ԇ0]-HW֢zQi~'j=D531Ц{9J5f*K`gc/\L=~WztԔP [ w^fp2ʹ^l̬ml-;8忟ʭI/US.k<-P|O F#C=lt{lI(JPɒ]hCmk{yr*yYeUܸ֙"հy8n3xo`tƴ2gHf4l³,</VtEsM)-5yW37+g FbPۆpT.7b7j[I_+x13PŴ`~" PZl=q `"lާ"bgut`|֔iް̮zs`P&߼I> SbMIX!jW)hq3\0S,.fX+>JU0Hg]^SV-^hX"S^XƵX/ 2-dt"dwE*91pF(*2+%e#_X29*DpL?bWKD6f.D8|Vc}G8MUisfQF.2#Xa-*M\Ax*xR]B:D,hx`Lj\1+q ˨{lO NLg=q_ ko(bhڀI"TE*2ϼLdz{2U2K123G,|=4veˉe*pݻ;b$')i{)F #`dG>}, cݻ>_ bD(F6ضr6tF j fXeZkqUY_"30A+tږtÖt7 7Ʀ*kٰrAI1p(ӸgD;Ѻn=}Ѫ&YIN(1fNW37tbYiah+zc1͗6[\5Ix-2f)':U.l̛y_I_īZ$a-TFⱭ~%A̛wGiWIguB1-<2sʢQ#z }(UOo%JBxܬN a>uBEvBjŒJzRsϑfe(ك>W=J/udwGw bi3kfA4oV@`m2?."Hso Z|x=k8zh2'%Psn0n㲫Ol*m tFo^ብݟ:>_u_ݱ`)3P[1Fvάc KŹ>~?`/"*6uͬr ׈D{7meM*jIds cu @7 L#ݺn?Au Ů;ZNEeqQkp CktXl:-vEp$nO_Մ 碍\L&^7+u^._}սbpG;Qw-Y4߀8TQʜT;=POEмwTPiC]y3U An0чᷖu3KB;6^iv%2S3W(5_EbD02- O0NcfFɲ`b2EYͬ\u(z um*NZ-jV/{5Qj].=oos$hmDՓ+1J-9_p5L7A(T;{$4GF)8L\P~NǃJšeWԸƍ5w nH|е'ߢ: ̯+T>DG)5Y!B ĀY0L[9(yl%{"ܛSH|J م6$$$$GKt:M2]'t]'Lq$rz DK. سg6lXD:::4/"h׻bW4W^errUU ޽>fddAss3tA$%%%466DLsqꘝ^a Y83<}d24'N^ٲ,.]0 $gΜ!]ռtvv.,TX,А57o 0 < C{{;/^0 ^JGGEh4###+["z!~m:::|l߾Eatt^y^/wW_>`߾}8N\¡CPU!~a}YV' S__asqF^y0@@ nGY5!رc7of||qΝ; O<Sܾ}0uzܿZZZy&[nfw^:::%HX:E$AA,iE\Уi8Ξ=k~{YQ,i"!x<TU( EEEq\@ee%>E\Nww7LUUIRP__y.Md2yXSt:ihhZ;F:&< r n7ՅLǩa!gfffMNu-Ɔ &Np8 *K R&Byy9ܸqp8Ņߖ *޽{)++p Lw\YY,(P(w eeeXLߒׯ_!.6nh9H]v"8 FII 333RWWG}}=~` rl1fggq:n+l;.*vœO>ᠧݎf#奰+.X0 Rv&^SHQY!kJyy9Dׯ}vv;uuu444pQv(3331 l6k zڊ㡾n***P n޼IssVUU;8cccTWWk?q N@ `6244Ԕ%%%06ľ~?NH$br=x~8> $>]&/bA0NGuuAa.EUU***|V0899I0$RSS QSS0 &''qx^277[$NR XϹj+efYKkkk BV6U__O*RBt:/&uq䥏+LY&k~nYL~u5{ߝn O(I$ZDqRT^UUQ4rcJ"|L¡!E!LŨ4yv޷vjavvK"|hmme˖-(­[8t6 !GCDxs -͆f# qY<( q4߿͛7sY|zVܹsTTTM6el۶P(ĭ[H&=zÇ4[]GAa9u{{;*}2 C `ӦM|Qhnnvf`߾}SVV޽{}UzlٲM]]ê>aۭb.nعs'sNdQ!W ϝC|aV8}@\&G\ܑCjs'J5\.խDBIIu(X,3;tEQ I"d`{[^c#ܹ͛sŠsƍ\pl6K*ܹs466)x "Eütvv*l<pa~_r`a;>*oo.|+ٳH$~#ٻw~NDñBΏ/3N1 c$$d ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! qI\܀S+IENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-cantemo.gif000066400000000000000000000106561263353514300236130ustar00rootroot00000000000000GIF87a ""$$++++2244;;<ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2TF[p(@Xr4Pm8Ww)Km,pH,Ȥrl:ШtJZجvzxL.zn|N~aeN\E "!" EW!++/31.+)CO$1+!CLB&.3BDB)1/! B >m1#hO݋*FpP.|@E}=xZm 2,xR R@ \` &5)r@:d8!HBTA*$·gx`trwnKAF@C 2>f ;[Hً ~_TsŦ: *h0SgM> '0gF=Ђ /t .O r@giLU8bc/o H!;django-rest-framework-3.3.2/docs/img/sponsors/3-crosswordtracker.png000066400000000000000000000150731263353514300256030ustar00rootroot00000000000000PNG  IHDR pHYs  IDATxwtUU?^ !B:tGGE "APT  cF=B ܔNyܓK e?g-YY۶Ho$$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H$A AH!H nw,!i nXUY*j>ٲ2 (rrΫ`0H0$>>8ƶme^Ϋ=rbcc4~?i󜗝iZ>4۲YQRYYIV8[5McH^0 +,|?<Ȇ 1rY1j11gtzj:t@Ν1͆ڬm;ogΝ43Z Kp giv4Mcۗf-Z`[}ioz\yUQ|5~+L7M4b=>d=`̙Xi ,ƶ,4Mv0j\|cG˴!&&]u[ri/vn*V@׸m"cW7tn<e#Ug UME rQTXSMS#}2Z}ETbcc QCe((f6B.ן/DzH]ì&LLVF!ƲTr*~&Xr0HdmۑkkNr쟫)i1Y40WFHmk!P4ʇ??R{|Pt$ϗװߦmZx̣twT܍m$A!kү8SeC{PK?XHG]'O$#jVoA~AZLLILחʝ{874|ude+sOح+6ܧ'yQwv0Iܑċ.$ȺiAסƺQ:2 %t =11<#DmO`&HD)D~.]@y3nתĶj Q; C4| vE@ U(/rw'>䞗۲c`SH\0o&ݺFǍAPU Rއ4äh;480Δ~]8h32U|! 3d)"*\tfP4}m)T8sg4FTQo:R4_n$xfw¬X!wՏ0Bi<~c+:^tr;%%}V۲h5^־O8z ,V-ԝu ),C9mb2sh20MZw'V8)±kCZ8YJlQ}UAkKHj'@q#ɞ6=%9\XϊRP>= ES ;~kK5JٖN"kpL +xIFᨯ5vm?Nx ED5J>BF &US9ǨqW(F1[$]ҍNoLĺ;mіaSVlӦ%>EW%wwv?zPUԤD&iW ?扙ၬ3U[/&Iy?7ܻ;zJM_b[#j %&۲<Nls5]28]we"lR.Ah*GeNj:Xr iH):(z+ӮM/!P%|S5+v()yc TTO,&dD2YÎѓ8tcSSQIKݼ)"Z{]%l.|&#i;0+*qjY}JlQQf۰,סyhtu;wde+kᔲ=4Zrv7ؖI?V!!/G }\|*] N;ڶƮ3 Kl&k3ħ_iy]wPM5ʼn Xr+@sQ1EޣdF6sgʁBUw_pg4Be^J7nd {h)upCqےԽV tZ|(1M2ٗoc+hDٖ!&+6M aKCPGiۺ9J\i[6 aס"\׼e!Ts/q|ƮY,23)hIhI N+4o&hX7 e),Lӊ:ehkM o_!ñu[wv'E]e6&Y'X&|- ˲0 G⥽n(DvqN?7j[ٜ^pivM(z(B="h~; EQQU;=T"=:s !bku͉+޵Zfgڑl>(++`ݺu;7|y]r Y*mˣQF48> !(**.]`F)!-[ޣ9zy6XϹ"JK0Ms#EZXXǣ*j!JC7rN;t]cGD> ˆƒꫯmԨs& 1zبN VMܥ9"j<}B-Ǐ?'VVxj#vڅa8qr˝&ѳWO,IAA>lˣql b.B `k1c233ڨ–-߳vlsk+oK(b#o;'JJP5^C}9Zض"6mԩS(BShƚUIHH`C|エСލExI'b&W^}dElayqi*K/fޜ9Eun"WUc~1g2\CXݳDLmF.III4M}sqrV4[Eƍn`4MciڹP(D\\k|׬^Ν/h!кi&fNΔc#~"RE|2}:݂ɹuf&}7b& h=S&XEllVatܙ/Dx:.YX:.,~u:܂ͧDǜ @Q+_]PPgaO/9C* 1k fϝKKS'NwP5dR7na`YΚu(>^ć|@0䡩Sɽ0-,_.O=MAA`NY\Z!#8E5?k5kHMKc޽΃?LqG2ضm^~?~x6o/;~Emg3dЈE9v:ի٫'eU@ n9EQu-Z1ǫ¿zڱqF1k&Y͚y~-&RUUxwZrssjՀ*/]ysaִ'ğQLǪ+(,,d_3[iݦ eLf͉VTUeӦM0z #<{^<Oԩ]z#.b> ,P yz:thM.$:慅 s$nD`;gKBPUcvsZv YMr@NNx#S3Beӧӧg?&y'-[knר9Tظa]~9nUU8r0&N޻ѴiS?,o-_5OIOOCI#g*,{MuFvlzM= #Y^MSdǤӥKs_QQλ;.m(2iD^o&{nFI߾rݓ0 P4- S ~P.@ dsi_!>W`mۖKg\TvjF~?~`0xF!GXnj8˲1 N!-=K08~-E!m2|Y>${N dڌtamػgoԧys0j(&9èYZnM0,AOyt,ƍC֭0qbTj]iպ5GLb)||ۨb gxt,|RƎ͸1c}hFA~~~YO5OV"m$$&2nX>|N3үIXBDݲ,6 M 5$![}{,3g%_dϡV[nw, _xԔHUoi1GC+bWDz,vW_eΝdffҮ};>v-_7vesÝԴTϜɼ9sXM7n\ÏucǏGH1j&a8]۫/r(R+6m(*O=4 Wxu3hiRUU~')`q\~L _Æq͵RYY(TUU0L4]-o_TY5...Gi|>UU>,$D3)***TU &2jc_0jmBUnO@eeeoM jlwu9oKp W#! ezgflSt7Km'}#?R) qBR) qBR) qBR) qBR) qBR) qBR) qBR) qBR) qBR) qBR) qBR) qBRѩvvIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-fluxility.png000066400000000000000000000235201263353514300242270ustar00rootroot00000000000000PNG  IHDRbKGD pHYs  tIME )6@I IDATx}yeW]soWU , - *cc-Jmԥa (!6BDF C 2QIjʫzӝ}s_WU$5ܽ[s011111111q']n=j.W}v,\'x7~Nْ~Ւd'A` {yqxO0 \n=6JS.בpc@x{a |/(Ɣ*; Fc {w&L}bq. @FG/o4@8/v0SNҠ`\o|/o4z' qb9y- IGQ]/]^1a^L4u ?\ InM 谀0o\5ec RBhDAwkޯz]&Ԏlwy01±-2LJD:8[HJ6u5ltO@8&n.%ouK[!Z؏$9c c /2e `TEHh1NQkf1=MFB$D@%u^>Bc:6}Ǟ; JVb~;׮z4y$.$47XÁKHٿݽ4oA:R\zp7"- vwWgۡpD.$yp+ @8VV`cyݷ}{8n{Gε!iA׏pH0@VQǓ sss)84nAk<]nZ* (DQMH0G|{מ=]{y>-B7k5Ukq.90=AQHV/"$L]hG0:勷ڶaæ33@Һ <I8)ۻ`q=!#dQMjBBHԠsr[lwΦUAoᎅ].)GDZD8]2x Ƥ՜؍C߿Ԟ墘p>yE7Wvc )M~mԃ"x$4dZ@ts圀q©bBpAB :"k|!Iwv;I." 8 !#Јk@ȑH!4̿c_@~ B7nZSO䕳qPP[ ;gBT:NGB)@*"@zN"` Zmh Y ƦF'pS8w,k3OlcwpXh4!+E7rcЀ DNW@pG|<)<@0u9ݼ1I>P9#nJ[UT_{rk \BdbHdrrRT!w^>z!Sx 01`Pi@tCO5Q)tz1cpu'd^+w,!\N/v}JRA1.rW5`pʣ[H6!EQlCgB!`H U[-Q܈Syvk5xǍh{x/Wέ&$"&ʧ:8b$:P"kIGPu%3dJu|Fs+h7 > 'DbD;0}LaQvyd)$ >"c!U}6I8_ *^>b*py!*`K!`s6s%w,nb5yBJwjER|7rG{͏1p.ě%!EՃ509` :RӍz+J87 +ɭ`WG+a ͝aWAo5b$05@ĴI Bel6ʲ{.V4̶``x}~#gL5$5[D^C6m;g6U?[8ڧn:]Fy2qɆk25frDtYMq0CP :#7)c|I熃s+ WTNԒ( Y18=0!@ylE>#]խ_Zp_޵+Ey&PLV]7VUd$q܆n%$cUy>GF17UU&dbwS1PM1ǜ$8 uCb寡 \fJV!\Kt>>|9 [=ڋeQ;K񖢛 h_# !{@ ?NC #ܼ8Ya*s 9;In$/h3a޹aP5x"p4%NqF1㢇PDus΅>^ci- 6t+HHaOTNSN /*ù9 Av!;2Uf+&fsD=Tu^l6%˲&˲fu@ ?ǽ}Cټ4E0ɽ G &BaZiF1@;:}g>M\;'q;S'3sqCZX  t;}0}YҠ|3l (2(Z FfT]>[* 0#ܜ ӕ7sgS?[O,F؀ yz1omwuzyt}ϻBOʲԲ,+ofso_ Nߖ]]!0}PJH:Ha3TT(ʃ7@z}=#_ڦzwr:`*o7sjL>Л }j~pPj6Pɲ%P4'5Q~,!!eP( `JJҕ$Oqq]bst1 CM.O^Ł6/hfSy (CaS{5 _os p5O8o K1>2p:B4R͆KRcuk`i@*Eu!P]^N(N%tD41S#)u9I"8{ڦ4q&!tr ?9>nr |4p' :y _X k=H, M$* ȇ*jYU{ ,2<@۴\YINp-eonuu8@K>BeN6h e!![!]TK\:4=:A簐Ƣj0ҎRmUUQ| 9 )`!Z*禌m1Qsp\+'wˑFi,vxQ%`oe׉9)90Zυu\G!8$X$J_ՇJ:vTTGW$@|| ldk(Ig_v) osIÊ1NulP \$IVn^ wDD@m&H[}k|݌o~SHa5pٞvב @Mײ,[UMHʦsa˅] ,@pupE UPi w\ J=+&#(y{=3w)_~:ܸs1w!?c]eˏ7A$|_fl6w 5^0/>t`,fP+ E{_=H&Ei@#@'*Wc #S8KgoLq٩,'_m B>4Wl iS,"i:qÛ<;-a~˟ۭTOp15*/OaG.p!GN[hTxٍو: Aɇ36&vfGb,a͟Ȳ׳,^YβUY=?˲ɲYPe5˲O`_w_T*D&}E>\sŸF2(.D)ZlKfU~óaa|6 R|/wW섛㟿D_QsϽGݺaG'_M/tI`M"ᘺoefg:0Q+7H'mpxe8gS:j$zSΠ:~r޲?2{_tQ+-8"fͲ"/*-ͲGjkl+ٕee`<l~~ۭ1d8W2čz C9vl"nUp;&^?m{9K` _+ϻw .(*To(DP< zSSv[z϶5pP૷x$`/Q!x5æE*MIi0 /@n SjNMOiTg]4>~[<RpO  C1250T)KdcL/Xr.l/| H;==떥 8r$t_l6r=U0x1<C wgX6  0 iӯ\7`c8$=:}o~u'm6;@8{BT:(jJr TQj.5'WJBZ*{#55IW.>x MJ؀]Վ(n64C-\[˃0%-PXKJ_F\c @ӏ$^Jۍrάi mx_׹sr2@3G"(V*ޤ]:NZBpsUK `ٲ~/=xU"`u. rJJGR]VrpaaX}r&x\x be:iܷ8㇎70 ;Cw\>~<^X5& 2P;7q f nIDATx]ilUZ*jmIQh mF R\"ƅ%55@j\bFQ?XT &^ VVZY|~9N7оyߗ{wo=s% CD HD HD HD HD HD HD HD HD HD HD HD HD HD HD H"/J"CNФulhpN#/ 7:L۪d:$ '~PT9$Z,lgig98djWGq?Ǘ¥iq%cª] x \ʎЏZ?3vD+ϡ72L$3꙾Iò2I ~g)+[׮]ېCdiD)f,u V#/P߿efMpG}1Nӏi)͗-1=~fÖ,A$>Rqjݯu ׆lƬi*y139'拕}V;QPz4Q3t( C${8=\{貍0 y\ǫHBֆ[⹔P!x'J{>•G>Sx(y`+~,d:L'Wo sШNqћmw"^$ $&@V$:3:Ik=C=t17q+%/,o6Nk2?˃f/?2}x]l,!BY)KQ[ǘ--&ѫ֙5 PwS){_3m Z)om!+! L~ޫNߒCC&oG0kdT,g"H)6H,@"lW&%ޠ%&zڦ+DpAV^5%axW#1 !ջ+vw ;[cZ6&1)NBDllk| a^A`7B"t d!څTOXߟAPJ"Aa Nـr6:=^lM+l6@t2/-L҉ӌWOٶ AcrRJ;]{q$7p3qJ꬞J!n^dMU|c%V|[wE4(/h=a\gs%T߇1; khO,Fj3HS& j_䛀rvSq"!+u^.?_8#oCwujLqoJXc?]!mx.ʐU)ʛhCyWĮa*4>|);]JFW;]uvnPˠ&}4DgXc:* . c~IDATx\Kl1xLUV7P/*QW5],v̮U*MB2R[5))" qm؃=y_sc9G;{O.+cU00  00  00  00  00  00  00  00  00 , 00 , 0<#b}ídYSeYhx<.w h^{3:3x33tnZ\\_qmqɓjc}Y c,`ԕKX>EjO_XH$0=jC~fʥt5aZ5/}q]]xC2O!˕Z{MMWhO1ܶܐd}dUL1=\IB Y|mt:)WeE, OQ.q b ʋ4$F+Ϥ_6|yĸ@nv:f'Ӷg xB^6b׃+Ess3h(YwPd3^`aN}lot%?ќQyĈSNVgaOvv*9tCput[#hv@NPs %߿QPzű^ D6ˏ"ol{,;ic+/G.XP8V| }6 Cjkk^ +4Nk!| dd' KU #*IfT@ia^xC5zN۷0̥x m..a|DN/!v`3p/U{;d<~ǹO/ '5`X Tث1Tꛉ0LOzjϬkad@?߷rWYcg|֎XCKK-~ֿJJG ?虜$~ U{K/j;Nŕ龿?0Vƒ:_Jj9[b"\>txnn4xWL M%ӟ\vv' %^Mkm{D"$οZS[I_Ѳg`nluffA,*-PPn,]p2lPc ԰$+_=gT"mr ;kz&d0%v7QRL !gGNX,7¸sGt((4ð<[K+Pl+sĉQ\YvfƧ{) f cGr5cXv#(&`x $QN ގ0HnR{A Xݻ gq qNokK^8#dzz~+);PR'Pr,6#;IH$~nֻ4,r>E9-¬D;TH p#㡅e, DƇ eEx.(y gpD91l5c׮İ_W%m(H2WFk)൶*Y **?=6S>M ЁqȪ NA3P;99YY`miٲ|EnYT/;蔦l#:I=]3nh{1>TC881M۴bss}4 :yRK:XRo||\rpTcccHB 01WJWs[bz( [fWs67>B8& F4-jHO *V H،iS$ݻ)x'S|d9'PSOM񸓷`ȓ`<+:1$ +N]\*]pzHQ03*"Rpԉ<.u;.ӯqtFfֺH=pNtvOq'R<~|fg}xNA=h4⩚j*ar2S0A---؈gظr6`p_F7Iy(QI){pއAHy=/R|_V@H㯈BS")#ޤF/%K1 𺭭 yE+JGm)aH;n0OPWYAM:^HS4t_dєUlPsnR$mFeW6 @ t2|P̮9EfAb1%x9eL(m _k6^9v@ب%zOQW)C3,vzT:Lw?87;jEѓNem +.gK(e:@8O ̴ɂћAA!Y'U@mOE ks tiqsa!pqjDT-UmՉs<LiWs;~`(}̍ndVRC,:GW]###>3*B9VQ.d BˡH7Tcا\uAl8vNެ;ٮI^%c&7(笈N_GQm+HOF;q{ֱ}(ǒL[5<ɡtYahhZ ;wQr@_ Υn@_(☮|FYb%"+ʛ D8Z)h4޽ jmmCZMWXV[: SN6P*"rB92:hOs UPJVs x:[kn7ר g")N6Qjm2 $gv,h:02uEcC(Ի}v#jO trLp9B%?xօڱtMjWomgzzmRJ0bPf]4ԋZtő.L,Quϥlb46l@ P ji¦u> "Qܪ!#f׾MlT*t"ARz)_0 , 00 , 00 , 00 , 00 , 00 , 00 , 00 , 00  00  00  : 5VIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-holvi.png000066400000000000000000000165551263353514300233310ustar00rootroot00000000000000PNG  IHDR pHYs  IDATxyuOUuw&  B (g W"z x nUPdPTD,4@&\&$zHg23]3=׫_L=?WT2evLiPB,2B(3҂a0`PZ=`#"{t/ܞ_OyյN6",A9a&P?@g{֒(1Ia W?*_~{4>yua.@8 u^! vA5gwtgrԾG˙X\pP5G)lTy 3ύ8I^W:!4sݭ7-/ƁKX| aiA+Tm\/wlB{N GG$YLEBDlҎXY;ڏ?a)}!,b'ە!(ܼvu\;oowrQBX*Y* T;Eb9}pYO[3Q >vև&>)=!,"7T8 I|M']ח"}0Nbw]g ""UOs5 ha(V"?畆 j阆)S1 hU#a_U={=:$vB W"u81󙩒wnңy%T@JGN" ? oOƛ0SӊmEQDSi&?fpl9vzNJ:*NP/'款}ˍ JieŋPczǞFzk1|q$(+ D.Mf44?OsqQ_!\Z@vr`س  Kؐ\|eN:qX ! +bSRho<߰-DW;4Oms&<;>b( % r+W'#[`w&gnϜI'5TMcaB׊8TL#ǖ;gJP9`3~ໆM4OmK{=Xx;Q8ƧxI3밿`\8!ѳ&q 7+n%u X}ӷ ,lVs%M'͠k{ Zg4"p p}-w AbG<@ &AMPsGP1@-M~Z^{ +r8.LE|g&]oȢCD[[><Ʒ,WEC ris`R+tr𲯑8R=H D2BщpʷְsHuzL -S>&GB捅ٌ˗.DDnCG`b jWskpg.>}7~P%8STFKSckFEs-FXR m)^7F={ kJO%4^I;GSnhpUȮ~1k59i5X? g, {F8n'm8m:RO>-3h2{b"#o \=۴vhw}"wXsxgOV Mtp/rg[mD -R[v@dbPؠ}Wtx8f^ۜ|ڛD.`,vS]Ma.Zyyh )biO a7c#9#`}9'v p!PπFdZ+&!]U~ѯ\y_wDPx4K_j+!⃰@3{n\i7{\p*!l ^,Ėc@w,$3;bE#e;eyBq̖<:%X})"rKzPr:tVs"8ƆBh[ȔP8)1lށc_ Cqe&VӺ碙-WoVe;d ҴSD,ȇ*`T; @`5g~a:BAqz#'pbk/6 D,1t QUsC.lઢgϞEO_C@_ sq0zZBmuU՚ W/Y>lQ6حtEO U!mڼܲngw8T r6[tUnxBt2´܆י+ Xvnwcy?2'.jcZ"oa(b +CV5}Y!}}NJ\ֻBsÉ~JJʃj ӂ!A?# K1og$eO&mMS7P~2ѻVR>&4'T@)HzC^Nqp5(&6 B5O_wEs!|=q_ f6p/ǿ(mh@*Iړ'PEg0 ,ӻ!)}i\j \ t0;ڜOAœ:ۑQ4Q Ϫ&lmIXR& UtJ!_HE`adV`>jbZ[B 1-(AڠgHRQ;J\BXtmζ&A|j%zLq`!>jGQ| Y}"N &WU, ,[Y.&G@q07D@G>ﶓ[ؑ5RJ- '̎E85S"CŚcZ!D+)Q`RiL"];;z iH([ [B24s3ER!?A)#`lp@rx"H 䱑a&ٶPPórUHYBtoث[¶,5jl թ*BLO}y5jpH%],u=oQR2~T,! eeCFï^3:zƎUloƲ<*R.PEK)Xö6 8 rOWO˯1"V]{LeBeң/Z~Hu΃T] O~Ϙ. _hlxxH!&dRb ,khm# }eUlB"r7j<y8(B.6@%T'<+*5r٩L8З7s y7$M݇ӡl'+VnyNuwx\rߢZƞ8w'i<' wpDo9 Gb?$ l0,asLh⮆o M)v%0MI .ѻ|ӸtÛX c+ Svw3 ɘŠ[}s;Xs-)pu_@']!Ρe0V*j I.@iݱ @fGL"$Ҙ%Е>ϟ)NBQ&DԻ$˧iC5xX0/D@ 1܁RԿ7_nvm<A#EN1d L=_]ńAQR$ѐ+FB />e]㦄ǹO\KJQ!url+h lyߚWwx.oCL$pSv7R`jUiPf "cmUz3QD ]{$QhJCw\MuOA; 'k@n[Ӄ>Lңn^Y}45G*MUJQ&R H"FX~EKZ B~» % @M49n $3MlpB (PJLb!)T?&^ܶcG [? $h:&; f>\)=tYf#\y^EJinaQG]ܔGBiA1Dݝqwi)J5Gߨ"z+2-Ftl"" bh'O}pSƉB??2ĺaFA-3'NuQC| iKOƬ_q)ـt,8z}ߚQޅHUR`!(QmeWB'~~t;yJ0BPUAbksPB' b!E]uۥīCus5AތppʰAu+{ >ރ+W(Wr׭DuX4ԁ!nCo l^E+bٿu^sp~{kv%gmRY+9%XFiv1sB(P&CYed( PB e!B(,2@Ye2P( L_ dBOYNUX &"^KLU 6oT'Vg'x!:ϩE|&8/o'"OQ]>FD> t7jWV: kv}Up,[~u|O;ly iڱvu"ïYi4u0)!{fw CˎƱ!9j x6_4 bVꁜ 9h9/%Q4䃈dnYt hj3Y< K?8ʬdmq#0x# b<`bW/H-s: 4YY_ٰD5'("8$?׆PN0b(!T ]@vxѮq}C"2@&Lo8A}e =Y=k1jDdpxm<""=츽nW]:kVeu5#&PE2`E]^&,]gg< uݠRP?S 2 ~oEQG))x%Do !{("ID ,& cZVA) OoXv.BXq( 1jg]A̷5пU^Y=h0OCؑl6|UlezVU7 sjvG})E!%s$؟yA}" g H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-iTXtXML:com.adobe.xmp image/png IMT Computer.Color Adobe Photoshop CC (Macintosh) 2008-11-07T14:05:52-06:00 2014-07-22T09:10:17-05:00 2014-07-22T09:10:17-05:00 xmp.did:713a65fe-9260-466a-be49-b5d75e895bf4 xmp.iid:9f2a6c65-aa78-432a-8dbe-204f68f10bae uuid:F25F45314BEB11DCBA88FD5D4E094651 xmp.iid:713a65fe-9260-466a-be49-b5d75e895bf4 xmp.did:713a65fe-9260-466a-be49-b5d75e895bf4 uuid:F25F45314BEB11DCBA88FD5D4E094651 saved xmp.iid:F87F11740720681197A5AC62362D8EDB 2008-11-07T14:05:52-06:00 Adobe Illustrator CS4 / converted from application/postscript to application/vnd.adobe.photoshop saved xmp.iid:713a65fe-9260-466a-be49-b5d75e895bf4 2014-07-22T09:10:17-05:00 Adobe Photoshop CC (Macintosh) / converted from application/postscript to image/png derived converted from application/vnd.adobe.photoshop to image/png saved xmp.iid:9f2a6c65-aa78-432a-8dbe-204f68f10bae 2014-07-22T09:10:17-05:00 Adobe Photoshop CC (Macintosh) / Adobe PDF library 7.77 8.500000 11.000000 Inches 1 False True Magenta Yellow Black Default Swatch Group 0 K=0 GRAY PROCESS 0 K=100 GRAY PROCESS 255 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 K=25 GRAY PROCESS 63 K=50 GRAY PROCESS 127 K=75 GRAY PROCESS 191 K=100 GRAY PROCESS 255 C=25 M=0 Y=0 K=0 CMYK PROCESS 25.000000 0.000000 0.000000 0.000000 C=50 M=0 Y=0 K=0 CMYK PROCESS 50.000000 0.000000 0.000000 0.000000 C=75 M=0 Y=0 K=0 CMYK PROCESS 75.000000 0.000000 0.000000 0.000000 C=100 M=0 Y=0 K=0 CMYK PROCESS 100.000000 0.000000 0.000000 0.000000 C=25 M=25 Y=0 K=0 CMYK PROCESS 25.000000 25.000000 0.000000 0.000000 C=50 M=50 Y=0 K=0 CMYK PROCESS 50.000000 50.000000 0.000000 0.000000 C=75 M=75 Y=0 K=0 CMYK PROCESS 75.000000 75.000000 0.000000 0.000000 C=100 M=100 Y=0 K=0 CMYK PROCESS 100.000000 100.000000 0.000000 0.000000 C=0 M=25 Y=0 K=0 CMYK PROCESS 0.000000 25.000000 0.000000 0.000000 C=0 M=50 Y=0 K=0 CMYK PROCESS 0.000000 50.000000 0.000000 0.000000 C=0 M=75 Y=0 K=0 CMYK PROCESS 0.000000 75.000000 0.000000 0.000000 C=0 M=100 Y=0 K=0 CMYK PROCESS 0.000000 100.000000 0.000000 0.000000 C=0 M=25 Y=25 K=0 CMYK PROCESS 0.000000 25.000000 25.000000 0.000000 C=0 M=50 Y=50 K=0 CMYK PROCESS 0.000000 50.000000 50.000000 0.000000 C=0 M=75 Y=75 K=0 CMYK PROCESS 0.000000 75.000000 75.000000 0.000000 C=0 M=100 Y=100 K=0 CMYK PROCESS 0.000000 100.000000 100.000000 0.000000 C=0 M=0 Y=25 K=0 CMYK PROCESS 0.000000 0.000000 25.000000 0.000000 C=0 M=0 Y=50 K=0 CMYK PROCESS 0.000000 0.000000 50.000000 0.000000 C=0 M=0 Y=75 K=0 CMYK PROCESS 0.000000 0.000000 75.000000 0.000000 C=0 M=0 Y=100 K=0 CMYK PROCESS 0.000000 0.000000 100.000000 0.000000 C=25 M=0 Y=25 K=0 CMYK PROCESS 25.000000 0.000000 25.000000 0.000000 C=50 M=0 Y=50 K=0 CMYK PROCESS 50.000000 0.000000 50.000000 0.000000 C=75 M=0 Y=75 K=0 CMYK PROCESS 75.000000 0.000000 75.000000 0.000000 C=100 M=0 Y=100 K=0 CMYK PROCESS 100.000000 0.000000 100.000000 0.000000 C=25 M=13 Y=0 K=0 CMYK PROCESS 25.000000 12.500000 0.000000 0.000000 C=50 M=25 Y=0 K=0 CMYK PROCESS 50.000000 25.000000 0.000000 0.000000 C=75 M=38 Y=0 K=0 CMYK PROCESS 75.000000 37.500000 0.000000 0.000000 C=100 M=50 Y=0 K=0 CMYK PROCESS 100.000000 50.000000 0.000000 0.000000 C=13 M=25 Y=0 K=0 CMYK PROCESS 12.500000 25.000000 0.000000 0.000000 C=25 M=50 Y=0 K=0 CMYK PROCESS 25.000000 50.000000 0.000000 0.000000 C=38 M=75 Y=0 K=0 CMYK PROCESS 37.500000 75.000000 0.000000 0.000000 C=50 M=100 Y=0 K=0 CMYK PROCESS 50.000000 100.000000 0.000000 0.000000 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 C=0 M=25 Y=13 K=0 CMYK PROCESS 0.000000 25.000000 12.500000 0.000000 C=0 M=50 Y=25 K=0 CMYK PROCESS 0.000000 50.000000 25.000000 0.000000 C=0 M=75 Y=38 K=0 CMYK PROCESS 0.000000 75.000000 37.500000 0.000000 C=0 M=100 Y=50 K=0 CMYK PROCESS 0.000000 100.000000 50.000000 0.000000 C=0 M=13 Y=25 K=0 CMYK PROCESS 0.000000 12.500000 25.000000 0.000000 C=0 M=25 Y=50 K=0 CMYK PROCESS 0.000000 25.000000 50.000000 0.000000 C=0 M=38 Y=75 K=0 CMYK PROCESS 0.000000 37.500000 75.000000 0.000000 C=0 M=50 Y=100 K=0 CMYK PROCESS 0.000000 50.000000 100.000000 0.000000 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 C=13 M=0 Y=25 K=0 CMYK PROCESS 12.500000 0.000000 25.000000 0.000000 C=25 M=0 Y=50 K=0 CMYK PROCESS 25.000000 0.000000 50.000000 0.000000 C=38 M=0 Y=75 K=0 CMYK PROCESS 37.500000 0.000000 75.000000 0.000000 C=50 M=0 Y=100 K=0 CMYK PROCESS 50.000000 0.000000 100.000000 0.000000 C=25 M=0 Y=13 K=0 CMYK PROCESS 25.000000 0.000000 12.500000 0.000000 C=50 M=0 Y=25 K=0 CMYK PROCESS 50.000000 0.000000 25.000000 0.000000 C=75 M=0 Y=38 K=0 CMYK PROCESS 75.000000 0.000000 37.500000 0.000000 C=100 M=0 Y=50 K=0 CMYK PROCESS 100.000000 0.000000 50.000000 0.000000 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 C=25 M=13 Y=13 K=0 CMYK PROCESS 25.000000 12.500000 12.500000 0.000000 C=50 M=25 Y=25 K=0 CMYK PROCESS 50.000000 25.000000 25.000000 0.000000 C=75 M=38 Y=38 K=0 CMYK PROCESS 75.000000 37.500000 37.500000 0.000000 C=100 M=50 Y=50 K=0 CMYK PROCESS 100.000000 50.000000 50.000000 0.000000 C=25 M=25 Y=13 K=0 CMYK PROCESS 25.000000 25.000000 12.500000 0.000000 C=50 M=50 Y=25 K=0 CMYK PROCESS 50.000000 50.000000 25.000000 0.000000 C=75 M=75 Y=38 K=0 CMYK PROCESS 75.000000 75.000000 37.500000 0.000000 C=100 M=100 Y=50 K=0 CMYK PROCESS 100.000000 100.000000 50.000000 0.000000 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 C=13 M=25 Y=13 K=0 CMYK PROCESS 12.500000 25.000000 12.500000 0.000000 C=25 M=50 Y=25 K=0 CMYK PROCESS 25.000000 50.000000 25.000000 0.000000 C=38 M=75 Y=38 K=0 CMYK PROCESS 37.500000 75.000000 37.500000 0.000000 C=50 M=100 Y=50 K=0 CMYK PROCESS 50.000000 100.000000 50.000000 0.000000 C=13 M=25 Y=25 K=0 CMYK PROCESS 12.500000 25.000000 25.000000 0.000000 C=25 M=50 Y=50 K=0 CMYK PROCESS 25.000000 50.000000 50.000000 0.000000 C=38 M=75 Y=75 K=0 CMYK PROCESS 37.500000 75.000000 75.000000 0.000000 C=50 M=100 Y=100 K=0 CMYK PROCESS 50.000000 100.000000 100.000000 0.000000 C=0 M=0 Y=0 K=0 CMYK PROCESS 0.000000 0.000000 0.000000 0.000000 C=13 M=13 Y=25 K=0 CMYK PROCESS 12.500000 12.500000 25.000000 0.000000 C=25 M=25 Y=50 K=0 CMYK PROCESS 25.000000 25.000000 50.000000 0.000000 C=38 M=38 Y=75 K=0 CMYK PROCESS 37.500000 37.500000 75.000000 0.000000 C=50 M=50 Y=100 K=0 CMYK PROCESS 50.000000 50.000000 100.000000 0.000000 C=25 M=13 Y=25 K=0 CMYK PROCESS 25.000000 12.500000 25.000000 0.000000 C=50 M=25 Y=50 K=0 CMYK PROCESS 50.000000 25.000000 50.000000 0.000000 C=75 M=38 Y=75 K=0 CMYK PROCESS 75.000000 37.500000 75.000000 0.000000 C=100 M=50 Y=100 K=0 CMYK PROCESS 100.000000 50.000000 100.000000 0.000000 PANTONE 185 CV SPOT 100.000000 CMYK 0.000000 91.000000 76.000000 0.000000 3 sRGB IEC61966-2.1 1 720000/10000 720000/10000 2 1 130 130 W cHRMz%u0`:o_FIDATxyT՝?UUwW4pPQ\B(8ŘDcT@`FQQqW$*LL4 4Ni"i {wUwWW}_ z33sԡUn{cpp88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"88"86ݯ6ppA:Ā 4x)!#@%#F`gy٥]CO`Hp#ii7'<nf noia%yK_}w@Lna܄îGG"Cjva%B{'9$am-|xCx\ӿ(N1BA+=c OGNCp=0k) Wck%aR`x&?\`,PqbPn4xmfHY cY;@rD.y*fd4uhX{6'f])ٝ ‰Cxo 4K%?^1\n Pʷu/eÌ `>S ,b n ^_V4#V*!}ʋ_`΋/RTTH,cѧO|9ijlQ%iaD68(^E3*Džs^ Q\]ݿ"dLlQ< F o1|x1456jJymJKKI&T/YB>}Xho$ ?Hy-jjj(+/'b!Q_O]}\zi˥K&O"ʱJHh4p[:{KK8DbF ]v q<#OR|cv.XrD2lkp!p 0`!vap6p\:i \Bp^ |@ ~L U?l7/3 [b/;1j: B\MȞiMV"m*#rurPkP]]MAAe2JJJ3nl ?55TVVr󭓨b[{Nɔ~47F?Ln 6dĤӁ4쟨 8`7Z`bӓMEpߢB,ͭj&@|g>Nq|w|I8;DnB.,ׯg'+h4jc 0D"؉'P|=MČ1e%@iU,*[}8h V@i tv ֬.I]'1g w_ -["H=k.%UH?"D~L.}>X5W_#LRXXeUth+~TO+*US Uԋ$2aMD g$g#ߔy_AW_Q[M)5%BSvIP;Zd=37X,G=ztw(Q{-5PLk'yScMB(6%-6f1extPU&s^UVV4X}P`v"4k:~1D"c6PUU`^0I[Kį e{ k;X~R% Uy}Qv>-^YL~r 1`/ +,|Ïn LSǪ}3"yKc$aLr9+NRx*KdU)Vq%C/@<&~rGhO.H S]vxZ}eMl&n i H,#wHvR_s^Qᷚ|or 1X <"|򽠀N#):RDh)&ΓuxFmW&a#2ԡdg v=,CW7<2݆Ǟ؄57ӯ?IRT^{E*t2Pwشil<ϋFV6"5.p9iұc5**,-V`kxFTӟM4ZVn#jYPzL/EEeo3Axčz^0}i:wۗUVѿzyHW6dVzW^{!v9&e7UOߎP4A)$mṉZ 959~: Ndb:o4Dr[k,K27Kq6ǖ((\ mIbF֐jGc*+-ݧԡ;_  0^}D1B7[Wz1O6&hc]F6S;^niP'QƼLh []Ck]y9coO/[&=L&$I1R)$d׿F @&nnssQoR 9c4r^ycaxij0m W2cYVUHmbK^1W<>|u_|K++걃)Փ {AaDQ=8vP.? aʕ?lt3}2}[Sٓm?F[Wx%(gXg*>K_JbeZ}Yg%2"#s6H1ٖ,S k}*Aj{ ok&VJk`5|]FPM\1x$BpP`;->1mu6) %cz)cd>#+6BvzSfR'|, ЧGW1fy-aL<`ZJ{~ ajЧ蔔wVbN R/рޣ) 64hM;Հfe;d aI%AB4:&W|p?G5K%;ܺQ6jJ9RI9R+ZeRzYh}hp Y?,BxZl`')ڂS4[db֣9TZ~,$]{_'Fn›k7޶(mք^,AYHq K}Enc>hǓ1{2VN[(θB]"a͟K:8Vʸ4{em:DƐF|"N8g3¾D+EiZ{x{9 !s^=ϭ=cKekfnU&gJwP͖60wZj{G\dGvWf[~TՒV ؒ uh{)־:)x۔ܩc"Du=[S?Zf7cmYI$䞊EHGMY5TP=3[g7"jx:隡QP5g, ,r tY'G#_&<5~h4ʹP!3D'jtV9=v& 莇r_ԸC,T fr&H_hrN"89Wf8\JۅN?GPjIN]qƧ!*tdlyO;JB@~gMGZEvj3GM6u^Ƒ`!W. .;?ppwW2&bLIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-infinite_code.png000066400000000000000000000524321263353514300250010ustar00rootroot00000000000000PNG  IHDR iCCPICC ProfileH wTLz%D:wW5t`#$B "+( ZY "}Au],P {~ޜ3ݹsߝ@nd |0ϓ=$2 TYlGXX.$$Osl0d:@8ҷB(oĮR$0aI| '6 'Yp/ħ<&@Av2|N 2 aW6A8aӌL  l8`+QJZ7{d YfCFl@FrvZD r#5e|"eJ٬] SY;O5(yN CBl/s"cgaf?;'Bjy${607O](L'?=D$ԇ}"^|0Rꓔ˜R }vO KGIkayKk B.V "2)<9\S67eXYXZəY6}zm2GknGyΌœxh @Ѐ2:!gdBA$@ El;A@#8 vp U`` D!MH2 򁂠p(J!>$P TUAuP+t:]04>( `uX^;p  /,8.•p=|nW;B EGiP(/T(*֢QzT ՋBD}BcT4mvFltz-z ݈nCoѓo F cq01dJLӀ9żbt돍æbWc``[]v )Lp.P 'vnFq$& 314AGp"8UR~B'a0M']Tzb%xD"iII)R%i@6&{.}[ OqSD&yG S#NZM+Yr< c7d_XrkN MS-C3,?SWQ(*S80BEQu^T6u#u?uИTZ 06hXxZqәtz)(. 6/hYps%U%w%RR e4ʏU**UVURV-V=@ V3V W[Oڔ@}yt wTr3TMWrͳ F:ØRkiiMkhGion~CqI)֙ m}GsoI]@ɀiglȐbfeXoxk`fǨ65W0MLRL bLMfd3fasyvW u/ܾw7 [t-,,7XvZ2b[U[ݶXZ~mcbõksϖjlɶЮn^>~Ё#q)ONvN"N999t_dhmKː+5g!7-7[Sww{G!WBxuy||||j&6Nod3&d}@r`D`U aPg0#Q^?=2Cw>3 m1vq-{#+"F,|e%ꎖ^!;,f(vaثq*q)q%>Kv.]jher]^<}+X+%`b&|aYSĚI{ǝSΙp˸cI.IeI.;'xn שBͤǤf32NiLH0唵3kR(lȆewhx&6 qͩ2z\\~Uƫ6e5z5{uwV5kBkvYWnq=q},6mx1fcgzaA~?4 79ocʏ}7S|Ģ+?YT֤}v{aL,ldGrFyq+v^E%5TTٱ[w_xUw=[kj6|ssޖZڒ?|ί^bv_ξgKSJCIC=MMM6CK>bRJo-9<5׻Gvs8r\x 6mUd;}#cdNv֩ӊK9wvK\ǞݳBK}/={ҩNO^q~j5k'^?gvFGc37n}mwB ܍{op=ν_?y0QcOԞn{akO#>a#/(*4ǚƭOMN?_|ˢ?ye_]}-|=f[ټ z>?9|ylzܗʯF_;~{413#` YZpRo@QfNz@s:a^tI/ų3vwU@-rG;aHtdm5K&33o3tD<֖x?"88zFHǿ@: pHYs  iTXtXML:com.adobe.xmp 222 204 g.^!@IDATx} xWy'ݫ}eKw'N8vh):0SyxJe>mByfSeI CSYĉc;^Ȗ-kw{u%~9%KdKz;;ϘCcƯk}FFƂ\$25I\3 &e>6N%ER+HfD""1ɍfK,36,m3'}=rjMOxKteIL2! #' ˈ",KL̀ DaəIIvIMHdddg6ZE])ū̀`@Mo_^?69.ohItȫ"n$*Ց)aoΌJ4j`OD KcA4d3l!d 0JPr\&NK6p|u7ʺFh(re6xr󆛤(fXO@w wCr;"yUdW*K1z|S))|U{'A?7AQXiZ L!W&Dgi̐?ss{K \S`QIw }'WŪ$§SGCz5X| O 1ޅBqQ.fl!#2!9329+寮ĮHeA11po~.K i ,Z;!eO+@^92ބV$ERS6&1 LQ9+!pNUMA4.]Fғf KQ5 $J cW~W>qÿL3 =*O߯6R!]IǴd h`qn |iFq"$` İLʞw~I>#R]._S0ee@<ߺO<|`ؑ)뢥RU?=M/!{p;6}RLA#)!Ty%?`f\R@Ԅi'l~T'6sl dɓi:P( CZ2Q 4 =*-B`a^i=)tibFj؃Umq$ ᘘN 侶oœYRCCXo<#v2|JVG˰% Sa13,U О)-qv$M)0x ?4ru I]ZdY./3C#?G(&@8d2̹*ΐ#yLVD,o۰KA),iIMǞ¤rG/Dx4ƪiFo 5͇Sa7V1F"F enM 篭Lԯ-Bc`̟Ԉst,l`58TTMKX<7/b(C$)Þ08f91K6&\#eƂg4R?g3 -I- 29Mad:q$9gyr`$Lz;Ri]@AA\AOFZU [9h5 A>.O*!Dϐ-$`K4Zϥ&Z J;G>7Ůò8 4CH(hAU/0w3 +{d"/毗҂-'>+̥:Xȓy駴  [{z1tt>3`ym9{mߔjjT@ ;X1N 8,@M9C# !Ǡuf혠qn6E/CnM 3*),^(Z0ԴNi,(]Ph]H"cZ-a ׋:*ť`6u1[W"Hɳ٘\t<3ܫٜϊpc^説"ZccTq ?+ -W泤4+s| Y7yc>:IJ ?</i܃uh}vq>' t@j`~8V+ql5t#ܾVԛA:k|nBsJ7C&?x~,Ƥ>"&w9P#QBgRrIR2Eͥ#",zDtӧpB|<5s L 14&&)&$BgyavMp^SLT@,ty<1zZ~wR[l4HqNb Ρ'I$&+O(62\?"w!37&.D qBO6~f)_>Ƃ4:cBӐχ2;^mTWP-WFP*+ƃ/1sӧ5.z= @ϜtC&8;(%l:1@OxYJF^sg3=#{0iTQ^6 F 8oxDoK]F$*mrluZ0.ͨ9$a0di:=]FEñZcz<>FNMHbsJrEq\Q(K2TJs4Hrc5zErKd2q(EKƏ Nh1ӧS* 5b,'(x{O>,%rptlRQ6ت-3u4Td.y3`0ۑ Տ *trSR]"wmWUd}j|z~an~|[ (  j83r@gŁlJpdZ=&PY/MC'M4j x.^$Ǐ$}^L& _tc)3B gY,8u?.!Y^}5="'ߋwT])J#qk{~]>Ӵsrr˫쓣GKQQ1f%E qp)B:=%< S[F G'cS٦mf)2yW+ec` i<6L_ 0:Wܠpi\PK@h!$p|Jj.rĹ4 ߂1AvݰK7SpDhOjftZ2SRҟ/cSώJMƱB[,|v VJ_:.wrsYe҅4>26<@CZ1^ IMťKVVE޵ٽjTF*,y6cAZ9EQꪫA$??_7da>:w&B>zɘePly%![Mƪ.Ҝ7Lr|SD>i*NUxYa#}j Z&,皏ޟ}y&4\';Hci}Z/dDس5fuu߰AZ[OK&6 ];R\%L7gD kp 8}09FU՜Lҍ{L' =|ܪ:_"XGW@} M/vl@0G:*s~QX[Y'U%7I %;<Z`uOrK/hrDm ㌒tE uʝΆ&H 15)6v̓1,xgH8&@my[eӀ?֢a /@Pߡ1nЖ[R~EW{Q-@DQpHDj$77 N$ #ej۵H2L}Tˠ h,R"a:xI@:AvDˁC`Rs}E}Y$p͡K ]lfPSD OUU{஛`6W~ae+~#<ryR\\$`;AkZ+6ё.F[OM/_-,dN$ ̷+? arw[Z7_* .0@4 >`y-jwʿzx 8똣jJIJ۞ԗjwp|fLJčEeOA b FqFAQA_< E5D'ONTsgx72@r7Z >™S, 4X{! yp5>)=J;d/&h[Oi_!k @/WhI$ӭH.)mO>٠, t Yÿ(u=5@`Ad$~ܼW~Jd}]لmU] sPO)42E+ц!^j\UEҐ_#_ 󊛤BhH)@+ Fށ4s[C :yc1ك.Xi |v>yS<,r`#bn`5^t> ƩOʶl""_FO˝;wvk= z -77 Fc)n9Qܱ~B^꿷st̟KR2;wL~J_[6OoZC}e5N a噏P\4P R#/̑9A%}l7~u(۪)?rd$ %\ܖVy*X? zL7t)]<1&6o K Ke@'Nmu60 کbְab mHC! ءJh6(?W#WJW%euww}=ֲdMv?pmveN`}RNgo^i.6^Ԗ~FKp*UJJ0Zk#J2A"s5} s;>.r3h9kY xS=9,b~ð;䠶q۱v qzZmasM|wTl.7lډ!޶6/<;FV,5*QŋC+PM=vrLㅤ#UXNJtZ"&:eW:m1K=4l/А4778J>i@MY-D\J$$O~i'`e+Z3;=!?+l3 pnxqoN g§2C7zp 4MmUK?)2yx(lo::;U#pm`ÂP4zc@ O]k ev-ruÕZAdSK6X-oUV*2*j In3FZ s?)tÍTw<%!wk86EU7\C]'NdSx"͐{h`qa)AJᡖ<ټ~N@v 2<Ǚ@`PP|T5n#\ ?Aܪk #[Ċj5޴ APN}6Ρ)pҢ^ȤAPC}ѱ1b\{A&q@8w1/  0ac }gP`\j%p|E*PV36>T[~/ `\7_LNmmm>Lgin 1ηmUָ0Sq1m[&sFp'&sg5b/_m),ƨ432O&'=rkv]Jl.AW8uꔞVD%]w !1$Qh1hJoW, HLxs׫xt*EFVZـ`i < 4501R+TOvwsNah%d. |mR{&IHz 5kHYY T0TӸ[61"SR7&0?0E.5kve(|J;(\~O ӫl3'p`||d!lu&^iApillcZfܳEY@=GYZϝ[l@{_KpOy0J[mx[xʹ^a|1ڀBAAao Ü J%!pQ&3p۽H1yi. |n;-79R_"[fZ՞v,a^ߋ,]au<*u 7k ~v3=a6| kq/JF~iRg!ov7q!6'9K8&ϗ:H#AI~NvlX -9/6GoVy,r4v{篂U4@Pͧ 9Azy|#e/P.8,rʛPRRYyz"E!F|Rz(.yWY[: ܴAXb;p Y@ L8 H[Na0x7i`ph@2s5R_h,& |ý抁#Зp @3!+aq6]kT| , ft4(zG;;}N|r9_6˩'5rsoA B|sŁ kE36T2h<#ŗD=#e\}445r;gJUxvp{:srf5D8:-Wڻ[dh $p"rj.ϡ\g.wXUq\ D B}E၏8l93+gV+[<Ѣu!#ZN ̟CD9N/j|xt$sn,AX*4ZlTfq.CGlD^`)cp`/{+/ bjoy 7\QBZmi3ϣ!B)r2{<[/lyCL*/34x +na&-nV|.#{&w4r `)LNVxdKel^M7.|*0/rf0^fbw8p! fFq'>dkPo/5BNNX2u%̂@[WoGWrs"[8BTc86k! 0MfaI4/=]sfţ뗓{w&^fAP=m0Yl+C aQW+xF~/cG. 0,gcQ3zk%}fRhDGU\9'VHnoN):%/WXQ>H>X5 Ąg#!lx{0_XW#ϟ#z#/(txтՔ7'׏6?~k1 > Sbjy j9`mV~;AUq֚w1 RF @! pq@S,{OPrЏv\j6oDx锅l'o 63 /97] XsZKVAyhjl zL @{C' pH'xhʥ|o\#w)xwGϵ OؠlS+? >OvСCˮʎ9TE$AzEBԌ4#7j$=U3ߓ#=-Z?o3gf\5-UJ5N1BWM Gt*;x ;;G\ÇLsfQ@BLxa7ވIgrDKX/™;ǁ 7᳇a`s2DL1 z:?_0 2f]( .<=BapKPZZ:KH T> w\BEǢVua!Kɨ}Ei D;b2|PC9w?t+g#S"bHMxh#If/;nt, |.7xO 7X_,E95:2e&O2wtt{޸5j ,zF_\&H!4 !Wb܍&/\N`\mWxMOiW o1|Ed9$Ѡe/qeT|S:BU2%#@-Z oKwvuʚF GuXY2`6)H`;*șGR z\T\i9T 3CtLK1Wَ7$Ef u@!XD_A:+0/|ڌ#(,h&0mfeǤ |ڼd !h bmad pHFH]䉺ޅ!C=DZtQgl|&Z({ w/QVad:͋Ya76lscMUJ56A4UP [8_$yQiX(9w 8Lu,%x25:$$j# iAJM|(r)qu v4DA ǿlF+m(.%q~4-{^ZBm?PM 8OWȓk{ Ky :2Z1.tC'5@̀a4)((|hiOB 8+SHF 8Ր8˳9(پ#ݶ2ߍ-Zk пj'FMw)Q+{i56L! @n:GN΁Z|WUXF;Rp@ R¡/?3[dLu@3=HE-C^t3Ћn ̯Ä&4$7goUYK>`)Ӓ#x6,P/ލ fn)UST > ~hP !H@ÛQ"&RV[.)ۺX0782,ZKG0^jj? ?G}X`jVa&\0yA01 F*hTR^ꅆc[:|>g*|f\a8tpۙй\aCJlد&䵋)CWdm]4e%xr]0@0㙕88<4(ayW9SInCsJ݄Om:S  bz#m 3g˗%D-fA닲L:|l$G /Y^tKr:R+pi}qI)J e|sNsvg`W<-9'ذ !*҅*LF@rKFe 7, fA P_Nvxq2;8um}$9a#%igY^K8P fĶjG4`+1- i|NځZ6D ZH<,h&))*e(|!uY2e i&VOvȆia*p 0y7g= 5+v bӹW]Ђ>X kӲOw6K2DV/j/ Gs.LOJ~A>vO >bzz J@`SU{~Loa(L<*+k[@(4mY,P7;:pPj!a5=P>9ئ{x 3.  PxOKU|* kesY6_*ŸQS`g։zy'^%u,(*|C~)^wu&`8N8x s/g$yVBy&xy*^`YV0T0:==Y3СA ((C0W^z,0< esrz<eRɖZɾ@>ye<,ZsKz'ejnh顄WJd28<p`[ӠpV& z]U@zލS2 d[_-;\JV, 0lV_>=R7S&Әš 1Apfad+#I8s?g]l5kAF>1 HY[|jms8^s ʶ:)/;JduaWA+.h۵o|3r=JO>D A9c_C^@بj πS1 exu@Pax%B'd|3"0,DWZ*i~c/Iؐ|c&A ;ӂaсhHF~HT fn^ 4p+.V$NHɞMoI2I7n;gLs ( 7W& ʥ 0|Cau`I(!]-~W ̞eXͥsoi|)YW`J23>T;'0ơ@]\=iH?0=%(?,Ψ|C vFGx:iYdxI' ِU.YXI\9%|7 ((Ck͘!t񁭩,I:55"źͬ(X뱽f%OOQɆèA?N?,gi,diIC?'}')7b~=ؾ 71+uOW~ո(A60鴖kIP_ IhĪn3_fn>8IKG~hEF~ i+&(,끡ene:mI5V>3t8{RɽWV0Uk M&51(8sm]23WQgK@LfC@x*ƣ1qJgn0WkMx]~Fp8xFr$NqV'V81|BӝRSl's\4 \@ 0o+rϻ9)|Ы \tm*Bv~Α2)$´6`(8HA^HC&fFZҥmj HAz˱hWwW/1SyÒ9 f`!hy/.W  8k)x<]Odd~8nmoqem6Vp<䖙˓qJgy,hkMP~A?SV 18/7PzF_ttLɢ#63Q-9t Yۊ`i9$,]`6͍`K{Zx>D:4%>+1a,reUa!@m:M070%ZO{=ݳ@Xx5e|"Hk/w~)_TlK/f,Țh _ m*T^/7}H|oUVb&]7b!ꠇzªHÞXĵELui5kzЁtƖČgi4/ tYEґ̴c4?(n*Eô 7 BC%v~Wu7xZ2&C ev3 ]#/OXNƫ\MPPh(߄e `4|e+NhOϲ56ʥ6tgē :^\5/ogXP g,ǩ\>9yxڸ+#xwxdRv,HC Az2Zy?y{MIDATkO.S@ %9*QHcTWm~Kjh:iW 17di#McM/HgA}i>GA[nH婶[VM4g[Nk7n^M`%in%乀pILپ @C\[ [V]+_;<ԽJ4 b*1Yq&"-ЩzbOj; A8tP2N_&_i4JpisLсoȧk? YW1frsY#|7۞Ӊ^< f%8MAPI7d^N,CY"SX "[nFDOhNH^.Nᔽ̂i@`5e.1@O{J ](H.޸l@C0 'SdMp<-+M$R@N (OM`>=3R7~GJF@hn[ud.M0rq-٣ܽ 7"eřyay<|<ԃe ޿pN&| ' qJ$Lխ~Kh ;j9*ax&RT8ӯQq,5ւ HJKܳOWީ+W]K1=|cԤ<}%Y9<9DF\)p^F ">TBi Wn jh8JZM@!^NgpAސ+ri(ג~-?>,{'8RÑ#Xv&!R.8W%>'^:!.2a{gq!`׳b*lcY9  Q.,n 4;zc[ 7ci,Eyjs1<-k_.GUely ɄC8NV0ItL @cd;-DZU 7?w@,#Tʕ1~<>)-#mIOtKsS'{d7$sp,_48=}n5#ngYV-1);5d^s\QGpt`t>ᆺ t!7iy2Q޴5+#|j\ҍ̾Ā o咽Pmyp3 *w+֙2On\%h8[.-BpP04:68q<Ms^*f hLI0o<.'x`%C o$FBˇ=4{78krxB]RXfrd?_09,IENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-ipushpull.png000066400000000000000000000235511263353514300242270ustar00rootroot00000000000000PNG  IHDRa4 pHYs.#.#x?v OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_FIDATxwtי?o.%M;116.qMl~MlpIlD1؀qA2* Sߙw&-$<f$=4g}{^)_ww&I| Y 0s3j /庡 Bp>z$AEE"(ퟶa}wwl~`?XaRظb4K}y9M7Aks@]g(9k q UY#Ơ+#"^"K\]UC v} P R C@X>&Ku.?˜s*I(+eOY,!K,=+!IsC UY3VTKZY qyA$ D` D`kCIk[XY>(V qDvCr|_ &M$ `GqVUaz%ʬ$ %J/`'agI.bGkek @ =F/bÉa"Wɑ ȆC -'>SLWGO MW^OMCⅼQH佒::&YfJ^'M \Syrֽu'%?!֪aT y`$l*u[ Gxqąk8( ;QH=%5B^a -i\7,IĞ:: i1F[Ubé{Q Xm~ ڜffȎ",A&=ܻ] Az&Nj$ޝ9=LL58 ٙ ,q٩4C_@eÒF$Gd n!vbqkͩ33+Bj #oq`tzj[YEn1;1i1.uR  ?7]ӾF$G继NsET8\p $^;( vw`UJ.nƆU Ӿ{ f Idgyl- &UdU״ph&5uO2##m54h +14 vqذjQ;jdJoJF|G-*>Inq~;IR5C0tM̫wL!ҵ7uTJ4[0n儛>)cS-Q)Ѽu4'E4] v{+w{cjnj4[NcppܞK ܢr"[&Fe4FFkCreON᭵HoO/+ga~N4 !ルHᴕ=61 x8uCK0;+5Z/1oVe*:!$F#-ONۚ1~{_,^;*`;&--LgDrnR#Q"*%-\>>,I\;Sh %by3x1( Nh]PV k X*7U{z<^>- r~),ҥ|pM@yzEU6h\.oinM7C%͂/Ejxu/ 3 k?+??uSH>̊sOf币BJy~adYj_5T70hsNSHsH9z "]__PCѱ ϭʱbb~Y=vHL'.< *=EX4}5/wȇK\gVM\1'[q=8&U{.Aâ0 [T0}`vV0zoaݭsmn/1MvΏ*Kߟ! nH o-GȻǰh n$v)B4v>2,_y}ͥ;3ep|_aoG{)<T!W9=^W\IO .̄޼g~Gg"[1g8VM5b`ws ve'aXJ I _˿0pt?Y6^ mnV[M_ok]:Qy~?YEU#mv2y0nwya?[_ctqp~|Եr>F{Ü6Iҹl)O.&FulB)ke{9RQOEEDi|, g7Xcj{ \_<.)OT59z0&,r_N Ýfɨ8g$KׇW7pE+,*")<'YMUS4;=+2t5 u [&E8[?0\P ÚiCxBY5Mn]} jby>$\=YUX]/NIJOL KCXF %fV>G+1;'WO+ٽ\jW g8:/oVLe5s\C;]nw%W}wMٽ4X5+/W=x}.Kryt$!eښ]|~pэgvzD563F*_ʽ>b4Á{}ꖉB8X^{(iЍu^M*/͵bx-CU媼W>)O~| ;LH{Y5fD!%&g cMUzū_AO ֽ3ߙɚbc4;-]H=D?{EQ'p:&U;Xy]nsyNf㺹L,hl>olҺyOԽXͼt#έUf49XNcb\֣XL_Dk6=ãfx+__ă?ĭtN7DZEBpy|jf;07!>6+!W ByKg`|$\ 11Nq_;=0cX >5;]IwzcL}`w1='7@mOdۑrp?XJFb tby=v+B@0:=-0GI}↉Y݅i۹6=G~I aZO`3j |w!)1b<YkhtG&ebo#0"}p;s7atzX3g8O|gpOuqfAB?~y?lRW7{(Z;= eot -ޗ:X>m(߻HogwiIfS&Z|xjl!cy~ZHz˃@o͊iCy Nuw}M*g\n/wwgޓX,.zGL?VL`{ qyؚXMjЭ"yڱ{M혚qp d#"K>;$ӥWqbT9[J<_̦ܳhtlcY~ I=L̑q'ܬD>җCDU}+m,78ӻqqysx@[\+o FcOJrt[ J,+GK)5s̀xv~wۍa~ #H('*p^$@13>#0=\k\2*UU8ZZi[37Ll?G #˒afpA0jeu/I;Kukg!!ɱl?Zӭwp$Beo?g|_}BJ۸aBZ@NjyK=JBRUU8zR[M=~KݔJ:<*URQ‚tL2aڏpwvx#)mq g/W[>lRU( =F.7tpT%'X:.&9il+8Å6gɚPPREY] x}٬!45nI(&gwV%*)lC ׌;>3 0[LA)  O (;36e5 aư=/^24JAQ-\3+n=w}",M |RRD \$ suV4ǂJ*Z~տ{>bm_fS܆i*eU |RR͒qDY/L c~ v;KMC Z'KJkፏOGXC YWW#-6d9iqB8]sՏa.9=NY-'l͜s\Vr,[~)Chs]E"S _ 5>VI+j䟮g_R5M?15g"fMDE-'jP>3 YB+~&:'03/&N +a]ɪ"bL$;_0k*MȢŕȪG] UUOPIIT7q~焘>4E_̰A V3EY2>v>5Ο>9EbLRpl!˲C{W Exl;XLbLHYX86ޣge I"Opu!^C%G11;MH9Gg1||x,`ǻPY#Ӆnaǡ6E:'( CvFQf aJN,l?XKuAb$!2-F:%giQ8T[̽sbɦCg~0=\J]k&f a\V*Cx)\]lbB0[$IB>=^N}%Ā0rPY)ؚ_ծd]VٳXv*ɉrJ/tP!{ G'163JhnsF_ge:d* )(gApz2LCFށS4:Kѽ5{ 7k)IX9Y9sFg3b#76NSek =E2 . d)UL*HNa3;P 4+J J0B)TJ T1VOʾg8W݀stv(j挎nJ2"Ը(! 8c$VSR!` =CA?*ܗ@P8_Ķ"fBӆsgCY\- } DQ3 N7 Ml/bʈt$Ii#8qFJM 5P $Şo!(0 )44J#KnjX6;2[#G?/GTBd%8H q_!(/` CiCUZN)UY:eg55=³ ݉$ABA 0H  p AI@PX:yv'ARnpA>w ّ$ Enx 8؞*( 8 lG87A .p߯̌adɠ^ks<$GhR +Os/,1[MW64t|} m5nIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-isl.png000066400000000000000000000454031263353514300227710ustar00rootroot00000000000000PNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-:8iTXtXML:com.adobe.xmp Adobe Photoshop CC 2014 (Macintosh) 2014-08-14T13:47:53-04:00 2014-08-14T13:47:53-04:00 2014-08-14T13:47:53-04:00 xmp.iid:d993d282-a6cb-472d-8eee-682127b70d3a adobe:docid:photoshop:8182e3b1-6469-1177-a0e1-a52152f65186 xmp.did:7336fb99-557a-4cef-ba89-41d0a268f0ba created xmp.iid:7336fb99-557a-4cef-ba89-41d0a268f0ba 2014-08-14T13:47:53-04:00 Adobe Photoshop CC 2014 (Macintosh) saved xmp.iid:d993d282-a6cb-472d-8eee-682127b70d3a 2014-08-14T13:47:53-04:00 Adobe Photoshop CC 2014 (Macintosh) / image/png 3 sRGB IEC61966-2.1 1 720000/10000 720000/10000 2 1 130 130 @Y cHRMz%u0`:o_FIDATxkPTU< D顩+(̰ 4I&63K&'gjufe5icTcQ51i/d=.G8yܻ#:A20d C20d C20d C20d C20d C20d C20d C20aY":gМ Slz H$RDނ\l%hFѹ܆T pO2εLلMd@br.Atڻ\ S7PDˁ_z?4eP%{JOÌўlyt(!aџHS;,&Vzac2`xbb!X<,' ҄5^Ww81{+P2aFkbpwV["MMElŶc:9D48sʃ^Wt]x}| Sjp'>55]n߁bĪtAi*%Uİ8&q=X\f`@iX?@F_-N }e:gPOI%V`i)|BA DJi#oo%1RŚͳTm5XNo8K+M튊NBm,ڧ-u輅LUb]%dKb YcòT~ժ'l" EGJ^LjtjJtBv.Xw2v%5oX2xb!.kճAdPd-ڃF4[f r)u9`fax!D>eL8| N[7*+-?fg} xS`%M'~$$~%X=..M/HPbB <;.{H\Dm"t)8EF $.ڽ5vڣ~&S?F^$.͵=qi ')IyH9Eg3=oNhTgbXrov5'U9,?Tv's(aT)֠f$C5,`d|Ouj9GA0R*kI9K 7Wt,?6 #N 0IubZl8 #M*B+Q-e 5HT6OEsCD;sCELYɃ=`$<%6 ai֚ yzG2M!:nWӸS(-8/+5_΂_d. XU Mk<1ۘ ?1k_ۚS@6XT@Uxi9Űj,>o 8uDOނ[Cb: jF9|Xsd3ǹ'wD3yA<8\|.Ac;s3<,>s XwDQ"׺p1&ˤg[O̻ϏZYPZPY| |6  $r(~Wa@X+* qi6ÀI) OppGSIyy"B΀,r 8"XHӨ{+gYr1>i9n&cMH2-AxM =pA*0I t Od.Lc: 8ܽlWI]:6h.$7 64-AxQ#gsg*jY4%R^m4[7NP!覒ΚMާ0^O@¨2w,[`.G0˩&ǩADUp̤x,SO LmX򍪛/*Ap"4sMO^jHZj¡_:f~Qs\-DZ/#n6]kL%e.V6jx!78<t /̠I"$iozpDQ9$ʪ!#QtcuHB[^pלt*EH} j$OS!P$O3 GoPјm?] c ݙPk?ưkA&?%@rmcpY>k"Gdȕ mA~grx\6xG~At)Nʠ%^2.Y?` `7$kw{0X *GYN {̰ o`йg$@Q7l$mOӷ T!UX@m9E#J>1 uCR(hʊA[n;yPI3^KK A$ 0pu籼~t< T"X@#]b[zjPA3ܪB{l`b>a #Txh/8ۺ U8zdO1V3[Q:zCC`  V53uJUg wU8V4 D+CƢ}ToMUz; B9P4Л0dFsTH5X~xNڗ "Bvmy\^?nO)6?@'ZoP~~ <a؊n2d'leB@n!6ǶFnA<_ic!Ȗճka4tŷg@ky^NP b룆&]z 竎W\-j)cp=7 /҃#<MKSt1 u@hu(5ķ^X5t+DJl(t='żKz\E34@(7-?ȯ/bA4~mTJA(ʾh?l* ֞яpzFqix<.ȇAckUf= d-oA:DɨlIi&Ƿ2''%*Oi= {cA07&]d޳Ae㝠st#O|X[_&tYtC$=YF$:gK#ɆӸ 3 |!o/ {쪀)Ү>o,'*c"x)zE5 >imioՃS~|6>|ƻǧ5ҔXM uGc6&TJ* A58sPz9a FC)U?k]_bFn|5%\PoJ~V[Rp+`zȴ4ץ(1&Aأ̮Xݰ* 1xGWԶ1\,v!d{ɼqt♽pR듲|!HRzSg(]5 sP%o,HCi ;&j2 DYː6RxSG)uE@"NmwKy܂Cpw;D]eAaG>q[)s6y!*Ӭ7ܓrnoW1)\A%F@255&@uǠd>}c&05fI}a C즔*[Q7 K$2ɨ4@ErvSJm[}}xd$Id*cYhhA>1Ă@~8F1A娚1 wSb<wIm{T R|D8+"ZG9f%惰lZΖda:p髕6շw X/nRWUoa!x'[;9츻>fAb(Vr\WکD ,+u Ov9{'AxR~D9z/JI4D5鰌z>. `?C.+ d5g0Hgqrz`-w};K=XQ,~ T=r-AΔ=$ FMN :001bv mV@.gybTZ%2'* v=cIeP݈ _e10|șiHaFn-7+`s~3ȫaտ, |ԎYLٶ\vL^( 7q Kr@P x6\8>A.m;+ iaEv̈ Ƃ76;J3v)~-).kNWf)oLDsqHjï OtJG΅-?f:*ٻ,긟>ᢁDSC,XZ+TgźA o }Zugc_z>?􃰀bpcߴ*+誙 G lGFWf0h2 9,ˎlLoZĖhֲcH ό`Ott^LMs L3%7O۫?1ݷ"w;SiMk>1wmߘ]&oXYVfxOY 4_ddmWL}ELy.oue&ܣ\p~w_L jyɠ!}e#gY–Mo1Sl,rtߘb-W>y4Em_]LF.4˶i>~Od;6}_Vd~67}+bw6Mo._4hD9GmFl.OŔMwڇqDT?&9lL_x>nN)IENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-makespace.png000066400000000000000000000203441263353514300241300ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<hiTXtXML:com.adobe.xmp VⱾIDATx]|T?[S6 -!C/QM^CbyO)bAP"<(H/N(B%Ԅ@ResKHۖw~ĽΜϙ3gL&xCrOxHYZw2 9<:|9[*‘nQ.*|S.B]KF~9 [2Z䯐o-?XM+q *e >s[.c ]Vt4hyB o.b F  )70o9 G ǐBؙ^??DkPW}";"r*u6:=@ 5B^ 9‰ts k> H*L0R̷5dCUc"\Y_ȟ yPyr$r} kP z!E,A8]'ǽC)S;l614+FeL0>mEnjKZFSds.[,C. ޡw-Q2Q%C2j򰲃}+?|O_ F4xTk&vX 1U!IMFPdLtX_օt2j#M&Ӹjs˳\n _L>1%'}`՝c!LзS0+|85x@j[bb+d4L ;LnO>؄ߍm>Y8}Z>6dNi{(񰊵!L|G@`!jWQs A31,DiQ6AyQ6`vWr Zѣ `wΈ?C U`^!+}4hj~gEMyP^'m= ȏ~U@+x gzawx A8GJ8CyP^'M2,vN3Ϻ5HdV0SQ9h vDLjUK}\ua@CoDyR$B2lvPh* U0Z}IP<`uY(:tXh3dA,6Go;Vo(B2l$#jOGq1+9'շ4H} 9xOM6Iy=E@ ~jcMb`ΑqSHd0BxFV瑉 &Xqw~J6Qz~7e0ĪKZAdXx=4$: K ?^Y5ȒyjpS9| Tbرе[(f-rrQ;Pmg&h<_G:N];{v+-<t nomkX?bxn+,=fΠz#9¤}aLe: \bA[>SraB~3h7q!C=hm{O^ M+Ԅi/І]Afv^=O%euX!uFRf +Pf^nop.&@iӔ9]^lWYK+:uS T+zkj0%Z|(䱔c]f fAևA";πkNe }Ki~'d& +2)QO>oUNsqxt<7NRؾ9z>MUgK *Նa:A%.]u;@e{/;~ǼIEn-.%6}N2]4Q-tm,pzEX{Fc|W.U0nGb0V_aU2*]4Xssޙ@?9jsQCv-WxڷD:էρnT{8]vtI߫S)YepD7Fh)GIxA -+̰!лnD`:8y xLQcH`pv9JD}ݍkP;QY<艖=]fåЩ8m7NLnIlC@ 9?  7]5[A@#mT.05l0kRX|j=E*uSonE;EeD`[z~+lM<7/c"\Xya;|2Q?â1ٜe eDː /"0_uGfn}O^4(-JҦ<M#AYᡶE -aި;DDK/ qX}CR.Y|yȽu#Hi1`2PB麬%f$ jL,'lH< {n 3ߩDH:.ցNrQx .43RG ung޳B42qn64ˉktc/]N=w]'Hf:~]Zk;\.CJu/x7yMM`ܶ|1~_F:AevPth!#>-ʺ=*LAgўƧiO޿ y B8Ͽ$A׍6A&ǧ)6ڿ2ew1`E8{ 1;]9 :xr Wq'ZFf38EF_LLZ1APOx!LK¦Gli(Lr(E9IR#ѐ'^Sii*N;b94T f_PW7#OE~=y瑃i5<+HSAj!kxbJ&;^бAtD< ] prs!wAWr\ggP'=jeJts R7m`\0-O#LDzBNv tS-"vs. Y+!wy:2,nDDա<| #k57<\%_d(ҢRs(Q. t2JF ؎WHc?A^S֯ٳh,K v.5å% A͑;#[6."`a [5xc#xy!<<@ryrCi۶11BpxW)Pk\HqF.;H')EJC>òIZAϞ=؁۷o_h(@c   Aϐ߶R鄋i9`(a-wQ@J)= jLJ"Oiqg=Zom0@3FLpíVi*DnRyΥ74 0Xȭ y&2]J۴ |QnP` R0|ҾoD"/X> R!p2@`^D9; E\844NTt8AWi\8x\Ywn&a(`$D}#oG!M5p"AߋeþOFao{7}0Ay/5)vz/ ﱍ.yU?ƧWѲNaI<1ql^#ӲAC~q!e҉욍 ewva8ӧN{e52ȮZʝ)~m%X=VrJV#0/Қ^0q : [b=+gԘ!aM24x ۸qp>8_lۑD2Zxvd@߇grY\Ee̶F~lֹey,rGxv1S.C,aK\ӹA u~=<grP@'<-g-r _<qƬ3fl Ncwg2 ljDIiEDtݺh񹺨D?rüF#?|1MH:?EgaLfseM@;ͳ\rd761rޛgч}vFhZv?%Wj@x1[twH BpaM<ͫ$QOsCub t2PVp$=z$5QPOsy2Uq/9gJﲱW2jpq;Zh5{:<|';;[Xg2ui :NXqQTRW7A -v|5չlpP*] PR>zy!` IENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-nephila.png000066400000000000000000000203371263353514300236210ustar00rootroot00000000000000PNG  IHDR pHYs.#.#x?v OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_F IDATxytUս?gCnnD& BOVVZVZ}euUkՊCJ%!dtss{@&ߵ`-.;ݿ> !q&^F)Rg4*z8V$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$(}pLkd: N\ú0(ʰ#SWy "kkȠ5dC$,As{T̿]0%om>Mh 1iB]*󹵐]D rҒ3iIvv #Dz'xMʡ8/5F֩)\zvk˄ï\~޾n/OL;ɡN|]Kc3({n/}<§uGP7,e1:s2w\f^6%|1ZgiQ, Q`Ou kWل.R7cұ@톐sR)|V֊<-Bа٠y3o_[3}fHv[ӂ&?,;n'c{D!Ue.g/WcxE)a`k|}$R,drNj%mdsE",)2-_4o=De0,IE(gъGeQŠ]Xݸ4ɝHG@9,a@q((!7 pal ^z'^dw,hY1/o?B͞sճ%ZI/l9ĊM!e)4@Xbfƒ!֗6@Ȁ,-!œsxrN+F4XGË_cV^n 9iSֵb V163dWd ӓX8if4l_խL/Y^_*F 0?7dGe#rRs9^7OaKe#-PYYR%Kx|}oeg+5l]UeX¦NAzw/tJD”BB|uV玍uBv?d-.Ջv~v?ǂ$92 (0ޗLIAǬ:硷cXaql^29zޚ*[yj]m:9EʓWe6-%dnx|nǮgޫ[.+ m=yg[׳roERx٤&9qFۥxf>T6odN̎6掿meC!pM ӂ%,5)V5kxbn4x$I5{ygW%O\1exl׷AZ&ܴ* o9jY0!gNN $:/]q equ{UaKy [KYC%G,0߼`2w2!7,Σll|N REgf?[BMKii8# 䤸k#M~f5hc*(Jɘt2.^a>5d&6Tsdf"G4T9cYn 1,?WSZVINN\;.{%:1]_!ɪ85[`Q4ƸQ)1ΥS؆@AS MU)Z8 yYpT'Ot&Ӳ6W껖 ٛғbm—f_\3]JLW´).ݾAgk[+xmSyt+MO%rYVmϭNf}ZSpAa^ =o"~!V%n^єUS[:dSg'wztpy%9m Ե*EWaLdNKЈMll+yj[M_R^Ok{nf>IժM7*>F[ ESsC6m,iT]J#`TS}F{uUz ᘵSSs]9UpjE%m*g"4 mDXkm -j^ZIu}c85Ɂ!pϯԫTjaaASnaƖ&23/S#lZ~tU!:!X&?m-gCE-7* 7C9iO/#dX=@nGRfXN0Z_ >@Cum$N|sЗ)wG08"9h, ).zc෗EUdL >O C㱕<_7i^y[^HYU=q׌gQAdlF46,OO4)5z=G甲[04h4( ȵd> 5:84pLr&Nˣ!`oXs%o_oǘ4=5\z;QuŐٰDlL B68_2ő-!O먮iA;ԃ2p SS5}qSCS6[u-nV k$T"19ֵ!?/sǥ̹5EҪfƉ8;72l'o_m BpwJ})85cN4; 7òOQ" yӁƊ:j[B.wAkL!^ HAé͉ ]ee$]г9Ca}h_aA LurȄEn|$c*?wE*$BG,KW90+hǞ+ ri,%83dZCПnsxcX[WhXB멋9>)ω6ET*y4dBV?I핍8 ;>wܨBm[͉lB0utI~fln4eL@PKx'FfEQSB}۩mK2\QŹ=^S;{cM}tv>bV}_ya\no9E:y齺>>(?!sF :f%I|T&!{tbvt_3a'KWysIu;Ns/.{2.'-ら8) .߶>Ɏ[gaնGQ;-yLv} i.dOUstla R|}ظ-^fflGD|Ӱ1&MX>U?8l,c\'da2olK&d.p=ˆFu.%qDxCYǚhXSaV~2tk7a4;Tan\2%!5k7ĮayqDà=+K/{0w_2DphޙC3R\IRR]:unGLRӱv}t&ھpD2'ŞBF@a"݆ q*3ŷLarKi01wގT/6>7:XȌ!!<ݘDv>%)Td1Q%U 2ɑI*%Gcr;bw^ʶ쪊=-dqho==>9nSz)vlU1gwTUur o.g]ymP]>R?ǟyIe&t:%LQɷ%#l mGmkۘҳIN+z!$.U%GP@GlkL }9̻/&/H9F(1HJDH䁻$D #Ob{n%h C*IA_&w겉!B{"!} I I I I I I I I I I I I I I I I I I I I I I Iӆ3Rg488qIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-openeye.png000066400000000000000000000335131263353514300236450ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp openeye logo very large RM2IDATx}|TU3}&zM:*bl(u,Xwu-XWEP"]J]jH3i3}νBHBKfǙLBr=ypzӏ0{<p0E }a'&N>/RL^2ef3S9S} t;f׋իW#77&E%o#/7/.2{*(}wxdLKFd)TСC5 mbf5*"##Q"Pu9Lق>ڲGEEiBд)bcb06]nR,,,T$#399̬b+^~Uw꿶\@!/NNqE'roE˖ֵ+z^w耤$+p\޽{uV[k׬M:ˏPd sssSe^-Zy6>p ?\ <;vTwgV03>zŢE…HMMu$9I:E2NG⏖~(c2t4IEŊ9ǂ1XpҊsbN4P+#Cw9r,~V"1tjر_ &Ok֬i.ȝN8O2FO2/0*e0|!m۶`Ŋ0Jk4"~(H.ߖ4j4ޗ{Fʕ8q" x9lf5 }= \}5E[_eX>&34]])2oX,?vV#AiӰxb1>#T3I\y %{}o1d>}2o޻F'M/N] OJL"̙sJx~W`[e2ߠ~Z|D6<<O?󌘛 1`L: :t-&2"Li7h +Fj.Lޛ .W1kyY,H`cK  $}GuGTя0Fn}yٳ'&M>}4aƬT޸~Ğ\P.E-}#iAIY #Ш"wq2.Hu-  ^Qhs5}]DGiXͰMjdF9-k3;=]$b}P(upN;q25a||ũ= >|Z@>"v8lMF7aֽxuJ*~}/2Fqa˃":; Λ/j"Z x)6ѷ_/b@~B%;L=v3o}u,t&DH3kR]BQ̃%QT Yƛo/' ;Mfb(!Vxwyyy#|0 tx'</td]s3 B je#fRR؟(+-A^!#C^2>}U.i+ 8ћŜ#WL ^8S!uT$$$ AM20-[('LFXXX̏ ❩j*R]tonJ?πp=$-$q2w1Y2 //0L?xP>h 2hm۶aܹ " ڵkq~< 66̊vYtrn᪋{+Uv_WQìE-(P/0@qɥb/q3,&JIME_nW]uUDfv!zj K dFL³8dCVEaq/UrT0]JE)CP\xQ0SO=S*ȗ w󑞞ض.wzSlۓ0N^@ME0Rs ÜN"VK]v: 6 ME𔹑,Id+| ̫{ݻwcECXRQQ}LŲ;5r4Gv"%,bޠ&#=-H(,(DiYiPUe"2zqٕL@hNquIh>:/? BKbR^zp0rC O߾Z37y_߰Aqh7rKM/}BWJ5>(!a})٦@#̡æb&+\6{.nw9hͅ٩ ٙt%'Hu0NȓB TXqeKo0 J_w,cM{VM hgءb1*ۚ%2D5}xk!.ʡxMEqEʫ$C1IM[UCʼdXY߱s'bR`5r sV$PZ^)0O0\f4E6gE͐,\XU'`@j(&|.? >/2U "A!'h`; 9dP#btejzϪ$@>]7D*ڵiW,^/e [T/ַ()f-`n9Pujj*\A?Qh7=giiij7@nїKHݒRZ'^ЭeL^ \BMNp!шQDs,Vki2l èb`V6s&}nmtDVp " D zHTmx@)*AHT>}пFJLW,حf옂ˆwFQp`zKaم :Ԃs]T@dS&; pYrVJw!m`JJ*Έ2>  hJn8V yk1cƨn|Z'EntWQ>v܍BM&$HZ#><\q^,VK@rM`S+D4y3X;@^H kXWYu&JogcJf͚Ռ| +&ZEg۷K/ L/͂~u)@ ͲQjJO@Qͫ?3N͓1xdclQo^i|]EZ}&xڀU4.<}ΪK;u pf6uFRSa*, %bMiC|%jExE"o%m 5Dž^~|>bW`][6 Q%(vgϦ0:j>vA!xNETpm.- {Кx)>c05"I0Tn<;:8lܒ ?N4ĺ炻LDr%v "Ui}yTl4K-JTő₞ R?C|zvoZZKjk/Ize䅲qL 52Lۅeۑye4rL8}^w  N4a=.jnU \4꺼!|gC7ڭw߾_W΂0qo>_~v?b ع/"vU ytQs숉4#u6aP4ORU:hɫWpej[Ѻڵ+@w]@U󢘆~ ]}7mjܝ?_!v1E,, 2};ĠECdC*^:ݢѡt(+Pmr%a?F/fφkkD13;SCǎ!xoBLrr \sت;qHhjE T*2*D)z%Q1y,P&Ǿ >zۥ6UnSSwx:6o JӼ<%JKKJ/T@h]\OtE]cu6h%D;8Ck{fV=S5G6у$/NITք\%$KՇ^eY9V@Btv"$6֘SJ'paz"k ,Vk_]ם+v`툍@yY2 DEQt/:8#!b1e\JbE{zdBFp:{c%mRSEuTKҗDY;Ty!u-?3c*ڟ]Hj@v6 !,{HH5h7ډ t31RV{3"BZJ?v8O@.ƈLVF(Řҍl dH%5OnE;*@p%HXe68R:tP% ts1V]a}{vnhlۓu۳@ JJy@JX Xb:] iR4P숈TM0h%X,ր\g\\ BR~^G zʟ.*-LCձYABHLjmVs8*H dDerٴnAkA(cZƒ}dN\x6Tx`ZFӨLGĬٮr$jD=Snm4H Քd>@cmz9dȡ*f!IkiCʁw`_'^*{.N/sתxw/'P->3#ߕ7o\Ql[x/)Uu<3hFnL"Ljg@=-`R]]"%]]Հ@<Po|Wer-y~@d織e4&0M  鮫 ߄8{5~%!%aT <z=J CS` *GR.op8tn]*TܺTMq wlxVcR(jم:qYpzYR^+XV#cݺ4UIͬHQ֬YTХ]R@JTnOd*4v9ض'SG^zJeGm]vMM ~-@ԧ,xC؜^=+xܥW讲pb"EU?LgZ-옫pUM R$'W*a۽رD.N6+Tʘ@(mF7seUnpܦ1v%(r9wx0lۺvΨM5,f3;mܸ1h@p8^iRAXq\T-Ҁ^4L*=zMY-3D-"!ڬ<#Y=$_~QjJZ, uYxzZjDOz`/McPb'TrykP^VV23ԁ\oO]9EG˦p*hG^@EG*1>c޼y-t9b@ٳfqpʵ V(_ !#9QN[Yiʁ$F6 s%Y=e ۛjrٲej˜_EsImF_~::XceqՅ}T{:K=x~6nDAv!ٙY*!%˷O}:gR=31Ku+PP%0eu"k-5׻Z^''L-H^z*\6]T&Y=j?¶9YХÉXƇpۣ#%KI/QBJV(>$n*g`W_%\ynz<$*zף{wܱr/mZG,^0S6]:Ixx+0ٱVQ<0gz޼WeSt~+%ق"u&A5ڈP} ܈8DWreRkt xblټ9(x y lM ;2Ԯ-gjn5]V+3d]%oGI9m[6EhnQPO%n=KWlqg5Ηd\ӌ zE*o,w?nhz9@* _W4,sL]<ꡓ,u0O3 ƹg@oYI_,W!Ttw~氙^.bG.l7#.Ҏ4 SI!+2p0"1tRSAu`qI(8^1^;@̩gs"ֻ~F~ "Up( ,8p%[/H@Ԧy;8X}:BePL6t9=9#O^BIpNUEF$Eq$ǙU=J/\&]wQ]@3:*h[,3˰6 '0 Ѵ.3 EłxpW\)o,C̹ɸ63-lr!UJYL.- U*Cf"J8@H3[Ъb2Sժ ِU?+{ P}y}XVgljO!z "S#<QHIqt9j9*̫I}^+UlGw֊/LO IJLkX 4ѹ'ꓩȜ}4@صwKx?ݤ Ncf R-T{()iRyiP PmԴM!&?Z#d(8^ #G'^õ^{T47-Mkɮ^Yg?z3n5|C=1YTsy=TQ,9`1'+bժUλ5a ¤LOarcoo zF(C1~|աO5Q}9FR ^}UWxsU!Y{QUir}Li&jN<ެOf gLCeקGup}|zcBoiALv_/޽{nzoS` d7v2}~O+4N@H%o UN@ Z& o?n7AAcsvl,]{ޞ0Auz8`D? oP$ ^uQ<'Xj2RkͱDFF><̎pjp4zTa22 WB\Tbb6UP9VگG'v7ú|"X̖mb#|C{&ďK6hg0t_ZXf-hȨ/EƤ;ìD @h\j$Rȧ]"w)2sE㚋z">9P?!QRY'<0q4&8(r>BCk %ny,x]`d#Ce F|\NgT_! 52ENb E*ohXJdkE8W L]KM0G3- mTHS0vatƣi's VMx[:3sUcx\eox؛tP%@| }9ѫMp 3rsf@kh͙lKI[o{;U|dDbKd?G ٍf"%VXqRԅx"&cH*QaF- cόB66p O5*\KZIU+ `'oW7 pGG!^,}|=^#FPnA]X/mϹ0bxWHkP^Yt+򌈔-ТU+4o. HR Z7أ' igoБ`'MR3lJyB@&? 6lب¶Lk.:/ߥ[ٌQZQ)To>F .=P^ ftmnEvV2yhz| Wz O<8ֳ߼,/4Y߳fK$ X$7݌i_L׍ZhMtŠb46?qTϳJ-HJv7frg^U؃ =Fh]x1f,oXT奆j'8gdE-g>%ƪΛG{L$e:QEjN%%n(v4. 9ͻukTe?)(=6p3 |۷ue;yubmce~.s~HaXżoUrːCX|`Sȸ;ΙRjuX.| AjQ%@ ׎D-[4tAR7  ?Xc)srs?Vuokղ%za6nRr2?|V+_rz5__#h,$cX-F'!E/ $Bc?7wLO:se^Z^^=q}1c!Di"462 Gg()H p0w.򕩩X`zp={_W\-=s3cΝG'a* yht7tñ,ٕy K-D\{NE>}Bzi,YDuEEc/ʂҔ9@:DE9b]F5@-VƕW^ /۷')e!-JK;$+/+gUw@(i>xA+@k+EJ߰EJ/Æ{IhFffVZ2!guռ^zmճb}ƥߘ vy^':9pLR{|;uRV͛Uŋɑ y۷/z;V‘' ^:'Ri㦍X ev< 7SB#]۶ y2 oh c8((K(A"''G޶mvɎۿ?̜IPs5C 1Kg'r8(y"|.ra{ #;#@ُ}h٢K$W***vЛBKAkLxpA9`;++W6:|D抓,!Xh0^'y+?/~yS+GtA `ѷ~.IE$eڔKDp:n{N~΃*% /RftLU phy[eNG)T3m!v=3ɲj-qN(V²p *.Lb(4nזguBIIq%뺫/` 60_Lݏ?0HfX&]:{樣>TH$Zj( 6'7~_u|W~N:@QbT1zuA.a{t9${<$>"ݳ vƭ>۷ ՚Dt>iՁc)_-gK"uV*%Z;Ç!TyzwO?Ӄ 0qevIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-pathwright.png000066400000000000000000000313541263353514300243630ustar00rootroot00000000000000PNG  IHDR pHYs   IDATx}y|VյMŒcbqDHX :Zhh[۹vl/ZѪV&%:Zzkk@@ZL^=!LMA, DP`8M"_3sס(&@;" v>E=gK^۞hb3YcX  K DcƺpF܎~<.|o["`rWAl}v&R%A;.Z4%bH2$$۳"@+V(;w?0^mAUdz4b"DJ<0V[@XO'i2li$kC$f;szA; @8d w3ݗL#DF@UNO_jǺCDDk>*Mg#ӊiF.t$O(eްMz cQId&prWR{x98ito|E![8dfqEOf8R~Sp V¾_sbI]&%@BԎ]x c gT7>*9"?抆{!B⪏*iECi`][^~f0]tXC䷺bk?[6Xv;#4>SO!2)'?j׊vM 2^!F}1}k7[=U+EQEE-">jE:ZYp[@S͔w,*E05#\aSU~#B/+G<-1d|Fl݋3몮`y8e0˝Qեsm Z34_ɯ}OEIt,3db}ESfxB ra|GzDhZTqj=M'_A+Bl bs}Z>ƚEo <vf&[L8S2),v0AlhʫW~*ϨN^iwk]FᏭF.˵QiapD6t@D1_K~'9\[k} ojz 6ԏMtL.MEfbk㥳W`y26&kG}:c.n2ao5uU_}׺@!ڛV7 % V~(_i4TY򛞧l_3$9Xv<=Ǣ]W>q{OY[W һ "׌}zh[׉v O%9N=FkJW|ҮZUk D$%PbLb7IבO1)Q%[^5 VސͨO'&Y禍ɳU"r,JX3B.2?/^ yg6zK&Pm%/' dFAq: < v @D|JD0E%_V casWE^0gٮ~owe|uq:DytEaժ =d?i b+}v} u[0㩹Q@cg˪n[x><8|kCOgb똙lDYܲ۟*޻ggcM`ic{&n"x q.ȺCQ^])jjԊNK/Bkho-kkDh P? ;"xr~ܮmp3"ıq_,nsWtMN暩ŤxCGVD Ϊk:K|X Z.@s1;䲱"^\y=4N@& cS^;y͟g<576D@dg7\ kk+b#2rN2c+^/h#xH+gRT J9 ƺ@u"rkQL2B[hʪWT$ c|FRи3)c#?$tOظ}SNc6E @H8 @./ݸ@ik&OPLMθK6ܙ׏O ~0yraU6ɣ+(8VN57Z'Hb!:1gUuF:A+Bozl4_"V=6xwVNjX 60t&M K&a m}8n_|Gg]];S0J "aU>t2 uoRfV!HǣޮN$_bF"Z? "( P߆G_\u}St,cwly #Eζu\ʵNO .uZ'Prjuo5IHjz"|O1"cbwQo;y͞߈\W"kfzډkI$$"%Q)IǃĶqF+V6tL%v^y4!|O5[RB roYT3]{JM&ŕ TQ.dWV(԰fxhJ R,P1N $?4CM.<g!6-ˆfD[W ADNIh5n?nWܺ*_x'T}jSGto̜OFg;'oFx=;u|f@?j{&'2Kr}Y%Fy/~F]R">n˕"@mQ~{{$_ӉњN4x<.x者HubQ9~oL<9{oogDR:/t"3iZxB <_19ZxJ}5$Mt ;!&iMO ENErPLԮ|$gZYzmA Pn{o_uaֱ3W|XYy QH,ZѦ&1s'u|Ewatz4VӋGDhZxfH&AZxWn =>NƱV B篽!ND{ەrFqT̋u`](q0`:> YՓ<J{lf'Ҭ5 &%w 8F,}qD;5?JǼ$L/9e=hNψĕ>{:{"M09"5""!)Uxiv_׊HX1![_4T{tu6Y-'B:"8';{n(Y3$v<(5lq" oͯ2wUd=4=DSJy3n9 :ot d>y ڥ $/n))&9Át˹D {t;{)fQ nZR1| R04A& v}#1:"ID~DW&# jTjXDAM"dc ko2NxOlY]Ec%P8@ds z~ۼ9;m al{عc|:'=[ >0n\ BNEN pXY9cJm"I9S#| B+7duN;@dM'˫Ct(AECu,K(ƸŌSز2 %nu0(b; w{X8+fu=)%9yԥGCsW@l[Q#7uvtβuUk*;{kwEW/Q:guu}u Fb4;Vy}ްWGw 'X}Dz/iAk1XOUiz~$hTLU@r`=zw/AnnrWopxސTBD`4GXM?'c䒞Wpp0OF@ٝdǂ=&]+"R_%]?Ρc@Ru ?_F=&K#8O/^}iއ'4K21B..D`(X0vazwjaVUh"KH a""ass>QӚS&igD_3De;|0Fgq8+%DWY0?T򾈀8g`: nxEE!Ȃg=^;$=`)j:Z'x^zl`D!)=sR2Ob1YF1yPrR̴\dOʖLA Jyۭ3@3uM ,33@q6zCIzq#h1)֝3PDM"((2~ .BE\Ka~ꢷJn>D4<IW!u í)F~1h,yYWW>oXu=eZ`auENPɞJG=ܥuY$4Xf"8Il b7t ZS[ycQ>IԸ(r:M4T}N7ge)ڈc/9$SD־YsM緔uU}^$"fB? ;)Ӱ(gH:$SV$QM+5[!iFuUik:h1Z:\ۛ$ Hu"~(iB{0K{Z7z]wU4JlX{(9)gլ6&D/Z%I9q˭s!42_ n9" K Zs~Ӻu"@ӢS3n`Ʊq~xȺ'ĨK,ۯ݆iCMd4D#Ja@@aS@98={쬕MisWSe=K $6"[yּz}BX}*=mp:;kKnq#\阀(S~ϟ߫MgdJ)!8IDAT:~] ^V>qMoψkjfnsom'm3J,[t3,\5)bcN0h:OkZLHI[zޮC>%DZD8%1qsKgErn&t:ЉGy1vNi> ~Dusi i TV|aW`7WDfyK[ɕesW"ʏ+7PLI@Onjg" 3cizlRG#22z=Q~#4N\)B1 N-s Q}~ܬj X];@k'ݺǰN^#S6wEcկ_$ AKs=.瀟(;zyU8E | 5N掛[RBj3g. Qd7p;%IB3W2W|G"~کʫsg]k{6ԏ]|ט̔IS@7Mcբ0_]—|m ls(pC?Vu2DHv$VgDCӅYr4-!AqI =@'d4!*gܗurwqᜁEJ>iƻU !=MIl]5;{oiᙞW<`"=C=ޙΧٴi C)z{Ui \5q=ӌ\" Ya~NIb@ȸ P܈S R;hx7TDHnrGAr½Ax9@۬|y䰹):͹QK&1_X{օ Eg~霕/z o "h^R9YE. |.c!_r!N;fᰝr`|0G(pӉ⪱g GHjcHہ)VDHalwb:9Q qix}DSroo$Qq+s)<# E^9wƷ]%Rl(GLP //;H_R1x.@,-1#{(_ӟx[#6WHYA5{*Md=;Wi͏ q`If"h$Zo?=|C:nUwOK~: `qqƅvp&EeˤC pGp08LPȸHl?;Kr9ѩ]UŽvV`V =̽C:}R{, α"b۾8W}U*2Z5W 4'lۢ=[PϖW-ǝ- xHq/gZsjZxI qoJmB;!@۶s+ gz~F==R?1[Uocn'$O9Vh~Yv(2FYdÒɧ';Jg7n̻֮A[6r޲O1Ѓw Dh^R9 s ?dʳF BUve{9sU3V :.h~~p ͹^⢔ km4!o?Tb7}{:,.pN6/ڸw#ZQ(鴏,Ѹ%{? #g+3*EdE &o4 UO.$(wq`|[ 8CԔk|q2"i`bn暩NS|{XLվ=]K-"RQ5(wVQL8U7&"/v|]?#;-٭5BKޤ'Q/ <ĶE[ uO.<ӌqȿ(p>y㚚dq) P':0Qqxvn<3qs_;S<[p$a価p= Єyʊ2: NQj$"u_?cNl-'*Q:Bkd\7k~Ԃ~{:ډ/uK4*=G vIA^}ds9 ߌqD9{ayu7 2ȩupC\} keom0=rw̕OsVa MU7Y0K ]n]CG [4bʥ0g(7'L)іe_4;uMfiO' Q|->kRLˑQ:gf0ݛ9hEU^໛>ehMCAD`;;nmΒv?h͙Ec|'gՍJL HωPiiU)(${zxݘ r}lchx:6X87.bKՖgh>k82>/?%dL'o,¦ܶwt&}'@J境ϓ'l|*=L.q IЍ'E'(ޝg]mfM6Pp "wB{qc'jw2/0q{ OM"ߵm'oD9nsd#V1G#s!b(?KX>m Ի볻>э-(%S:Xd{1N)|E.zbb[bPV6@ eȅaQymeZenqvzɅv | H"cpdrk`NWEVJdY۫>ɾT{ysvE; D{q. +v+{?s?Z.7N|fذjUŔs[C;^1sY6Yzک:c:d &MZek+?h!v]=z uF4 m٧as>@} 5}F;M sR\hKg7:6UeYT1dK-Z'N'vqtRP*Rc@ 8g=|}f"b]r$XBKy:3~a+^UKhՖכAş{k^#6>TOɅ*"V-)?~[IENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-phurba.png000066400000000000000000000057701263353514300234660ustar00rootroot00000000000000PNG  IHDR pHYs   IDATx{T]ؕQyhbUJĊFZyR[ j5֪P.h[jJՊ*X~gv]?̹;͹{.+axD0p`"La"`8L0 `&0 D0&D0p`"La"`8L0 `&0 D0&D0p`"La"`8"yF"`BS%*Q&/獯)x\#NSt]ғ n(f2_׶w/ÒJ׳j|fP0%OW l<8 ]> ucw^v;(_{ڱ59)#,^FqPg# O9/,a|Ei",A[+ !B?h<[KPƢϙ,=KhZw$B8U4ZDi,Ci2- -)ғÁ]yM=f/tE=,Ƃm#Ӎ $XnTt&JvQ{SOPp|zD Yj)Ks" $M4.N{'u5!lFD-[RR^f,DNWfSR"ʀl *g@/3 DEd'1&>SnAy nLԕW+SLg NVA:*P^Ob5җjVqC"<@TnS։@rpӨLxAp٠V!A(>(br3sN  ϦFA_RȶDڗ'y#,*p/p^ZUtG NĤuzmZ&1T BuV|ҽF! Nx@-DNSS)Э0A4djesiY@6ZʜdDY%Of HpuF?F" *> wj9tqFܙ&s3/*#ܝOG1e5E!J4̢Y%in41pmMKnQԕ,٢bNF.D"(6Q_`Lr[rvY|H\3 7vڇJΡ<^t:m"*ˁșri-A78Z_Rq"Fࣼy gf\i:XN# mcowO|J +R:*MZL@A#h^)'Sj9yKH[dLъAK)_fy$C%4l6PqCzP"T%I /O~h:]=/UC7,GY1M|" 6*iŎ$ ϞRZڅϖ! lgF5!6ޛ使fH4&0?A)b"qš/+BxS^d 2 8J?БUWC88>t 6 gyE/: 1cZA-}PƝ%f ]Rb|L IT"(NNV;U!)+vLbrUވZ5BM2<]L75宪 Z#RƳH@;Xò9CD<>>`/f(x" x-jPR-<^&~U\˅є"ITV`ALr;[laESxY@(C82+"FLnnnTj*4q)9k~ 02&SV(Uǥ+>0O(܉p1.&NF: Ÿ\h*X iT%lioTTi\Ӿ:宴خCc*M1·(17N.DRkg G!Y$X(e׵\#L)(Ki;p^\2=Js:10#N@yz},kQ<'\JBeיLlj0ed&`tT"ڪ@ud~ vϖ҂U5m2I^FǟZpȊ!88}\;ߕOn 5:81FqW0d.(i͍cF'!Sz}%s>s[MF;}W̡|Ş>`d!x6?tRXv sLLzlBR]@\Fm3ڐwt6]{QI\s_FV56 xޡ`1}c/ 7λ( La"`8L0 `&0 D0&D0p`"La"`8L0 `&0 D0&D0p`"La"`8L0 `&0 #&U5HIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-pkgfarm.png000066400000000000000000000043431263353514300236270ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<PLTE333> $RRROT?B@9}}}@?###***T-*3#::: >@-Ԟfffv|BkyA-.Zbay ݮ~364VJ@DjEB$X Ip|`OIx!lW'"c>Ѝ# *6|jIls""A`l?!Yjן$("HB8E"4>w~B j8>$!$g@!8Sj) F-B q%@"0XKQ"APFfH"D`!4X `@zH d+q|%@"C(@GBUPpKR*qXB.[b% 'c$H8mh$H.SL"TՒH 9EFHKp4+VU@dƶ‚q,?_6PEH8 CN:?ChD^-!;m77<;bpNEA@ ,Οj $ )kq,Z  `h8fP7nnT.J ىPŽ Pq9fFLIYyT@S=)^U ADD7]Pbᘝ"!;"@IpNZIYC PpNy _!b[.hAh RHnq+4! ,>xHD3 42cO ">7|2C # `$"t qN =D_KBbt8d Nrf,GGB8ƭfJS&IKciň!t59. AShl{ǍLj"p 4?!0FHk)$ HI@t戝r!:lsF݌ /!)lBQA L G8_(7B#Fވ 4 lrz\HƢc@P#dh@r aK)K~pfJ3ڙ)KN . r_k$AwM⚤$wyGE'ӼvrT:KZGt)!RMIIxWSm7bj DMy)I4~ze]co+\u#4_(tR $Է"5د&9@h//wH8"}L-$ /ב]OAu͐)mIhǮi$w>0[U d^ qɺQwS'`&n*!xE-5_Е7t; Sv樻|S{J$a붚K&֖UНq^Y'}c֛Ot1dAj|F2ʜ-_DL2ʴ1_"SNMfk+G G+w1gI@PSHSeZ/h ad1;Z^jF甝FLqʘ>s PkF']+?`AGsЃ$Dn$8eil&^H"P= f'u"6QEYbG\a/ą67/>M6?౼=fKD^+l;t_G/ܡ\zВUebs>Toۭ^Lߺa[LMMq.4440chϪkj9ͿTj\]9s-f))x<[qq)g`%5kFRu] UPARPSfOO˜3椤TVQ!i+366uvvpvt8zjXĄWyOVV˧\UUM nԬej N/ /q)ߐTy̬[Ak`*. )iLXлGv/ݿ[u3!kEW7${o"7n;NxT͞r"8"`BƇ|@T toSͬkL%J-=Fv'NqժuDFcf$ݛ$.ibhhm~7**fs>vS>OU90p훘ܹ FMF4q#`LM=4Opwstssڭ[eIԣQHGz&X+f5 5F{K\={VUV_M8i\rr!RH >V$]N~zc K;55ZY.zy,ʼnWZsBG(++gt1Y l$5& H zFFFdz<<,:NRzd&:5B~5RWWd6R?ӏǠrr򘑱x{@E(̬+NΞ栵 A@=zs?vȡL<}RO_p=@PK].$r> 5r%Q'}Y1H ŌĶ}YicѱC>։~gN*Wc԰}{ѳN:3x`Ifixz (Z0)u>|N=L22288̙M/x85460XϋttfYOnܸsn\tExF٧|ryye>R@lt)i=45rS@f=ن[[[>yyֽ+`v6ĸ5፴`eD LCwܻw>}[2h3YYwIa̙u @0XbE'j"w~7lzY^Y Ȥ bmxm6U 22ۘ7Y TdTVVkfmIiW7$Emm VRR{ryEI$3 N'u Cc~>d_[oBcq]X12]R"b/'&?Rv\h^XĴY1qkR3aj osay8.f*~U?It444‚`uՆU4~IJ9Is(+nlK:o@zuc..+@=ںdHK}|.[03H%w۸} qG(p9>=}b|"?`O`w8w=؅_kjk+xn'ϰgT_x, ` @ZJXTJ.t #!b-++wau i j_ZmGlyeA}z_-\8?x𛽽ӷM}`w1TX؈ࠀIʦ^h!5.$ LYjDB"z"DŽ0t}2ߎM8y& a $@|H/yT9::<i`TT42$4LRR2/UF)^[ogEz5𛱱1ֻwѣ;v#x{ﴶ1\Ah?z,I5#ZM@ҷn_OSƝw F}J;!hg7lx킍fJĔ* V6 P{-`a؞#SP^x ?l j#ov«EZOܡ0rjk!E._Ntusd֬i7ʌJ^>(2!NN`/z"\SS7S{@/(l~Syz:9sK6yx!w;+P sV0~Rtx3Z4 o`QpoP+p,H6܃J]lQ3={jjz?D99t:V2fKϽr%:::Vk$ _ph#QYQŪjj2puEz={ դ{t&ݝJ"WO@ڇ܄Y*)OOw122҇~6F$DغU ii:?Mo#j4I jo]DT,T20vPjϩQX9Cd6̼O+E$]\sUbI&f^\Rqjk>Ҳxi5u .jo][" ;Kyy9~̞"RՃSi͚v [r /!LP|BH@V 5]]_|gF$z;$*m]=ak%̸snTƍ3*%q%9:ٸ"akkZIlٛǨf;;7q37c޶/F$oT9H 491 , JU.y=9CO>b6-:tgqoolpNȤ{C_ر%k+U'%ptǟx)fﱒ'w32٨Q7?򠧧c. ˟{ƣtz7TH֖PmH^iYٹ}` )IkJ32N ]6J/GQR#wstԠA7FA7aHt<`Ivo:8wuu3?߷;>tKB¥~g$xjZ&;}<"IIigx1qzg+L7^xF  H@x>}|e#ڴ<_eא0v A ~n?*]bDE%jo~}>'P<D+`\3O g^ q[jAꘒHEC\H@MO o<$a8SD*=tQl3 {VV1!NzB655x7gyB Iq+gS%z0G~)T)QQ'!Ik @FH%*(sa7:;;DE/($oѢ cd1k:7\o+~ȧ ENM:tڠLKoll&H%TWW/>oR}]`߭=%0Uݰ@@%Q^=С! =zo )1WWx w WUˑԏ9Q>T7@gǡwBwpP8`s & R3F83:v˴B~*01 s C~8\\Q#\9 G.mgg{[Sƞ<,!89{#~A^KleeE+.)L4<|!Zx9cKqݯ_xJ} ,7Diɫ##ydQ.D7<¬mULD\ψ/*>q蜴11%1W+ ._J>a¨߈K$K`oFNA,&&[I%ʥt@<__/:,v*zHwf|xbOs+U*̌9bǏsD55Տ{?'\IUu܎6P7SccO߮ \?O 䌒:1omv3D151iAjj㱞uJn[A|vF=Y6ڽ= 1ܢ{ٻk{K%71ťHL}]J˕Hϴ'إ=pa>{1 G\_RŨCC$[%Dx6fHbp(+3=u=TڥIxN6+x֞< U=BQqBf(7_%ia^~gpt*i89ٟm+ BBl7vmG(jTP1CR?ut[@ja%N>ǣR$B15VWW~x ypI{5e{>%ع xzo[\@2xԚ8bv]'\ F{* $x0__Hɧ/=9$ZAU. y:jTN!0GF1kq7UjU̘i j*\W\yRK&>[AۥU#aV6 9+ Z ,:CJ8de?)ʲ1/w+D5JAkj-4!%jp+/h@iWh [&}34Y,duMucI1 sx~jD$s Q564f:NF2MC2H^pe\IMIMil@JGHAN[Ăui lxo~bdnP@ r$[] h7%^'Yw;gdd"N73HJ5P|"̾KAV)Q!ܭFfC,Q;)BFcXPT]]m\U'@cؑp0a @p1CRy\-yg>4_4Bz+wrv@⧚b<0>]K-!30{ /:G@2W$Āk9FaaqwQ*=>j]C СLX|%CDL4SβSR+|}=2!l̓}{{{EH%[ aLKus9T*>9zzYu„!V-,-SS]gM M˽юRjt?t3 ݩ(bhx8uTxn [w!0=sGC@x&`JJ}<865_w] \)cĬA]m'={LtAf)r}3?Zr-g|$%S= nfH 4b7||CٻW`{}D;)muu: jWj4Ts0 i4*\(kg}Q " 'O " M*İ?**6_"0֒T=404@VD~} Bt:J6?\o5a \&^kR3RT "iܸ[CHrHPH9C#Px\{w}QaqvC7Ur J㏿ܼq`t!P $Ǔ eISxaGMJi2l_y6T{t4EPNuK9?l*7JKArZn HW0tH> Rc!} #E]H3lJP7U.^Z<{δ\8*V!!߮Kɴsa_5iC+3 )O>7FZ*VVVlȡ$tvԜE?4҆122j }po IpL3fWzJQﻻk%-=Bz7*"k*Axm?E=:)  s+Xas rrrٰaf=eJΙ .)i6i>COOω aAҖ2a?йגb]$MVz穸sBC~烂YY[9th|瀳`ַɓD?ă='kog &!O@;q{] &R-Zao/1X- yrk2-ͦ=yԉ'=x:Kܰ <""0/#wvn`Inɣ}9ELOށ{=jlKLNs9&uWNΕ&a8K;IknGyO}ݏ>x1O/h a1b[pQw#4N[F {M٬ T'[GDD.7œGdjf6 }k eY%e $#  Os#%x-p28)I,Vv}60IP̙K_u9Tumnqt Ubhd=K..țIIUFl-PS½Ds ~=z819wvW8B] Np]  L4]Imm v =x  CSЋRRKּ{f5d=ك9977D #CW#ȨO=|] "iP2]|TZJ: pw]{h><й.vD\q؏t;fC}Kҿ|(F\sq>A rOLxAefEE婓gǞ;7XIs+y{y4P9bK}s1^?$ZߏgW0fI$ׯ8aT߸9ah8LvCdZ,=D;;thuχ`!aJ>J[cلe+Kwj5Ȩ O<,e/O^:uF>#Jpe psuɤBCT{|E7ب4d%ZڒR ɳcsݽOuVҫ0]Y"T qР:J^fK? rJd`z9q"y/YÎ9ΌH8:ة9 h&E E.fkkp:H +S26I W`,..~VxoV=~țarM4 >?fldU` ȚwO>z١ a;Brq_$Y``wvGF@Kssߑclb`h}dpma[ ,6iRۃ&i^|\d4NN _(P4q*$'P#Vu*yg+wzmO_}  ?yΚ2y찆!v߽w{ aښYZ+NS̛74JGGR]WSkn/ q4ؘ# D+obNw>8{[5.\Ks);3+]KKN{X"SSpD4yW55#XϞGI'kQ|0]k%Y9W\ ~p=ŁgwB)k@H87W6#^{0a=X2__---"{tedbIif΀@u!M'3@jO?+3 L&]Aưy\5;p 2Tg w;eÆ dVv6d*I"eOFAD5P*J !6cXxg|Uy<*aE%Ne4I==1  '`VjqB}]}ob74wglRKɺ "W[S~I%%s5:Q#… iY NH..D?aff AN\@TTL_i`"n4# >^1+*##0"VY/hlBaUvo(Hkx 8\SN ֟~|}MNI+MKKi鶤 "J< %#*y#fRib[0"ʕtu t))9nLc`Ȃ]sQXND.\|s!!|cSqgGJiqsp'bJ [*n@]@PܪV2nDܮT=Xa׮Aj0Hsɽr[BM=}ј9.?mlBX{kj!rأ"5mLJuʹyB̬~;||n@>J = aӧO%1\ʥZS< w0"C0,ߎDܶmBBkHH0spt 5=C{07ZϞ=턧VVM ќ}eԱcm'Oec OrJ:{2y, f]t* :"R aO<'OS MA`±XQ B|ƀ)Y^x1M^}e=CVgUg/ީ@|ĿU>YV}`6jdXihyI)i lw43\UU .$pGvߣw,^wJCuHRbodyΫv uJȠ<%xذ^Ĕ0W|\I~^׼g3[v1_?28-[3%&|?3񶔩 Ǝmyuooid  R/ =v};tB"흚_:NXyzI6mc6'*+IV֖h\ 7'`֠7otS0z0G`}H$c4ې-Ϭo]T۫W>@-@0QE;Wgz{{<:k )SJOLL^p!))Tk 70_@ׁugݻvqq$# -11 O(7,E{ZZF]ppCA;$#zbaQCDI|Ϟd@f={9pߨϢ}A_@=E}!S,i"nBl;pi>z T| *qigWğ,aU" +@18W(RI.B*Pl|oٳBkA =mLW&JzE{0]h$PU4rר 0@lo =TACW?IJWVI Qpo-éftX5 ҃vPLz!5|Ei^q.Zk뽤P)[9F<HocrT:%J{8B[ kC*4r½BR~e 2~pV&@vBm]u00mX(E"@Dv.e 62iP(b]U( =F<.TH sQz6kx@B~VH;qx6ĭf[y1E&Bѓ^L2&=B^%\(L!+?h,պ1:W8r=C#ګw^uy*} jͷdR+a \Ӛ 񛒥%{C?k5 %S(\AltɎ6^iC",iC%(<\J6lx+$HFK %I떤ЃV;`5nGCe9 XtEk5 d£,jװ~+ӕ1rtll ڶHEP*Ͷ8.*Y*Gp-u PtXMV;`}6/Hl?+$RWV:f]Jd0@ kIP5) [7RwG_O?|p1Y1lO(R63dsJcwvFCCmX]q9Qq&`zrc5`)F8)$ /xﱇ#Db"õSIӔ0 q]w&qoWqƩUb53gÑ͹s~1**KdMus91G5& e q9$ 0i`Gjx2I9ͤEQۊtRHؒFO Iqy)䆩_ѭv'OĞ4qBXc},!Üűc_p M*4h֍Wm~&zApE}nEWۇa} w $ 7) 2z&+Q?&ZxQ |ͱ~^;GfV^8SM.njTyC_H*°~gt𣱌{7|xQXE9U$ERwӟN漫:"&SB`h.$pxKRfI M eeÇ ٕ2w\" պ"}w35V8:ƐS]NJhߞEq㼤}u@~x8Nrq>++lDkш8 1bWݱei@}EC6I(EDZ.@ Z:NB.q\\{ yfI|A_@^kY(4g#4ds 8T)q裻Ǚ$gAZb5a =D׃GIi bxą275p饗&:;E%AZ ;EHeG<{ӗJOx>b98ʦǤ$C% P(ZgPPa <,콕 bɴiT e.8h-<DGnjMDxCR`C*ߋN=JZ2 ),wn8Uwt1EPh4rVR"w"p  E1 0yEY鮻ZE"ryJei/),uLF\O {r_[Z0Zv.Nߗ,הi/vˏG6 uȏFX{v}Z̋ ?kLdMi+ WӦ/ʲ*YXq8%s``gj\1滭P09ΝΟ(8m"8"婢OD^ y.+L󺯕U+5e4\? hYoڀ#}5 ~bɝk+!$1Ϟ" q"#c9cR,9˗zQq|1E,Gu.WHwߑCkSԊd~J2W rW80^>꥜;gTe#go"j"%LRĿ#lк:9@}.Ә& oҠ pu_NRQBp^XJ6=1k=пnK~52s4A:s(TbBF0:)e1\;]IyjUe uHu5: 5jʿC( }\/Usu^_rfo ⍏EHsWbGp@w'|\C\zMj}p^iiRȝ:) >w^$gHI/^Vo2+4C"02UH*|Tn\0Ư~Hcs2S*T$@ =m&Aww': 䆌dIkTPv{ML{^2xUEp Mj`w*bR:6%\>R+o0fL9|[ 5 qrZSP%֡¬t9AW #j6”]3 . ԣ0yJUt0Dk9B[뻿%/qو "/])-[c:.ꮜ籦Xam'۾D w,s$ƀSZ ?#2))S+buhߗt@ swXbO"(H'eNO/< ~ 5 2W.'<.ran"6 "]i*a'.erON)mK Q)B9Y,5~oܧ|RPAq<{y. o4$''@:Ol(.CZ2xh qᲺ6i-0ٯっL O> 939x >Rbq˅_dA[+mT11Gq!QQ0+搦`nKSKϱNHu˜ ׫rfFPr$S{^a#Q<ޜ~l 6'[Nj?;gvk=,=WJKkL:t{hn>zK8BR3B>U zoIiKOC"U3.UtvtxHp 6@[9J! Nӿ+tʄ\I(y;xsup!/*2 +,}`NTÇfkLyS[,dWpK\E,EP/ @c~%pc~a4Ţ@#Bf3~fyRJŢ4kEq9 ±{-ڠv,"X2`ɰ"X+%Ê` +"X2`ɰ"X+%Ê` +"X2`ɰ"X+%Ê` +"X2`ɰ"X+%Ê` +"X2`ɰ"X+%Ê` +"X2`ɰ"X+%sUvIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-shippo.png000066400000000000000000000162611263353514300235040ustar00rootroot00000000000000PNG  IHDR pHYs.#.#x?v OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_FIDATxytT?& (E@W@PW@R*(nh[qZRTQ₊"T\H!!=,oysL2ysoA@{}{%;( M_T ZFra90@+8['kTVIQ!sz!s CS}6f 5Dl!BD}S r-x W#-p p&pD }\,&+)~PRNJPY(A{hf% IH$@U" cCFB"L##LWB߿ PtWq5-7"DTT&q:pn| Bc#^⟸IeSNhܢz@p-q0:p' À\KTL B)p.&7_[ q ~{p0cj}6F vT_3B*@<`NZ`>#m"5 !Hyɬ"5Rt"D&쟡AV!L' YDۡ#%LIgD8=sQ{kGO|j$7kYjdp6A}V`$0ӭdh>yqCG/;p1ypo0CتJg[F![|D Lpqp ^) t p78no+,ܠ %z$4 ={ hVZ׆ B `"/ 8I%|\߭kwT2;%B p^aZOxL-iyt+m8"%5~9 Q( .=,zņ 6Uj %'"._ܯ xEyƳHRW<  gp\ĬX.I.BֺD EUٴ$!W&P_܀8=l$B* NZ&#m,< 8QWWX䉾IRJwFr* $%$RA$d,I,sqSK I/EHz^E' z$%Q}gTH\R"4>ŝ;y3T๸תȮT.*>ܐxoETIK9,5HI]"F-TA3ZU(5z*7U{-~XrQd5#:e`54X|vqܨ,m ]Z 9XA=a9>Z~ז+D5rCWQ*oсޛ`33qk|g&B?ܹB`s)ڋ&]q?_h:~kLvZ#!O[0V6ԧ2L.`*YktP>Tk.&Dp"{ks;TYgY@k$"W'dx9R`'D8WC}|.@(m20KědtKu< B pR4.VfL-\'AUb&Eq2p_`Ezn oIDx'yO9^'d8gbDn^_++#.TօmH1br8AR_Xs5B ~xo[lK$e`@xSq_xw#"tB2wM܋08%_h]H=w;L7UJ^SPoCv@j;_8!3{0Am3K_AXns$Bw8jHSuWgK1 ?W!+SdZTr쇝 ۪7ԉhl6JNM_Ѱ0`:vRv pr8q@IsC"MS.DfPk,LMs&ps8V4]0ȡqQ:*c(l$ W-poU'^iHV>iB;b:* zX5a %5lqX_vMCeUIX3 ;źZ(w!ɠ!GM..\qrfNDM7c8p^S'eP45BdSh~E Q,S1p?]q7߸Gp#yޟg<(0:-(qRK ", )1A_\hh"p;O"*AV654Ux2`A!!rDn{ xo9C)lX߃U )FRsB2׽$X|iiT\99!2)3PvC@'wzb|! uCOFVx6~'l>@b.Td$@ :|S!ʴ+1AIT/a*YJG0|<LKCFÐޑ27bEe4 ?=i]pǡ* ҉#"Ր ^<!V7*f"J{1,EܾIrJ|2,&"6Im*W= iw] ti܌QKyst߂$%;pZnH9 JFùAm8U癳sNhnp+ ΆLUqi!\crv}Hj*UqwHrZ*"T6#!mm=r k}f:2UF0X~0E`F3#OBҸ!BLp>mBWXnvK%J#'gs QaUd –!6$Ul!ZPD,YPD%W__e'xIMV5-"vDW߅frIT/I, '̛Cf{(gY8Vr{p*{xO7b4''"i=uwp<;h@T5‹Q:݋"iP1 ~|#<&Gj "^:ot&A|o~ۡHۚHg:P$~tn/o ;Sm*jj}U(9?uz7!*2܌ BWD "*n.QRJs#^'AeHNϙZ ~Y?SaY:1T)!TYN\aC0+g#eUO5w"R__`0ҁ."mIzq7X H̾YHUH 0 A"!9%HHA{=Hmc%#HeCLͻ@g00㹭=`Zk1//*SUĞ%Dh-E*q Y5IIΏG}MHRĝZp"49~-J>$g:U"6 m v?CJ??(S{U#ZUxBOq < %r=pٟsm C2bH|*g%2{@K8;e7`~BASC>U(zH@ct?g$Bw 6Se-`√0tC`V.F@2Mu|ق*$ 7H  E8`1o#.zF#} ːR)jloocȆ #Դ75~sT,PI ",IBU[HFuC+/2a@Ϳ@O~6J{7=EBýUZt@ItU/F2?@xL pV!Jms%23!: Yt{p}D;\*n:(礳>\@uf 1'slNhY,a"V$Nd'"yHsy,~3ȓf%9YD ϯyWR =lRE~u% =ٳ,6;ty\ N`-0OpNY -E.0!}zf$\If{nn,!Ban仂`<// AH"pلbQB;a0C%adbxD"iHHIͤ2IUYlD$ǒEcC; GqP2(;(5KgRT)3)GjTTTkiJRҷ'd2z22,22m22STYK 4"Zkcr89=9o9\KrTUIeSRR/SGLdB r 6  Y  i(IKN>+)+r+6(+N+-RrS*(5*SLWVNQޥܢTbLeA*9-b/*Xtj#UXH5Du՛Sjjjj&in{/kP5\44h\xIWSenHf挖VVVSm6C;A{vNz:G].Own^61}%}~~*XCaFϨ1llgd|c`720%f̖֙嚵611ec"cK9K\v˷VFVl kM֭olm6mRmmv~5؍W0"U&s3O9dT4X1wZ,΃.t8]]5]YUݴ8nn=,<MӞ<;P^^^r||}|&}m}vav 0՘lf sw9 4<%%p'Ku fk.. ^VEePjaaa E]5ӑ^%QQnDD'Eb"bc{/߻|$66? Y+TY*UU0qqq_XA*T<32~~qs%焒D݉ _0q5au:"5C1,7EDC.F=%Ϻm={4'uuu]5oY?}]7m▔-Z=O-os?K 9m;#Ǥ{[o߿[zEai"v,*ivGŽb;;;ruD$dxw=={]ZM}}}eKZ߹K9^GEcj6R;TxI??8{JHG#Z1!ǻkkjjUk:Qx}l^'ZL7 O/S]螩l64C͓-־6vfgy ISTUn{!C?f#/#y/(/JG5FkƬ΍~+?e|m_nݜy#|3cmwMO=afz>G~Yoߞ̦ XB֜@!-cPp@R>wN{s]\x ύPHwPH/v ֒D%=j R bMJgg!gׁٙٯՈy@LJy-V#^?Escv` pHYs  iTXtXML:com.adobe.xmp 1 5 72 1 72 130 1 130 2014-08-12T14:08:50 Pixelmator 3.0 IDATxw%QcĈ`;(-+lØDMł&{~swd޽/egg`N9{s4 g` `D0F#8"`!Ţ%#B͟*oDHuɈPkR,j]2"FZ6!Ţ%#B͟*oDHuɈPkR,j]2"FZ6!Ţ%#B͟*oDHuɈPkR,j]2"FZ6!Ţ%#B͟*oDHuɈPkR,j]2"FZ6!Ţ%#B͟*oDHuɈPk,r]Ϟȓ;^ʪWVyZj$Pb:NDpf(@!}(X]BR2ѼUݘeɫzEd t<2(`ks*2 Ѻy[m A5/"j'ugu@Ag*Bx-Z:CՃ!_Q,m Aќ|rdu^gY:VUr"Wkǀ֭Z>  ;Ɖ@]?Yv?~Y IgᙯW1>_.G5i ߒ`.RnG~_ܠAJ+Q[߻0]tQo>1o;믿7跥/_oF h$ܼki2˸!? ,bڤ\YdE/q{|nߖ3Dưan{]wHilF} iu'7"u%hjc9q6>3?Q;4ƍ8D^W[Zk 2=#R?$G^xd5?餓+27;CO~?>[luuᾐGQ0Yd(<2JCfhG]~]-3õ.iSNq묳Tc&ƑYL?Czݹ^u'9}qnsgy;Sg<~-./!+2 V -~)s<_gQWqͺLBtQf}usp <>/SKo.@i_./G!#AQF /-wv{衇}~"7Y}ݱy7oBI>AKҚ%ꫯv|QGpaBg9~A!uVjG2, @$@J}r%mHvmE]$33}̘1Bv%A:,!W\!y8:62OH_z饝CҜ2F]x%e]ߖ5{-1h%30VrA7Dq-Ca;E<J_AAЎęAD}&dMN;$A dylն?߱ܲUg"KmrJeID_|ı*k|x`x aH;"Nbf"xd"Fy' +p[ok9F\q 'R↗_~YòG2.R5~b5v${rkOGffV^$F@/< ; Ņԋ_ɞvir>?m4w7w~lH >}K>09 mE:9^fb駟"2bY8 W_qp!Kb"2W؝H@]d8O8C݊+8{ܖ[n);gĘ #"[:DzAN@;A r[$ʜ/8bGG0u[+36.#!BpsOW*aL۳SD¬_|.~}9 (g\=H7t0˳ Fwq}ȑrAP<'/gL@=<D O [o:ٓ3APipPf0ub(q9NZ0WYe4SHuPߗ yX>L"3TNs]'MPI@ ⏥5G<U;#QOHݾ"ހ~{`4A59lM,=bnw7B0Y?ɹH cpaD_*ͫe,@ aZJ_òH܃|,;W8Iz?@{%qs~a[K^U9fEv?|m!r%_F,l9_ y-70ܽ!\OyjIPݑP ْ)q{17cw*{][OUB`"TiU{NY|U"/w喟c8O&y{.2 H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-:iTXtXML:com.adobe.xmp Adobe Photoshop CC (Windows) 2014-07-21T10:09:29+02:00 2014-07-21T10:09:29+02:00 2014-07-21T10:09:29+02:00 xmp.iid:88fef841-50a1-d548-8706-867bdbe99102 xmp.did:912556a9-7305-3246-ad6d-07523d4ac18d xmp.did:912556a9-7305-3246-ad6d-07523d4ac18d created xmp.iid:912556a9-7305-3246-ad6d-07523d4ac18d 2014-07-21T10:09:29+02:00 Adobe Photoshop CC (Windows) saved xmp.iid:88fef841-50a1-d548-8706-867bdbe99102 2014-07-21T10:09:29+02:00 Adobe Photoshop CC (Windows) / image/png 3 sRGB IEC61966-2.1 1 720000/10000 720000/10000 2 1 130 130 T cHRMz%u0`:o_F XIDATx{UU? ^^rAK  Md$(n8`Qi13*35Y*9RH'j*5 KAJApy "\{Nŏuι_0wY~̐) HRVC I HA@$$ I HA@$$ I HA@$$ I HA@$$ I HA@$$ I HA@$$ I H74=(ppp?W`bCߌdR,qj9;34 n~s?ƥY7a`<_/y"˴Ͱ `$@#߶0ʎ@X\ cpo#B T!?7'0IiyvlgD>虡< U` tR` .NynGsv|50=*kّ:R9!g ] <`oQ$T?<ifBKu3p pjo4%@,,hpV&ZN$.` &^ VCK !Cleڷgos{46:883˴}W4ő"&)_lOw/>o#"~%+ y=;|m{F ȅv<,v{\I\ Xgc75Yg2}Yxi\ksqm@77ڊz,h5m}|&e)`vjl0:Ji&``$H؏XH g wf|-gv ߐThKRmhG~P!b{{ZJN7'Dw8;|Uig -v+-svA,чݴԸ- @< ( B薃a]k'8["[56hC+q =zi7ٛL\잳M"N!S)nwB}zn&L sj3̫l2+}S;@xLX3ڪ8b <eK^ s~]j G;#$8jڱE4cRwX~Q2p_s 00[ (Go,qⒸ{۵ζs{ӕ@%2m,nk#{P1ޏΈv:,#BuMӤ}*ǿk݋  ̌3"_~=gϞtbcc={6G)鉯8p0==V;vM6u~'|a4MONrrRl޼]וzGl{Vbנi^K?M7Zn7vXbbbqΜ9$$$x.?0~HpqqdNZ5x"۶m#>>ގv>{_殻Bu^/qqq>}R@K?I~RΝ;G\\^]IMMeŊvm:GGyI&uʵFI&L@|#Ξ=ە$0 [Iyy92mBu[^yNfTɓ9]ٻw/}>ԩS$uֲe{=e =k֬Ӯ"L6o]I/_ƍg&??>6m4f͚LAΫJMMMbjt]gv֭<Ƌ/RRRիWx `Ĉ̟??>СCppowQ-@~~>ʦө 33{ռ vkдhҥͮz6jxO>iW,Q/4ٹ`00a-˗t:bNN?M'Vv5iFYYGms<"#@)StJ+AYxq3ף:K.R:u6( iWg}ИzL:C17\j\.]Ŕ6`.\\rQUU믿ަ;6zy:t2JmB׌3ZI8nʤI{ZUZN2&h}S^53 #uu;0~?x7yG}c ep\oA/E "" "`!"@]{+ADBDA@D,D ADBDA@D,D ADBDA@D,D ADBDA@D,D ADBDA@D,D 9,SIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-trackmaven.png000066400000000000000000000123231263353514300243300ustar00rootroot00000000000000PNG  IHDR pHYs  IDATxyT=͢, vWBW ht3ͽęνI&c51N`dcniPl\mj;?ČyzoKթSմ*c>p>\Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \Bp \ aHqtƨ>r>-85oz5xVXw8MU9]W,mVWgrחϼ?vokމn]qک=8Xq3ζLǟE̯?ubˑRz0)U/x~LPϬbS?hc/_q8IEUǍ?}ҫm!N>riSa>hgΧ<뫟|̦1bHws alSr/Ǟ8vBUj\=;1tuOkVe0OOdYuNIܻU"Uy_io#۲yr|1lXqmx>2a)AzOޖp3Sbi:adUY6*46 <\끭iOѧG\;8MTU3B"16/=?ۖv̴N.f{h㞞2/Oܐaik__fqg:QEEpфnP#F 8i`EeɆ 2$ֈi#(챵(л\.h3NM FJEKX݊*$P3A~R^V:8j@ "o-\WxG/]4/ aww26z⅙Ux"EV7y>EDYq__[_}ś~u(FE 10mտzO]5WMKx91H!6S%">m䭧>jMjsV;BO$`e#Kgh{_gkgZF`}}1-4fZ3Co0^Qyf$<99m<ږ*36R$E斘1c r33[/_y09_DPUED*yF V4f`q#孡]̷7ӑr{Mh :٨kSUdT[ȨgR| KY6E ZOgҕ$-PsxAFo7(CP720׋OY/E^=c²"|C ᖹ#K ȶ6sB!E]0#_[~F*P_tO{ޡs1ܗfU@4aq O= \&Q=8f': @U|CǺԷ|S4>W}S^ pC+FD"KK^'67=+#/~]oG#=.ZbȐ1عi-o/hJz]U7[Vwk[D0 loz3F󣙑p*C '=O!J@̓ik_۶| ($fLPnZ}TzD߷o(3NYčwYHъYĜW_= ^ъ鑳'Bd H&ԿIx$kOI%3e~a?MBU/O)kEY0ČО~S+=-yqoɅxVz&ChyOБ,@3zĪԣM x"ř @=R/0(@deQ.p}hYDaaHD ?H>.їv%ɫ6<;̵oZ^fUD uUYۊ*UM(E[O wWmm+Lu))좜(;vv/f"].ʝƷtF3U`_mW흹Brضޕd"Bm݇@?S{ӭQDg.Ovw\x$wعFcmmWr7t&2WUEEy۵K]Dy42*b"\:WRq_~nډK98.0R^rw{v0bߌ36`WW<c*|bWޅ(a:<Ȥ5J)3xd?Xy5ZW_IcTSS,]pHwqIl>\{E%$UŊp\Ek%N8>t6ףRDf#3>̠S%6YQuƈ~8Yz]y]ES ' tZXeג<8i"&f #FOzF(D=HFV iCP7lYݧ}n @.ڢDq.YVΈre3fLxN|Foѝ JTCY_@"KCckܶ)+[NoU0N {OtvEܘ{6W~eC'm:7Y5gi9掵u%R' >d*5MЮX^wq{0%D4EhR<,J&CTDҏ<1r:c ~ 4廞'tD_n]{ϓ+e]jju<%bYam}j٩?k-2RE[6ݗ5~IӢLݑ4޿aj$= ZتM7~oKv$=Cșa>)zƃ{E>?@{UPjo 7_@#q LhFoWIHwF{wS%'Ixj:}4䬑 1.{3Gln#5h)/;>$Gf%y5jUMOdk6ы $\(Z/m?8%ͻ7NMeAFuDo{'.U8wH-RuoeG 6˧O_e'_֞]7z3~vVBE[}nf#+ o/ۼv}}(*ѳ磃|'szEyݿ}iղgޑVa@ov6h}#D^Y}kR#Y*T̽>f<ڣwb<-wMtdTf#vcA>j?Q##F wQ)*K$?T2Ǽ|~Йmoy3~ )~!ţ'Qܣ'E}?ǡh8 ^ҖFLȞֆg/mmwPܻ"s=v_|oOp7]q ]zֈv.[{_d}?oTU sY\Z{g:b_{M~ov(=ڝʔK]m{^rg!Dï ~ ZU5G;/:ezoXp}Wk........................0AIENDB`django-rest-framework-3.3.2/docs/img/sponsors/3-transcode.png000066400000000000000000000206471263353514300241670ustar00rootroot00000000000000PNG  IHDR/iCCPICC Profilec``2ptqre``+) rwRR` ``\\yy | 2 U +'300%@q9@HR6. r!+ v.z H}:b'A2 vIj^ʢ#ǔTbϼĒZ@! A!ahii "q(v!( cd2f` G1G)I/15C}}sïPoW pHYsgRiTXtXML:com.adobe.xmp 1 5 15001/100 1 15001/100 130 1 130 2014-08-13T12:08:27 Pixelmator 3.0 qj&IDATx]|UUҟ;=Z)"'(];bYAw]ueu-%H !!=!d޽%=S朙?m`M4h` h@p 4A Aх) ~Ex .TMi@Pu+k@PtjJ_^ UST]ҀW׀BՔUw"E4 5 (P5AݯAх) ~Ex .TMi@Pu+k@PtjJ_^ UST]ҀW׀BՔUw"E4 5 (P5AݯAх) ~Ex .TMi@Pu+k@PtjJ_^ UST]ҀW"R;>~TEyB}}=AuM5TVV_;?n7A 4 ^|m%d@SsIf hK_71pQk86662e-- k׀m]^Z`ٲW=zEꕯ֊4fOݽVg-<#o͛7]{n[ۯTst^׭:[Mu^WۦwPF0.+);(la u= A-嫨r6j=23W_IR w4<9prX@SczV6!ࡇ_o/9/5Օp J(({GWX@ZƶwBw1c#g'>/æM[ZuF(k8<2MKa0g.3%%$mbR444 mF3g΄ͼ][~G#=ԃ' {M֤ogAccxvq'}~>:G بd8_@p(66~&^ycn Vr+)IaC xiOUg/^+Iدw̏׳o ;'xZL'9jL ~;iT|{:\j%#%qħ}e/F{;ts/ҡ\~nΞy/*_?--qkCY.trt s?~>hmm]OwYM H|7lXwOK+46n\RS0%%Ϟ<=D>!ҮaK"wNA8xp nU O1[Tr#?#BD<(WĹSG^c6SL ?D++=Cq(EO!! p3"Lä~YE=aڂG}cO_^#\1q34gWOʓXAq`Ii;Љ@ĺ{f-E س$Ca~.2H3@hO?.wG4'WpR- 5jbJfb DM_}.ǯXNnzM-ϜvH#3;P"5~u{즟>$ w̿I6㰁pʌߘ9~mu֢ޗf7T_Sa\_o՗mky WMxJ/i\o~ ZIr~$;g;،ڣ&&Kg hgG2K0`0q8>Nn+ߒZiݳ7mނu ">#5}Lcs[aaz^VxlK"jaGAsieiyg!br@?QC㍉o >X }32:;G %b/k<*۶[ڲ(wL$C[+oQ,+ʰGHw%d:7;J{ 2icrcWdXY]?iILI~}0uIwN3G/8v8`"xY\Rjȏ JBr<[Z~dEfV(BIcHgA_V¢E``o?.ϙ(̙T]A!a$k~ > /}ofn #GB#z@p?\Mςg "ؑHE j6#S3"=<<肪^\]97߀¢bI@?= ԰u.?[ltbIvݏ[; ճ p.]߲I"zÔSʼneh`CޭWՊ_?Y7Z?らIkppL'h?~] %HgdDdk_J8wy"4kdnoMPTRcMŽ-_'_]kW+nXy}g&,/+fC`18*UXIqT\dV㶏3=6̌ "YZBHZ6@eU5BX+(KxvKk\ywMh&ںu+8y k'|Qd׎XpZnF r9B#-aRp MbaSs~@={Mt W xf ӏepݺ%-tLOJ\Ȏsի0 M??9YP[usRt'{#K+ yBB弹tSB@PEHMi̿ H:PQ ,C&͆O7YYvҜn>𾝴 MBaa[u 8,W=-6~iP2)\3 fΘ.xi{w̖Ȅ=;`Ĩ1t*3gAxpȻ?~7TҾpPR^%_%;rOMIb31kkej/ Gd,~d\Ԅ.(!4`lieR:]}J$ܳ#~Xߞ##UDd dˍ(' B:Gl2H1Ookbk8GOڪr &#&*iW ؝ >ly˜Ywz$[X^Y-%{PGfa.g'7yɳO_A;r_CL?OpA=h<@HF 5e*;s&>='O+svu7\;vai)y-YkV) \*G &W^X&swڍ XW[ϘY3p}r2Lx} cnIߵ:M.?zx\j\[xof}=>RRM#JZw7NR>y=p^I˔CC3`|嵕XQF\MB^n.|}|ɒ_sf.^b\\t n?\M yydhi?[:ioLKu8=z >>>d7.ߞ.gw|qѽ;Zrrzf&{yADD8ɧJyz^Ȁ7nv:XsZuu~"dn@1Zڝ$9 h@9=璁P[[ 5V_?ˡ\ŪKho$O: WR˨_rF8~{[%J!~GJI .\*9YaOɲ X 0tRR؝%R<+@buK~̕3Y@J7]Uԑ 8}VUV@~yAʕ+7˪| \fYQ'Ů."DC;𕭏Ww(+-EE ΡFJBBо==Ll m~A>!0hlA]5*GW8tvqv#} ,4ON~d}ɢ !rl4̫vĎή`E..-^!&;ȥݻ9n65C @{7vtz`>"̢rzG$eXi'ā?H-Bu7܏:P}0ƶ'ZrS8հ-"jnYt:kr ^Q #,% (l)b+). ~>@:\YYY{Z6'7O yF @ZZP!1@PDUep2]qPF `Iё:a'߻7*A >r(888nA^68*G,EgɀbrʤxtpIH# 7\OJ?}8]# (QI45*@S{/vC7B5kg^>]U>SkRU]RBH) !@*"RBH) !@*"RBH) !@*"RBH) !@*"RBH) !@*"RBH) !@*"RBH) !@*"RBH) !@*"RBH)bwpM7 ڽ:\IDXD͜9=I 7fYc>޿,)Lsss ƘDïد}kRnB2e9s*f?."77f26N[|=.-7"vfol-jEYYDU"vUAU]"QdZȼ7r핕lo vnB8cUUIBDPf*^{QTc$\x677z?k֬Ns f͚cs'2̙W\qޛ<':$3""8hll<'c,^:\"[|9 7553P546^l8*;:~U`cp:@"/ ͅ^bɒ%P/֧O1<@%$cL:妦/21'IrM yDt yS1wM:nljeD l||X{z$Mvͷ`13GTU5U]޾twXx) \@CAT[ZhoYOly̌\g17F/0777Is`7U+"p]RUUu%Kf:Y+Dw0,gysEGqĥ m ;g$I Iy8AEID&"0-[@\JKDQYY%KZc֞("H"(|Z2wyfE$ 83R=$Jfr{|G&= :3C$ȎVnax1h bEQЪ1޴xq|{QTz6sgmL)UU=PlE? DT|QuDQ =0l믿_W{a׌?f$I/ ̌L&s5 @K'gƘJf^=s$3Ë8w֋j}EWCХ*dɒ|WUp޹o1!\. |HOZ`~LkLq;EF.IU՜aHD:8& x@|~<e}p9Q9AT/dq gfOnjj:PUc$:$?U?'/L&3>u k@sWν[J4aT-a$㦅 {ی1za#"9s3*;wUgo$kI/i ?wMMMykW(Q"cs (= {lD8cٟknn^֘еynK8AMǥ\i]rϿ>!sv>mCN64|i\|>T4T*v`Cdkm9U0k֬jƘZmnn6J4y}~M8>D3zC$/깍W744mhhxs…8UE[ E'_è`"R:@#3gIp E(6k]t=I:8dȁA "XkGуWJ. /@ׂ xS/d㒦'C>T;jT"h3k6 C3sDuxO1; /衝Z jjjLy@""hr-$99|/V~-[,͖kpw/7R!qE`ޯD{z*%qj=_zU(XD+*)tQ# Kf@zǝl]ZIDTX{Q֩c'A֭!WF'Ϲ$ AiښCyu $In >qNz: `5֭!C,uv|1 ?^z&ݛܩS`Ck'R?òKӧO S;ׁgXc{d;W477z笠88 QNUy?ٳghsAϾv 7LUV S 躙3gГɧMvd2_B)(l,ojj=SU"gjjjy{4 ~p |3Teq@G'z1fh1֏(766N/M/Z$&Pn UT$&ꉨ(rޟظbwuknn.~cƌmݰDZ %ϖZ=C)niXkm1ؒȃHjGHeMnhhx( rMyYg@3PDP q|]ôiC9jp l&d2X PV?*iECežLUJg.˿뉉+^oӏ%Ԟ$}/s}O7!;Qx1TQ"!Rfŝ[[[p 'JXÄ{[+@&zg.ts֬YW>ƍ'ccA@ TU- -mll1F^V e˘P2Ca~D*[ˍ="dF{@Y#[oT@AOrK9DH OsW=+j'% JUE{|y 'p)9ݼᚵ#reUeL9'Dt ߱lTBf^Ʒ.o,{Ot%aéJʼnLzhi-#ꆓ t\!V٦Dq5KFjd(a edHN `n>|Kh k W|#C"?d{v|}$џz? +*ր"=sh09W7 ۈq`ah5zm<={U`{{3*n_-Qf}6^0L% Ļj>uUo3&^0聽}ʿ:ϷV -ur^o:u. DvBNw.;F 'Pe+Atǽ# PG^PMBq<SZ[Nrԙ \)cn9>aSW G9R͌Ouf_N+]+k'.%8tDMN*qSF ]Kq^\wJSRn"n70 W>q ѹQ?_7ֵ.o-qe m֬Ɩucd.*X|3O2نz ƨ^pMKmݧCç8ؘҚWtkWk ̮ f=iL4*d `(_SU u[ ei]Yc>9Ő6924AMw' ѱ|eqKV&=j}~y,x'^p<M?{ LzO+Y{~)u-uWDSc)lj[=v5~s:NFxQ,aNN%f8Vm &vC[V8ޓL2AtS}+ߌ, PUe"d`'in`w"&{IDAT]JlX! ly|ktFf&2g2J ;yh->nG-K&N$B.nyuG^E+ƬZ\~Omݟ Y}$v2 Q^Tz5v/?j0uy C(PF<^ެM$ˆu zuE@VQǜZݘBվo8@ @*x`x"G/8Q_şnS;a"3,(RH`csW>adi&isgcH)I_ O71hf@a@^exm"8/+D %pg ޙ9Dd6͛G6aMvWćMD8$MW:mu/h;2c@^+D%Ql*:{9AsQs!" (F9O7ObmF2B69Yz\qĊUj6eޜlamy!p%\6 D{?ne]P.^0ԉ$d9<&%B#`!.UdAgk{sM:5vVWa9:X#8"xô"dwlK[|(~P)u(`Ʊl8*2TTOi! ʐ"R!5wvˋS !F@q%_y^W :ɍL#AT6P}3Q]>,Ү]zl=SdOŬޛ; ~d4[OBAnҚ)o*)?}3gN0ٳKw5]{{{_EWB5Ka%"+"DDDUZ%@HDTҿIՂN$Q"G9Iߪh;n6UdfyU\^i7l?cw{%nnntttdv 010PQ8 @N@\.,°pλ=vag BXzL'"PڡDPN"Q;vjzBխ]\v:` 9\}sc1GH(GQUCT:xvz=տt]c UHAT\}] ]v|ֵ~蒱Pvx*J<3?{fyZik{ʻ²e2mmmUZd8L~O1Qul6 Uw^#Ц'uݩŠ6UFm٦D[Mfe(w!΁@|x1;,@5;Ma $ kuCDAquTGUI/H5P C(f03c00ւ$I$mY6YQ81"R]]}ҤIѻy{%yUes(AQl_:{(: @[h.vUm'vUU[ƹΘl _n;q4g6l0|z[OU3D5DOUU*"dR> T*P¢L&S^:!mcDgU}E Kyڛ d3ZKDg^ep>Y=z}^U۝=g A1vjpԁzN6p\W p G@ K0ށiABZyCAP8C@&*CP=#t] 4}a ٰ;GDxJ>,_“@FXDBX$!k"EHqaYbVabJ0՘cVL6f3bձX'?v 6-V``[a;p~\2n5׌ &x*sb|! ߏƿ' Zk! $l$T4QOt"y\b)AI&NI$R$)TIj"]&=&!:dGrY@^O$ _%?P(&OJEBN9J@y@yCR nXZOD}J}/G3ɭk{%Oחw_.'_!JQ@SVF=IEbbbb5Q%O@%!BӥyҸM:e0G7ӓ e%e[(R0`3R46i^)*n*|"fLUo՝mO0j&jajj.ϧwϝ_4갺zj=U45nɚ4ǴhZ ZZ^0Tf%9->ݫ=cXgN].[7A\SwBOK/X/_Q>QG[ `Aaac#*Z;8cq>[&IIMST`ϴ kh&45ǢYYF֠9<|y+ =X_,,S-,Y)YXmĚk]c}džjcΦ浭-v};]N"&1=xtv(}'{'IߝY) Σ -rqr.d._xpUەZM׍vm=+KGǔ ^WWbj>:>>>v}/avO8 FV> 2 u/_$\BCv< 5 ]s.,4&yUx~xw-bEDCĻHGKwFGEGME{EEKX,YFZ ={$vrK .3\rϮ_Yq*©L_wד+]eD]cIIIOAu_䩔)3ѩiB%a+]3='/40CiU@ёL(sYfLH$%Y jgGeQn~5f5wugv5k֮\۹Nw]m mHFˍenQQ`hBBQ-[lllfjۗ"^bO%ܒY}WwvwXbY^Ю]WVa[q`id2JjGէ{׿m>PkAma꺿g_DHGGu;776ƱqoC{P38!9 ҝˁ^r۽Ug9];}}_~imp㭎}]/}.{^=}^?z8hc' O*?f`ϳgC/Oϩ+FFGGόzˌㅿ)ѫ~wgbk?Jި9mdwi獵ޫ?cǑOO?w| x&mf2:Y~ pHYsaa?iiTXtXML:com.adobe.xmp 1 5 9999/100 1 9999/100 130 1 130 2014-08-05T15:08:65 Pixelmator 3.0 fWIDATx] xE$!'B8]E\A|AHUIaA/"{`$ӢI;q@, *0w,Z(Gh۷6ъ+hɒ%f0~}z^+sNj6KW]u%?pM;LaJʏѐI/$Sz:H.Y-<%+4C_%vFe$)Jŋ %sZm,KdLLL3N`OkȈ,/W˗ϩmGϩw))]w]ZQ^|e$~w֍f58䆏:%|9~%4)1&T{b #Hr%i$㡳wy!olP2b e.\UX^^nL~.3UdK]|.l:=:i*$w)`=F1(̓t,{u^Fʈ e!99M$;xKޟ^,$(Z'bڐiժU|.W^]3oSc j߽sI&} dڸq#=6=f Gp]}մqzhꡃ"xAw21]\Eq[šC[ǵ%1v(//FR2C97_PT@֫F\c:g!4MjetjYLnU}Ul*Wf҂_Aj˖Q۶mڴiOץ,&Kmpc9'Fلo?+|rA2pUJdIEl9LgQG4/K~ KSRRdʃ'ద&Y"\3a^X$Bbfb:SUWlݲGOzI1?ϪRyU^Fi6&9'hO @+c& g6ig{//yG܃V>d^5߽;kU\= _UQIUVc(g09CÆ=B2ԢE T\TLǎQ?0.ՋB{vR N8bkoiP,L\S23Cc,`U@>GE?N)EEU윯x"c{x8b D:Z4ٻwatS_y;@AA6%'O&7UهΟd~ro"~$;W?za^2,4cxx\)@ ݯmVQ\d4=vmUqX9Ev߱SGزy3=9bBJO7Թ]_k71`/#S?vG"i,Z2gY>f/.=& xR)/*Љeb]Ӈə4&(?tm>{JxNM䬲)~՞3_Le6eP>3v൓,;<z`N| w/q ņ>nrm rQHWBsYul'Mݶ}Ș=_E,BRb⒒I 9:a}nUUU粦Ν{hĐWXʑk!WPOW\9oqD8zxe)WhlvzDwNr2S3P#U:`WM|h945^=9"*n-*Ն 9A{SU0 ђ Ax=B' vj2t k1ErnX_6 )OL2s{[-(\/>q!TomU-^`]m]lY} Ẁ;X5]M`Hij{MkxYKΝVXZp^qXr֋Vb $e {|5J! y*9d wr[{,4 ѣ7nߕhOg*SY,= "pAdCbl˥_}9#?AtN Gm~G~dA^#چ0LHC{ɤb>ǭ~>@;^51[U+eε¼ܜ1bީ@:"e;׮Rj6drij4Z W(]}e+Uw?2j# vEvUWĐbƖTw ]!)rtд਋7龷8F&ibyʐ!V⇮MJt LCPޜʙl]DKV6O0Yl+$ }PֱSߵk#Sgظ5k%!(q8h {͚理eATY'pi"?x5/pqiPslM$,aܜR秠9 NO۸_0f؉V:O3qfS1H+tہ+bJ"fxo^_pt2xםxM\גfHNi[cZ|f* u2S$OLJœF޽{X_v}1#BeE.U5pwM!D Kdk$I+Ad|'EFމh{-Gs8իw u[||8IKI\,Dxu0N8jqY=LkY0gC&*^ USݟ-X3Pigw/dG*"+ p5<Akzݴo-G>OTn2E %ЛJxO ߛpr '?k'@nosBX2~i_eLe:c|Vخ3kC8[] ݑht?;<+q~Fź]Ӥ 8kC<@z:Q2Y{Fx[ ?*šK38D u:J?Q#x;Ê1\r;&k p+[uZ >nH3''gM0YHz"6vq=<6b3o;qEz7F4״td1=1`x6jԤ1~vj]\O|(kMw2YL@~ַD7u/Y05Ht +AІ|z-叴p XQ4M윆uv"Tg9Xw!G1}~`jx*ƵEXIfiĈVi0xO@gcroI,yހTi)⏿$݀7{h?o +zlqNޕk|mU_\W?[ua# "wDo|%.nP*g?TZf ={i4}R4 1xܓtYNĎ"|'v4]7aO@.y'%fu*]~1X`J6 n|7}~fڿA8@ /_$RSd.=Rt"L^E`_x|WDD )WɊ,A8t[On46%e]Pwegihh"r- oq톙,%_*rV襣ٮ26sUD>b:F / 5@؀;ML`@!&dkn#V{͚Ưʎ@O{SEϘ&L͊U.3rc-2'~;%Kmu:j,ZՁѣMOtd8nh[ݒ)ohc ())xV ɬPгg8ӟbb=u71M>G]h͚>,'5>~!4̕`.9kkuL" řX]̔*5IcEL*`Ъ=N̎UhBW@#{F8;9Yıۧ!٣Y=~ =H&u)x.N!++pd2@tnn%y M3@ Ϲ*=9=:=c~>s[@M:@V<;l 3 pxv݌ui `Ow f.l0~;۽i I ^6%/qٙ`й^pW8lOa."c%~ aGoӃS^oh .9ni^YU݀/_79}|K8!iu (jkk""b^?2bpB#CSyRw8Ȋ~⻼G |bugC]ѶiSfX8|1=p×l%3QCbԫLmD_8+A3_^S l|8i'- ͝t 2 M)+܌gv}> u"|{H~mQF ߺG7]Nq1b\h{JIq1r +a;%|7i}%EIDATxylof]ۻk]6666 %@P)i FQMJ*MD"FEDJ(ur s1fYμ}~5vPBj "j "j "j "j "j "j "j "j "j "j "j ,![z5͹ Vw7VI7,|30r 򧞺s׮Dnץh~f&#VOk g2;%m۹3?T-*I9ҧl6RV F{9 z]to:|Pof%~{K/E<Np b5\#N}{h{{۷[o9Pk{{1@x`Ui\G* ™?I@t/Zdr8˪lt8}"+--N0efu¦b%UŪ @\1vtn[x9)!a`BQYCZYch(eZr\Lj19}ZEk3] Ο ѹf9'g6 s!z+\seWّ̐A |z;ȨX5M R UbXy(ġ*J$q(Fpf  3KJp_Uac#eXҗ./Y°,30IeU,ǤƃX5\`,  *1aM&瓖 .>^RPPSQĊ>,t j֭٫ViǃnXU]>V)xlhA 4zz<*@JqqLCҥ߾tVhoTr$8gO.SX=HokG#|̕+i8۵ׁa4j `L+-MЀUuSO> 6MM_76|UKAAbBŠ#0Z IS6 cbE7R0w^]p݌9צJQ?~cG[o,bɏ&jCc4eY!EEr(nj}.W۶1 XgZӏӱ)X X1v!ekY$,ϧ'tXUSq"tKjI`:;/ZRQ>q뭷~< 9s> 1[\W]]!r8<*o7ef%ma?_ڔd}c`};B&sO~RY_Y,!%)?@ \DƑ/`;^~9oFF\E+|Z^~-`3UUFFmO,~9VךFY?ȓO%_rXU\73:]7 5h7w(v54] ḤdR {,!RnkEhG` 84`<~0:]%mat8ii!zkEu=*p4B˕ZR2>5y3g&U B6Un߸Y!MMc==(XQDwqoaJO]n/]|R:98Z7BS)6A1 (˗_'x-bZ_ .VY$/{~߾C[~? _,a0nŨH«Zah*uC)/^sg૛Q_###UU%v⫯%e|#-ٟv[}JJ٣V N,Ib61Lp7ڿ@_#szy^U? *zϺΊY`Д]iSZi)8 ͖n1#ⳲaQ]b-[zyg@`r,_^pE['"d_Ǵ55 H0; 6o;wN7>1fUTd^m_NY <8òј9'rey(g9'G!Y'G,OK㳳u6 FFFAЖ[朜c5Z_XiieYeAf˺{ \4j̅8O' R^( .CK Xk`TZ-LJeݑ53l35Gb  = Y*|EШ-{LggE|hqAV* 2P"N x@4X ؀Ҁ NC ΁Npxx &0A@THҀt!c b@.7 8(C"h=*Jr0T :t&gayX փaa 8^y Kx P$ 2E1P T *%DmDJQU&T;u 5zƢh:C5"t9݂FB'0*ab0|L)sӃ|b4>뇍&cav;q8g\qq1G< c||._ďg2]#!!d G 1 QOt&[e&bD"9HIe+'وI%;5}; GqP2(;(uK'RT)3)GjTTԠkiJR7_ddyq]TO*zC3 O*)(D(d)T(Whz4&-VL;AKUܮؤ88HMTԬtG2][9Eyrc2*UzT^-_䴈`щETaU#uGTN ]R{NSwSOVߣ~A}BᢑG ݝJ/w'5U54E55gµrk {'u4tu4<%2tyt{u"=Wg7?212m5d0i*nvIL0&&|*!SiilYYks],l-R-Z<̵l|kedŶmMdf؆ks-6vmW;{;]݄}}C(b\q8x8lr81_NN)NN/.>xY˙|y؅˰+˵ǭm=ٽǴ/WWww-DI_[u~]~CL5&Yǜ@ (xhpI{ ;RݥA ;q~˰˂U,{b>7*>CGXqppQxWtDlD]tWdIpyԆh\LDLur{]"kՕ*+SW_%d&.2> +UŚgWO=/9n= 3;P<9qwϕW{T&/PtJPJMljdjs>-. _^:kX/^fIa:J_ޖ!"L̊̏k#֞̒g]6ޞ=::뷬FhcƮMڛ6m\%eo%FnmSۜ7 RmN1oV)VhQXZ]t'˟~ݑخNNλ\wՖȖ䔌ݲ`^-)=OolIY~;)ߩhT^9}s`Cj }9{}TU?5riӇїe,Yxs&|&nXb̫?e|m_n]{#|36ﻦ|H03]Qc'Ƨϑg~})j[Gi5PH '$J4n"Hj)yoأ{;6T*^nZR'X[DjEI; :4;;:;:0juGB+{߬4 pHYs  iTXtXML:com.adobe.xmp 1 5 72 1 72 363 1 88 2013-12-04T14:12:25 Pixelmator 3.0 r3IDATxTSWoOUQ*NkjNnmf;a;N;m:i)*{(3؞d֒nǤs3WEa>%HIBniB^B {<{{w}{x@H ,aJH J-$'$|vX  8ZaM$Ђ@H |Qo6DH`x 666 &  $,BHu X%czc=6oDܹsoQFH L! &0RڥԱ1EH L!&^[5G$$ .#0%K#A|$'qU+@FH`z8ƀ&"2H +.]8ȼ:8X$p` H pBE1$PV1pX_#HÊ`Jt"$XA4Kwؑ'ޑ 0S.݄3s-/d}{{o;57q>a7Oռ7Twlum"[.n#Z3`Ka\V9,߸#O|;|&5DP(fJ`Ͽ]b_Ph4󫲚RJFL7γlۻQ })9?CV>7tuk={ʼPO%,Y'kӍ$%>䢾 3:2ĎDDGBI_7!,u lœ#/Rdɺh呡a,fN}2gpxdll,C1"胠k7o[אA@OEؔ+G"˄j06q[Yo$GGp ~-lJt=>4@?q"kۙE7CC1 ûyu0!$0>?p:0r8Ͽc鿫W&qG.;MU}/7DNjr嚚%,d?3#:_X:~SZӃv ~0G?KbC~I`@p8H?rhh5D!" J᱈hР1Bo-(n#L D+Ϥޣxg#;%]~=9AH`^0LDR12f e8@B4W(bH X(A8|ؑ@2֭[!@H` (L6% w@~i( @@ 7%@@ >;ZH O-H&@hAp $> ÚH wωĚH am&P 1a *fjm5D$$_,b(d}x1y^:wPWҥwPCa9eJ\vanHI \ywa--M;ACXm)NHxknK/<ذ/5VV.kNj+)hMϩoǥ1۸w[DT>9{ImwWGm#$FնR'cBSkmz^dnns[6am0͠ڮ2\NtuY g!5`E6YS{&ڞa鴛(q{gZ#r[nXg575br'GO&Ս_ݶO؝tZ~vf Som4V(@ٜ GNN53QeCThUrv U5> puqt(HdT |kJ*aTY7N%Bs@RtB"67[Gv*%/S弴9 ͞TSU^UriI`l6G\%bx odAUy$i'.|n4 ;uS1./D%J;=Iί,W啵̺;3V.ع3R#cېlPLLi?Tԕ$&|:#&*9"'v{KwĤ-kʜ]F1{ʺz<|2\ա )PPmQ{ځfPe شEjQuCÑ)yZ ,3@mvnI؞ҭʭ?P](*I׸շw22TLUoWǝ3_ߞWS7p"2|䅘թ D Ǐ7L<ڞq'ܥAxt'COo]^b>0pNj&&O5qO?v'!՗.;݀ݳ}Y \|ݑ;h簓S|.~ f%/>r -ZkIvuSlsT6g'y.i⊢; b3Hq} P']6%$r6(9%m"5OC>xMyzv*;r=BO,խDS_ٗW{Z^\s - S{ d"(ғ̃/mH22IfS9h4"4DY\\+=WHu+kR@d Vz&=W$OHMFӝLM_^8|HG ¦ۧBdlp=Z\cٞ,H$p7L"yY"!z&<?+?U9~E2 W lcgIH_;oh߾ =pڷ29%-~CO/ƨ͙f %?j| ˝!+Me[[!HdRAn $j_WYKǭ2, wtP]_.IQjҜ j@vɮ8Z>,9d''xi%|kd RwPmWhzz1h V$~@YSݱWʀы2W*Ȟ!tjr֘=퀶9q NŋnlD%.IzuVL! & ^r XI6w:Y,#ZY@)SUp&lꁐ1c{PadL;yB]vO&U›F1C1V"JwO,$g*050fZ_uɷ@P]] N+z~ЌVdVdfeAfի#3{ܼXFSew$Ut8`hkM6Vqb FWa=+ӝu_o[.tG뷮m˖ 6P`jK|񙕉\Tb9۞~?vpJVl#t˟>7dpU Z 'PAZeE;u$^&K JweL 0}`*월J ֢ '/ Z8sU E ̬&/@0qc۹$sXw7+8l41%j ]ԟv?‡2&'24E@O!Cy=s\xO@w<}ǫU+\=7L<'>"])͑siSha6io]2qjZU{;D\xRs=n䅩Ie:lW귪tMiMjA2 S= N9w;뽏h Onݗ^_xoc ]hAő!'dcH`@ 2w- > {@s@<>wG#CH`v z{KgWQl B-^z-WᢂyH LNnruΕ`5`DH LKW1"B$@   $0- "B$@   $0-wX\MIENDB`django-rest-framework-3.3.2/docs/img/vertical.png000066400000000000000000000272521263353514300217670ustar00rootroot00000000000000PNG  IHDRX#Hl iCCPICC ProfileH wTYLz" %tH)ATB-@hvdqVPVt邫Rmۢذ/",>|wϹϼsۜ@d ) ta=2*@@PX4kP2e>FqY7  qةDj.[ L@ڙ1 ,/D&@ 'y.ӄ#&dK3 HD>d쑘&Hae=?_sE ii!~HOD, Y`)> -xә -(9uI8;9Јp=<X&XOsx $"xK+H̓ YKK}_o:/T|~s9ӅM|s!Hₔ;=%I-X!sd xtWsL>Ԙnafn XsDerG"MhR== Ukl0c>ZaJyԀ&lpPV6T `=A! rP:p48.A0^I0 f A )AdY@ AP %@|HBP T_N_+x P$ 2A1P@T4*%DmDJQըfTu5@}BcT4mv@lZFt]nC_DA'0 cab"1 LL>Si\Ì`X, `Iu"l ۏNp8%cq&9m#W[x>>_oƏg2=!!d G] QGt$[ef%;I#-'%6HHWHCOd9!ٝCwkw EBSvP)((RRL)& 6R :ҮҫsKOHߔ!ʸ˰d6Tt LReeeSeddʎt<8ryr. SQT-;MJ=BD3 O*)X)+d)T(Qh4&-VL;NOHu"틚^Aq"W@Eg%R.vheCʙ/)O,_찘`ŏT`C`u*UnLz T^PP%Q;6NUwROTߣ~N%]JO/'5T4|4D44f444s5[4jZZ{z&յk7j?!0tx:tzu>FnmSc5=ѧ;կֿk5`$0eZ + oF6FF1v|jIIɐ)tii%KZһ䛙Yr]o- -w-)^,;,XYqZ=Z[ojck#iն`3E+v;7Mv>ا!١alR#K5YNN?; :k8hp\j\F] \\\_ Z>ۻop@yx{xyyy{>Jj^3TeI_[ ~!~~ϗ..}w? @fAzAkN-.Z^EyjꐆPaap%K"7D^RJEGDO\wHuL~z+V^]*eՙҫYObb#bbYլ8f\e$۝:rK%c yμRD{by$Ɂɵɳ))-N?qښ5#A`pڽk'~š4(meZGfgȒg6ޞ=::뷬FhcƞMZ6l\%yof%FlSۜ7Rm۪~Dcv+\+4+,-R.Oe?WlS|p'v']λJdKrJwnCS{ZV#,[Vֱ_{_y**Z*U*W~89p*ժª?'j_ ? š຋ * ōpq)Q&͇Zh-1ѱz'uNVR[ ڠv^`GTGogOCW)S5NWQ8S|x6친sS݂ {V<y.]r^sWjZum7of[kM_Mۛnu/?{;w.e޽~/^bp=LyQƣǛ`1>~<:׮o~ߞ̦ XB֜@!-Z(QWX y;9b._ 600 220 #a" IDATx_LgkVMMJJSU8[ Vkt$'{T$!7EE +C*mm&!j +Q&ګ4Nq}ƄPƮ1| y^l lVm։3o@t@M-@n@B~@6A/?G @ᦾL@ g@`S 3y@@M-@n@B~@6A/?G @ᦾL@ A$F򬮦iVܱٱH@{(0,rźY@@ ü%svuhH)7ucؕ}ma[_{+R5 I ZB Z,gʫ8yB)jU+椆Le@'`():vmv UV{z䊱LCe=h>hP}Tc/7ˎjG@ IF_\EaӇTd<U+xF{ZNadiOK[z9ygqL2}ГhCK <'D=2bAojVF>+=y"ksオY2/QY?Eg}5@K Tu\-ww \i-s"Z>ǞfK bs=U6@E&K/Om@H@&0]c@.Ѵ@ȼAyszD"0.CAȼAyszD"0.CAȼAyszD"0.CAȼ_611 fff2?DzD@-[v{qq )cEQ^}UMS@ <}4 Ng[r-p8H _NCHV@F ,[O4()hܔ ( +ypC A4 a_!Ƈ 8 @ ~ Nf)Qunnl[I| ¶Ñ{OowX5$@U@M".3+;zpײ2/xm;j=o`YTA@ t0`GB-wAU)kBטj@t-`L&\mڃ>ϵGJєylO~xx4<'KvWܫЗ=_ܙV߷ڽU  k) UX%TN'K;5eiumkwFި7};oWojk7o_{G'[ 촍 H_{÷-7΃Vm{F;އfʷ7mSqk"M7 Z/iKG9uW2şƎVz|h6}If"0Aw@/ST_ϭISo?|ؒMA@ et\ݻ`ޜɺqŞ#wM?wm4*LQaDr@H@P>qx LK2Y 7o)yx{?ɕprrԄOUUXaVΙ dPjSSNMq B$[Kieg30Y J @ K3gMO Y(@fEaH  3gMO Y(@fEaH  3gMO Y(@fEaH  3gMO Y(`(l255gH ,xe/yi(vؘl% q@uQ el_&B333ƛ& kA5[& HЭ 4 @RaR\TF50׮(AHJ L &@e> I IqQ@ \@ )0).*#AkW $%@&Ee@\ s2@¤ ka]Q A@rM ̵+|@3R; #bI55"k@ (Xk6 d?̫]r;7+O_il_i#]َuW` 0tkK<[gNlrfz4CMbשٜMc, Y-`(3P5U55t%pDml8"dVBYM~=DBٛ΋}-묩9#r}QVm1 5&Zw7_ i][g׈}UY @Ia ք `#M3.7^=GZ:ZGv}Aۈ.ހQ>,uut4Zg/PYy!բduTםOgC@@A(JrllS ̈3i, džO{ܱۛAg8[O7yMn^X*]uH^DF|BT} Bm!ni?Qjw,z.e%j|z! `L [ŶB\i)(g7v=Fâ}J!|M g,RmbpiĢY3*\6|*`Ӵl5X~%. J>o ŏ@IaP_[G? 1wH]ې|/ ػCspm^`oLg-2rouۜwpsוvypW~Yժ|5pD+Gx3@$gl]PƐt)_,|}~zI8|}>=V>Y-|Թ}au^3eF骰 kYeп;j.w%=m-mrX3# efˏk'ZDZ^-Vj%@`4*=p@,HhO! Ag!A#i &@Y 9"@ȅd  q @9r! @jFD(IB@ [l22?~(ʫjij" aOA٩,4tkT)Iw  Ȩ%cP%R@`d`% P|@5 ה@] +@T \S^Gv0ۯCXSpMyi@  }$f'G:7'm ޝ; G7 D ]Ay?|~E|wej˞Kص^#_@HW \ }7zj>?eCJzH pvv6//ϬOdž s)Qg)Vw&bH7'co=f[ph?xgu۾/n"Ym:gx_ C;̡/{o7hr{Lm9wxt軁FMisź  qtYfnN2ӦCBZS,S4M?ww5E[\bس5"I 'x ݓ_+?ܺg=ӓ7ypVh۷MESVVyhXdCX&̙?q`=l3=J64 Rdƻ>^YGGӊ,*~Vpν66&6.5@ȼ`0(cx׆~lnbb" o dX@e / h@ؐnnș1h@  a^[f `@ 4D@ s23@$ Aז!  Q@ wܽ @Ah* +@ef BHTA]0w-3C0 @@  @ {m <uξ+^v bib-QW ^u'E 0y?~ŶM&~zK9¥;#]mKKkXFjvuި>? ^! %"_f-wƾ/Czw8EaVy-ZM@X?i/~ l*UGm" -2y3-vv5jZ{:)B.nQse,cܹS7ݭCXC/h[٥RUd#l >,v]yE>cgTUyw󛱱nrG~7vg._??y㛱3zr˃sU??1=([ @v zFveM9:=ni VWŚk9^bC_e< I)da9D0-.O<ڴ+5MD dG%;_K @6i,r3xqW&#%bQ٘cAիi!_D)\!d #Ue.X'`Y"2_>%GWjw.bzoʛc+ND~p' W8(?(j] FHTnUԋ6}Mʣ jZw*#UnOb__E{N4BZ$ʽmŦn~}Q2塗'r@ V_?/..^DPF?nOf^l=C֜>;,UbxcK,WivQsp}a;Yn~(Y_b+tu,JvT^z#}qRSz-ktT+B! @v @}0"la"2VkEEݾQ~*Cϫ 3vn*ȖӖbS+3Mfl;nӄ{/i-U0ᡖ#qM4oXXӵ< ))-J}zMWz}RSP AmE`{||ylg;.ww ޥAHFKݗϺ m) H MA(?8-M2G( -0#ą GEM~,%Foq֫¯͢իbCPj / q" @Pa4,Qk?qU:r\,Ls±-*SqBY[H4~v<-%@}_l(au>:)Dh|XZ,˽ϧ@XoEQU!N5/-DJ rgQVTW m=%X*%bt՚T@@@>>apBˑ'd6CV/Ϣ|t|]^61҃le>a_i X%C)@HQUO|3iZ$5,88',&56W-$i@`iE8[?8~m8]x; @p4 ިGlU_B, dL cA(gd[#@UU )@fuaT  3M7 )@fuaT  3M7 )`(l2==xѨ_tr@nm,C2# rCbM6111 fff^\kAY2 F0k'@)n8@l 06@5 ל@Y @\ \sb:@f0cCXsp͉@ l: @`5'@l 06@5 ל@YFIENDB`django-rest-framework-3.3.2/docs/index.md000066400000000000000000000341021263353514300203150ustar00rootroot00000000000000

    --- **Note**: This is the documentation for the **version 3** of REST framework. Documentation for [version 2](http://tomchristie.github.io/rest-framework-2-docs/) is also available. ---

    Django REST Framework

    Django REST Framework

    Django REST framework is a powerful and flexible toolkit for building Web APIs. Some reasons you might want to use REST framework: * The [Web browsable API][sandbox] is a huge usability win for your developers. * [Authentication policies][authentication] including packages for [OAuth1a][oauth1-section] and [OAuth2][oauth2-section]. * [Serialization][serializers] that supports both [ORM][modelserializer-section] and [non-ORM][serializer-section] data sources. * Customizable all the way down - just use [regular function-based views][functionview-section] if you don't need the [more][generic-views] [powerful][viewsets] [features][routers]. * [Extensive documentation][index], and [great community support][group]. * Used and trusted by large companies such as [Mozilla][mozilla] and [Eventbrite][eventbrite]. --- ![Screenshot][image] **Above**: *Screenshot from the browsable API* ## Requirements REST framework requires the following: * Python (2.7, 3.2, 3.3, 3.4, 3.5) * Django (1.7+, 1.8, 1.9) The following packages are optional: * [Markdown][markdown] (2.1.0+) - Markdown support for the browsable API. * [django-filter][django-filter] (0.9.2+) - Filtering support. * [django-crispy-forms][django-crispy-forms] - Improved HTML display for filtering. * [django-guardian][django-guardian] (1.1.1+) - Object level permissions support. ## Installation Install using `pip`, including any optional packages you want... pip install djangorestframework pip install markdown # Markdown support for the browsable API. pip install django-filter # Filtering support ...or clone the project from github. git clone git@github.com:tomchristie/django-rest-framework.git Add `'rest_framework'` to your `INSTALLED_APPS` setting. INSTALLED_APPS = ( ... 'rest_framework', ) If you're intending to use the browsable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file. urlpatterns = [ ... url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] Note that the URL path can be whatever you want, but you must include `'rest_framework.urls'` with the `'rest_framework'` namespace. You may leave out the namespace in Django 1.9+, and REST framework will set it for you. ## Example Let's take a look at a quick example of using REST framework to build a simple model-backed API. We'll create a read-write API for accessing information on the users of our project. Any global settings for a REST framework API are kept in a single configuration dictionary named `REST_FRAMEWORK`. Start off by adding the following to your `settings.py` module: REST_FRAMEWORK = { # Use Django's standard `django.contrib.auth` permissions, # or allow read-only access for unauthenticated users. 'DEFAULT_PERMISSION_CLASSES': [ 'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly' ] } Don't forget to make sure you've also added `rest_framework` to your `INSTALLED_APPS`. We're ready to create our API now. Here's our project's root `urls.py` module: from django.conf.urls import url, include from django.contrib.auth.models import User from rest_framework import routers, serializers, viewsets # Serializers define the API representation. class UserSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = User fields = ('url', 'username', 'email', 'is_staff') # ViewSets define the view behavior. class UserViewSet(viewsets.ModelViewSet): queryset = User.objects.all() serializer_class = UserSerializer # Routers provide an easy way of automatically determining the URL conf. router = routers.DefaultRouter() router.register(r'users', UserViewSet) # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] You can now open the API in your browser at [http://127.0.0.1:8000/](http://127.0.0.1:8000/), and view your new 'users' API. If you use the login control in the top right corner you'll also be able to add, create and delete users from the system. ## Quickstart Can't wait to get started? The [quickstart guide][quickstart] is the fastest way to get up and running, and building APIs with REST framework. ## Tutorial The tutorial will walk you through the building blocks that make up REST framework. It'll take a little while to get through, but it'll give you a comprehensive understanding of how everything fits together, and is highly recommended reading. * [1 - Serialization][tut-1] * [2 - Requests & Responses][tut-2] * [3 - Class based views][tut-3] * [4 - Authentication & permissions][tut-4] * [5 - Relationships & hyperlinked APIs][tut-5] * [6 - Viewsets & routers][tut-6] There is a live example API of the finished tutorial API for testing purposes, [available here][sandbox]. ## API Guide The API guide is your complete reference manual to all the functionality provided by REST framework. * [Requests][request] * [Responses][response] * [Views][views] * [Generic views][generic-views] * [Viewsets][viewsets] * [Routers][routers] * [Parsers][parsers] * [Renderers][renderers] * [Serializers][serializers] * [Serializer fields][fields] * [Serializer relations][relations] * [Validators][validators] * [Authentication][authentication] * [Permissions][permissions] * [Throttling][throttling] * [Filtering][filtering] * [Pagination][pagination] * [Versioning][versioning] * [Content negotiation][contentnegotiation] * [Metadata][metadata] * [Format suffixes][formatsuffixes] * [Returning URLs][reverse] * [Exceptions][exceptions] * [Status codes][status] * [Testing][testing] * [Settings][settings] ## Topics General guides to using REST framework. * [Documenting your API][documenting-your-api] * [Internationalization][internationalization] * [AJAX, CSRF & CORS][ajax-csrf-cors] * [HTML & Forms][html-and-forms] * [Browser enhancements][browser-enhancements] * [The Browsable API][browsableapi] * [REST, Hypermedia & HATEOAS][rest-hypermedia-hateoas] * [Third Party Resources][third-party-resources] * [Contributing to REST framework][contributing] * [Project management][project-management] * [3.0 Announcement][3.0-announcement] * [3.1 Announcement][3.1-announcement] * [3.2 Announcement][3.2-announcement] * [3.3 Announcement][3.3-announcement] * [Kickstarter Announcement][kickstarter-announcement] * [Release Notes][release-notes] ## Development See the [Contribution guidelines][contributing] for information on how to clone the repository, run the test suite and contribute changes back to REST Framework. ## Support For support please see the [REST framework discussion group][group], try the `#restframework` channel on `irc.freenode.net`, search [the IRC archives][botbot], or raise a question on [Stack Overflow][stack-overflow], making sure to include the ['django-rest-framework'][django-rest-framework-tag] tag. [Paid support is available][paid-support] from [DabApps][dabapps], and can include work on REST framework core, or support with building your REST framework API. Please [contact DabApps][contact-dabapps] if you'd like to discuss commercial support options. For updates on REST framework development, you may also want to follow [the author][twitter] on Twitter. ## Security If you believe you’ve found something in Django REST framework which has security implications, please **do not raise the issue in a public forum**. Send a description of the issue via email to [rest-framework-security@googlegroups.com][security-mail]. The project maintainers will then work with you to resolve any issues where required, prior to any public disclosure. ## License Copyright (c) 2011-2015, Tom Christie All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. [mozilla]: http://www.mozilla.org/en-US/about/ [eventbrite]: https://www.eventbrite.co.uk/about/ [markdown]: http://pypi.python.org/pypi/Markdown/ [django-filter]: http://pypi.python.org/pypi/django-filter [django-crispy-forms]: https://github.com/maraujop/django-crispy-forms [django-guardian]: https://github.com/lukaszb/django-guardian [0.4]: https://github.com/tomchristie/django-rest-framework/tree/0.4.X [image]: img/quickstart.png [index]: . [oauth1-section]: api-guide/authentication/#django-rest-framework-oauth [oauth2-section]: api-guide/authentication/#django-oauth-toolkit [serializer-section]: api-guide/serializers#serializers [modelserializer-section]: api-guide/serializers#modelserializer [functionview-section]: api-guide/views#function-based-views [sandbox]: http://restframework.herokuapp.com/ [quickstart]: tutorial/quickstart.md [tut-1]: tutorial/1-serialization.md [tut-2]: tutorial/2-requests-and-responses.md [tut-3]: tutorial/3-class-based-views.md [tut-4]: tutorial/4-authentication-and-permissions.md [tut-5]: tutorial/5-relationships-and-hyperlinked-apis.md [tut-6]: tutorial/6-viewsets-and-routers.md [request]: api-guide/requests.md [response]: api-guide/responses.md [views]: api-guide/views.md [generic-views]: api-guide/generic-views.md [viewsets]: api-guide/viewsets.md [routers]: api-guide/routers.md [parsers]: api-guide/parsers.md [renderers]: api-guide/renderers.md [serializers]: api-guide/serializers.md [fields]: api-guide/fields.md [relations]: api-guide/relations.md [validators]: api-guide/validators.md [authentication]: api-guide/authentication.md [permissions]: api-guide/permissions.md [throttling]: api-guide/throttling.md [filtering]: api-guide/filtering.md [pagination]: api-guide/pagination.md [versioning]: api-guide/versioning.md [contentnegotiation]: api-guide/content-negotiation.md [metadata]: api-guide/metadata.md [formatsuffixes]: api-guide/format-suffixes.md [reverse]: api-guide/reverse.md [exceptions]: api-guide/exceptions.md [status]: api-guide/status-codes.md [testing]: api-guide/testing.md [settings]: api-guide/settings.md [documenting-your-api]: topics/documenting-your-api.md [internationalization]: topics/internationalization.md [ajax-csrf-cors]: topics/ajax-csrf-cors.md [html-and-forms]: topics/html-and-forms.md [browser-enhancements]: topics/browser-enhancements.md [browsableapi]: topics/browsable-api.md [rest-hypermedia-hateoas]: topics/rest-hypermedia-hateoas.md [contributing]: topics/contributing.md [project-management]: topics/project-management.md [third-party-resources]: topics/third-party-resources.md [3.0-announcement]: topics/3.0-announcement.md [3.1-announcement]: topics/3.1-announcement.md [3.2-announcement]: topics/3.2-announcement.md [3.3-announcement]: topics/3.3-announcement.md [kickstarter-announcement]: topics/kickstarter-announcement.md [funding]: topics/funding.md [release-notes]: topics/release-notes.md [tox]: http://testrun.org/tox/latest/ [group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [botbot]: https://botbot.me/freenode/restframework/ [stack-overflow]: http://stackoverflow.com/ [django-rest-framework-tag]: http://stackoverflow.com/questions/tagged/django-rest-framework [django-tag]: http://stackoverflow.com/questions/tagged/django [security-mail]: mailto:rest-framework-security@googlegroups.com [paid-support]: http://dabapps.com/services/build/api-development/ [dabapps]: http://dabapps.com [contact-dabapps]: http://dabapps.com/contact/ [twitter]: https://twitter.com/_tomchristie django-rest-framework-3.3.2/docs/topics/000077500000000000000000000000001263353514300201655ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/topics/2.2-announcement.md000066400000000000000000000237071263353514300235110ustar00rootroot00000000000000# Django REST framework 2.2 The 2.2 release represents an important point for REST framework, with the addition of Python 3 support, and the introduction of an official deprecation policy. ## Python 3 support Thanks to some fantastic work from [Xavier Ordoquy][xordoquy], Django REST framework 2.2 now supports Python 3. You'll need to be running Django 1.5, and it's worth keeping in mind that Django's Python 3 support is currently [considered experimental][django-python-3]. Django 1.6's Python 3 support is expected to be officially labeled as 'production-ready'. If you want to start ensuring that your own projects are Python 3 ready, we can highly recommend Django's [Porting to Python 3][porting-python-3] documentation. Django REST framework's Python 2.6 support now requires 2.6.5 or above, in line with [Django 1.5's Python compatibility][python-compat]. ## Deprecation policy We've now introduced an official deprecation policy, which is in line with [Django's deprecation policy][django-deprecation-policy]. This policy will make it easy for you to continue to track the latest, greatest version of REST framework. The timeline for deprecation works as follows: * Version 2.2 introduces some API changes as detailed in the release notes. It remains fully backwards compatible with 2.1, but will raise `PendingDeprecationWarning` warnings if you use bits of API that are due to be deprecated. These warnings are silent by default, but can be explicitly enabled when you're ready to start migrating any required changes. For example if you start running your tests using `python -Wd manage.py test`, you'll be warned of any API changes you need to make. * Version 2.3 will escalate these warnings to `DeprecationWarning`, which is loud by default. * Version 2.4 will remove the deprecated bits of API entirely. Note that in line with Django's policy, any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change. ## Community As of the 2.2 merge, we've also hit an impressive milestone. The number of committers listed in [the credits][credits], is now at over **one hundred individuals**. Each name on that list represents at least one merged pull request, however large or small. Our [mailing list][mailing-list] and #restframework IRC channel are also very active, and we've got a really impressive rate of development both on REST framework itself, and on third party packages such as the great [django-rest-framework-docs][django-rest-framework-docs] package from [Marc Gibbons][marcgibbons]. --- ## API changes The 2.2 release makes a few changes to the API, in order to make it more consistent, simple, and easier to use. ### Cleaner to-many related fields The `ManyRelatedField()` style is being deprecated in favor of a new `RelatedField(many=True)` syntax. For example, if a user is associated with multiple questions, which we want to represent using a primary key relationship, we might use something like the following: class UserSerializer(serializers.HyperlinkedModelSerializer): questions = serializers.PrimaryKeyRelatedField(many=True) class Meta: fields = ('username', 'questions') The new syntax is cleaner and more obvious, and the change will also make the documentation cleaner, simplify the internal API, and make writing custom relational fields easier. The change also applies to serializers. If you have a nested serializer, you should start using `many=True` for to-many relationships. For example, a serializer representation of an Album that can contain many Tracks might look something like this: class TrackSerializer(serializer.ModelSerializer): class Meta: model = Track fields = ('name', 'duration') class AlbumSerializer(serializer.ModelSerializer): tracks = TrackSerializer(many=True) class Meta: model = Album fields = ('album_name', 'artist', 'tracks') Additionally, the change also applies when serializing or deserializing data. For example to serialize a queryset of models you should now use the `many=True` flag. serializer = SnippetSerializer(Snippet.objects.all(), many=True) serializer.data This more explicit behavior on serializing and deserializing data [makes integration with non-ORM backends such as MongoDB easier][564], as instances to be serialized can include the `__iter__` method, without incorrectly triggering list-based serialization, or requiring workarounds. The implicit to-many behavior on serializers, and the `ManyRelatedField` style classes will continue to function, but will raise a `PendingDeprecationWarning`, which can be made visible using the `-Wd` flag. **Note**: If you need to forcibly turn off the implicit "`many=True` for `__iter__` objects" behavior, you can now do so by specifying `many=False`. This will become the default (instead of the current default of `None`) once the deprecation of the implicit behavior is finalised in version 2.4. ### Cleaner optional relationships Serializer relationships for nullable Foreign Keys will change from using the current `null=True` flag, to instead using `required=False`. For example, is a user account has an optional foreign key to a company, that you want to express using a hyperlink, you might use the following field in a `Serializer` class: current_company = serializers.HyperlinkedRelatedField(required=False) This is in line both with the rest of the serializer fields API, and with Django's `Form` and `ModelForm` API. Using `required` throughout the serializers API means you won't need to consider if a particular field should take `blank` or `null` arguments instead of `required`, and also means there will be more consistent behavior for how fields are treated when they are not present in the incoming data. The `null=True` argument will continue to function, and will imply `required=False`, but will raise a `PendingDeprecationWarning`. ### Cleaner CharField syntax The `CharField` API previously took an optional `blank=True` argument, which was intended to differentiate between null CharField input, and blank CharField input. In keeping with Django's CharField API, REST framework's `CharField` will only ever return the empty string, for missing or `None` inputs. The `blank` flag will no longer be in use, and you should instead just use the `required=` flag. For example: extra_details = CharField(required=False) The `blank` keyword argument will continue to function, but will raise a `PendingDeprecationWarning`. ### Simpler object-level permissions Custom permissions classes previously used the signature `.has_permission(self, request, view, obj=None)`. This method would be called twice, firstly for the global permissions check, with the `obj` parameter set to `None`, and again for the object-level permissions check when appropriate, with the `obj` parameter set to the relevant model instance. The global permissions check and object-level permissions check are now separated into two separate methods, which gives a cleaner, more obvious API. * Global permission checks now use the `.has_permission(self, request, view)` signature. * Object-level permission checks use a new method `.has_object_permission(self, request, view, obj)`. For example, the following custom permission class: class IsOwner(permissions.BasePermission): """ Custom permission to only allow owners of an object to view or edit it. Model instances are expected to include an `owner` attribute. """ def has_permission(self, request, view, obj=None): if obj is None: # Ignore global permissions check return True return obj.owner == request.user Now becomes: class IsOwner(permissions.BasePermission): """ Custom permission to only allow owners of an object to view or edit it. Model instances are expected to include an `owner` attribute. """ def has_object_permission(self, request, view, obj): return obj.owner == request.user If you're overriding the `BasePermission` class, the old-style signature will continue to function, and will correctly handle both global and object-level permissions checks, but its use will raise a `PendingDeprecationWarning`. Note also that the usage of the internal APIs for permission checking on the `View` class has been cleaned up slightly, and is now documented and subject to the deprecation policy in all future versions. ### More explicit hyperlink relations behavior When using a serializer with a `HyperlinkedRelatedField` or `HyperlinkedIdentityField`, the hyperlinks would previously use absolute URLs if the serializer context included a `'request'` key, and fall back to using relative URLs otherwise. This could lead to non-obvious behavior, as it might not be clear why some serializers generated absolute URLs, and others do not. From version 2.2 onwards, serializers with hyperlinked relationships *always* require a `'request'` key to be supplied in the context dictionary. The implicit behavior will continue to function, but its use will raise a `PendingDeprecationWarning`. [xordoquy]: https://github.com/xordoquy [django-python-3]: https://docs.djangoproject.com/en/dev/faq/install/#can-i-use-django-with-python-3 [porting-python-3]: https://docs.djangoproject.com/en/dev/topics/python3/ [python-compat]: https://docs.djangoproject.com/en/dev/releases/1.5/#python-compatibility [django-deprecation-policy]: https://docs.djangoproject.com/en/dev/internals/release-process/#internal-release-deprecation-policy [credits]: http://www.django-rest-framework.org/topics/credits [mailing-list]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [django-rest-framework-docs]: https://github.com/marcgibbons/django-rest-framework-docs [marcgibbons]: https://github.com/marcgibbons/ [issues]: https://github.com/tomchristie/django-rest-framework/issues [564]: https://github.com/tomchristie/django-rest-framework/issues/564 django-rest-framework-3.3.2/docs/topics/2.3-announcement.md000066400000000000000000000313621263353514300235060ustar00rootroot00000000000000# Django REST framework 2.3 REST framework 2.3 makes it even quicker and easier to build your Web APIs. ## ViewSets and Routers The 2.3 release introduces the [ViewSet][viewset] and [Router][router] classes. A viewset is simply a type of class based view that allows you to group multiple views into a single common class. Routers allow you to automatically determine the URLconf for your viewset classes. As an example of just how simple REST framework APIs can now be, here's an API written in a single `urls.py` module: """ A REST framework API for viewing and editing users and groups. """ from django.conf.urls.defaults import url, include from django.contrib.auth.models import User, Group from rest_framework import viewsets, routers # ViewSets define the view behavior. class UserViewSet(viewsets.ModelViewSet): model = User class GroupViewSet(viewsets.ModelViewSet): model = Group # Routers provide an easy way of automatically determining the URL conf router = routers.DefaultRouter() router.register(r'users', UserViewSet) router.register(r'groups', GroupViewSet) # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] The best place to get started with ViewSets and Routers is to take a look at the [newest section in the tutorial][part-6], which demonstrates their usage. ## Simpler views This release rationalises the API and implementation of the generic views, dropping the dependency on Django's `SingleObjectMixin` and `MultipleObjectMixin` classes, removing a number of unneeded attributes, and generally making the implementation more obvious and easy to work with. This improvement is reflected in improved documentation for the `GenericAPIView` base class, and should make it easier to determine how to override methods on the base class if you need to write customized subclasses. ## Easier Serializers REST framework lets you be totally explicit regarding how you want to represent relationships, allowing you to choose between styles such as hyperlinking or primary key relationships. The ability to specify exactly how you want to represent relationships is powerful, but it also introduces complexity. In order to keep things more simple, REST framework now allows you to include reverse relationships simply by including the field name in the `fields` metadata of the serializer class. For example, in REST framework 2.2, reverse relationships needed to be included explicitly on a serializer class. class BlogSerializer(serializers.ModelSerializer): comments = serializers.PrimaryKeyRelatedField(many=True) class Meta: model = Blog fields = ('id', 'title', 'created', 'comments') As of 2.3, you can simply include the field name, and the appropriate serializer field will automatically be used for the relationship. class BlogSerializer(serializers.ModelSerializer): """ Don't need to specify the 'comments' field explicitly anymore. """ class Meta: model = Blog fields = ('id', 'title', 'created', 'comments') Similarly, you can now easily include the primary key in hyperlinked relationships, simply by adding the field name to the metadata. class BlogSerializer(serializers.HyperlinkedModelSerializer): """ This is a hyperlinked serializer, which default to using a field named 'url' as the primary identifier. Note that we can now easily also add in the 'id' field. """ class Meta: model = Blog fields = ('url', 'id', 'title', 'created', 'comments') ## More flexible filtering The `FILTER_BACKEND` setting has moved to pending deprecation, in favor of a `DEFAULT_FILTER_BACKENDS` setting that takes a *list* of filter backend classes, instead of a single filter backend class. The generic view `filter_backend` attribute has also been moved to pending deprecation in favor of a `filter_backends` setting. Being able to specify multiple filters will allow for more flexible, powerful behavior. New filter classes to handle searching and ordering of results are planned to be released shortly. --- # API Changes ## Simplified generic view classes The functionality provided by `SingleObjectAPIView` and `MultipleObjectAPIView` base classes has now been moved into the base class `GenericAPIView`. The implementation of this base class is simple enough that providing subclasses for the base classes of detail and list views is somewhat unnecessary. Additionally the base generic view no longer inherits from Django's `SingleObjectMixin` or `MultipleObjectMixin` classes, simplifying the implementation, and meaning you don't need to cross-reference across to Django's codebase. Using the `SingleObjectAPIView` and `MultipleObjectAPIView` base classes continues to be supported, but will raise a `PendingDeprecationWarning`. You should instead simply use `GenericAPIView` as the base for any generic view subclasses. ### Removed attributes The following attributes and methods, were previously present as part of Django's generic view implementations, but were unneeded and unused and have now been entirely removed. * context_object_name * get_context_data() * get_context_object_name() The following attributes and methods, which were previously present as part of Django's generic view implementations have also been entirely removed. * paginator_class * get_paginator() * get_allow_empty() * get_slug_field() There may be cases when removing these bits of API might mean you need to write a little more code if your view has highly customized behavior, but generally we believe that providing a coarser-grained API will make the views easier to work with, and is the right trade-off to make for the vast majority of cases. Note that the listed attributes and methods have never been a documented part of the REST framework API, and as such are not covered by the deprecation policy. ### Simplified methods The `get_object` and `get_paginate_by` methods no longer take an optional queryset argument. This makes overridden these methods more obvious, and a little more simple. Using an optional queryset with these methods continues to be supported, but will raise a `PendingDeprecationWarning`. The `paginate_queryset` method no longer takes a `page_size` argument, or returns a four-tuple of pagination information. Instead it simply takes a queryset argument, and either returns a `page` object with an appropriate page size, or returns `None`, if pagination is not configured for the view. Using the `page_size` argument is still supported and will trigger the old-style return type, but will raise a `PendingDeprecationWarning`. ### Deprecated attributes The following attributes are used to control queryset lookup, and have all been moved into a pending deprecation state. * pk_url_kwarg = 'pk' * slug_url_kwarg = 'slug' * slug_field = 'slug' Their usage is replaced with a single attribute: * lookup_field = 'pk' This attribute is used both as the regex keyword argument in the URL conf, and as the model field to filter against when looking up a model instance. To use non-pk based lookup, simply set the `lookup_field` argument to an alternative field, and ensure that the keyword argument in the url conf matches the field name. For example, a view with 'username' based lookup might look like this: class UserDetail(generics.RetrieveAPIView): lookup_field = 'username' queryset = User.objects.all() serializer_class = UserSerializer And would have the following entry in the urlconf: url(r'^users/(?P\w+)/$', UserDetail.as_view()), Usage of the old-style attributes continues to be supported, but will raise a `PendingDeprecationWarning`. The `allow_empty` attribute is also deprecated. To use `allow_empty=False` style behavior you should explicitly override `get_queryset` and raise an `Http404` on empty querysets. For example: class DisallowEmptyQuerysetMixin(object): def get_queryset(self): queryset = super(DisallowEmptyQuerysetMixin, self).get_queryset() if not queryset.exists(): raise Http404 return queryset In our opinion removing lesser-used attributes like `allow_empty` helps us move towards simpler generic view implementations, making them more obvious to use and override, and re-enforcing the preferred style of developers writing their own base classes and mixins for custom behavior rather than relying on the configurability of the generic views. ## Simpler URL lookups The `HyperlinkedRelatedField` class now takes a single optional `lookup_field` argument, that replaces the `pk_url_kwarg`, `slug_url_kwarg`, and `slug_field` arguments. For example, you might have a field that references it's relationship by a hyperlink based on a slug field: account = HyperlinkedRelatedField(read_only=True, lookup_field='slug', view_name='account-detail') Usage of the old-style attributes continues to be supported, but will raise a `PendingDeprecationWarning`. ## FileUploadParser 2.3 adds a `FileUploadParser` parser class, that supports raw file uploads, in addition to the existing multipart upload support. ## DecimalField 2.3 introduces a `DecimalField` serializer field, which returns `Decimal` instances. For most cases APIs using model fields will behave as previously, however if you are using a custom renderer, not provided by REST framework, then you may now need to add support for rendering `Decimal` instances to your renderer implementation. ## ModelSerializers and reverse relationships The support for adding reverse relationships to the `fields` option on a `ModelSerializer` class means that the `get_related_field` and `get_nested_field` method signatures have now changed. In the unlikely event that you're providing a custom serializer class, and implementing these methods you should note the new call signature for both methods is now `(self, model_field, related_model, to_many)`. For reverse relationships `model_field` will be `None`. The old-style signature will continue to function but will raise a `PendingDeprecationWarning`. ## View names and descriptions The mechanics of how the names and descriptions used in the browsable API are generated has been modified and cleaned up somewhat. If you've been customizing this behavior, for example perhaps to use `rst` markup for the browsable API, then you'll need to take a look at the implementation to see what updates you need to make. Note that the relevant methods have always been private APIs, and the docstrings called them out as intended to be deprecated. --- # Other notes ## More explicit style The usage of `model` attribute in generic Views is still supported, but it's usage is generally being discouraged throughout the documentation, in favour of the setting the more explicit `queryset` and `serializer_class` attributes. For example, the following is now the recommended style for using generic views: class AccountListView(generics.RetrieveAPIView): queryset = MyModel.objects.all() serializer_class = MyModelSerializer Using an explicit `queryset` and `serializer_class` attributes makes the functioning of the view more clear than using the shortcut `model` attribute. It also makes the usage of the `get_queryset()` or `get_serializer_class()` methods more obvious. class AccountListView(generics.RetrieveAPIView): serializer_class = MyModelSerializer def get_queryset(self): """ Determine the queryset dynamically, depending on the user making the request. Note that overriding this method follows on more obviously now that an explicit `queryset` attribute is the usual view style. """ return self.user.accounts ## Django 1.3 support The 2.3.x release series will be the last series to provide compatibility with Django 1.3. ## Version 2.2 API changes All API changes in 2.2 that previously raised `PendingDeprecationWarning` will now raise a `DeprecationWarning`, which is loud by default. ## What comes next? * Support for read-write nested serializers is almost complete, and due to be released in the next few weeks. * Extra filter backends for searching and ordering of results are planned to be added shortly. The next few months should see a renewed focus on addressing outstanding tickets. The 2.4 release is currently planned for around August-September. [viewset]: ../api-guide/viewsets.md [router]: ../api-guide/routers.md [part-6]: ../tutorial/6-viewsets-and-routers.md django-rest-framework-3.3.2/docs/topics/2.4-announcement.md000066400000000000000000000172011263353514300235030ustar00rootroot00000000000000# Django REST framework 2.4 The 2.4 release is largely an intermediate step, tying up some outstanding issues prior to the 3.x series. ## Version requirements Support for Django 1.3 has been dropped. The lowest supported version of Django is now 1.4.2. The current plan is for REST framework to remain in lockstep with [Django's long-term support policy][lts-releases]. ## Django 1.7 support The optional authtoken application now includes support for *both* Django 1.7 schema migrations, *and* for old-style `south` migrations. **If you are using authtoken, and you want to continue using `south`, you must upgrade your `south` package to version 1.0.** ## Deprecation of `.model` view attribute The `.model` attribute on view classes is an optional shortcut for either or both of `.serializer_class` and `.queryset`. Its usage results in more implicit, less obvious behavior. The documentation has previously stated that usage of the more explicit style is prefered, and we're now taking that one step further and deprecating the usage of the `.model` shortcut. Doing so will mean that there are cases of API code where you'll now need to include a serializer class where you previously were just using the `.model` shortcut. However we firmly believe that it is the right trade-off to make. Removing the shortcut takes away an unnecessary layer of abstraction, and makes your codebase more explicit without any significant extra complexity. It also results in better consistency, as there's now only one way to set the serializer class and queryset attributes for the view, instead of two. The `DEFAULT_MODEL_SERIALIZER_CLASS` API setting is now also deprecated. ## Updated test runner We now have a new test runner for developing against the project,, that uses the excellent [py.test](http://pytest.org) library. To use it make sure you have first installed the test requirements. pip install -r requirements-test.txt Then run the `runtests.py` script. ./runtests.py The new test runner also includes [flake8](https://flake8.readthedocs.org) code linting, which should help keep our coding style consistent. #### Test runner flags Run using a more concise output style. ./runtests -q Run the tests using a more concise output style, no coverage, no flake8. ./runtests --fast Don't run the flake8 code linting. ./runtests --nolint Only run the flake8 code linting, don't run the tests. ./runtests --lintonly Run the tests for a given test case. ./runtests MyTestCase Run the tests for a given test method. ./runtests MyTestCase.test_this_method Shorter form to run the tests for a given test method. ./runtests test_this_method Note: The test case and test method matching is fuzzy and will sometimes run other tests that contain a partial string match to the given command line input. ## Improved viewset routing The `@action` and `@link` decorators were inflexible in that they only allowed additional routes to be added against instance style URLs, not against list style URLs. The `@action` and `@link` decorators have now been moved to pending deprecation, and the `@list_route` and `@detail_route` decorators have been introduced. Here's an example of using the new decorators. Firstly we have a detail-type route named "set_password" that acts on a single instance, and takes a `pk` argument in the URL. Secondly we have a list-type route named "recent_users" that acts on a queryset, and does not take any arguments in the URL. class UserViewSet(viewsets.ModelViewSet): """ A viewset that provides the standard actions """ queryset = User.objects.all() serializer_class = UserSerializer @detail_route(methods=['post']) def set_password(self, request, pk=None): user = self.get_object() serializer = PasswordSerializer(data=request.DATA) if serializer.is_valid(): user.set_password(serializer.data['password']) user.save() return Response({'status': 'password set'}) else: return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) @list_route() def recent_users(self, request): recent_users = User.objects.all().order('-last_login') page = self.paginate_queryset(recent_users) serializer = self.get_pagination_serializer(page) return Response(serializer.data) For more details, see the [viewsets documentation](../api-guide/viewsets.md). ## Throttle behavior There's one bugfix in 2.4 that's worth calling out, as it will *invalidate existing throttle caches* when you upgrade. We've now fixed a typo on the `cache_format` attribute. Previously this was named `"throtte_%(scope)s_%(ident)s"`, it is now `"throttle_%(scope)s_%(ident)s"`. If you're concerned about the invalidation you have two options. * Manually pre-populate your cache with the fixed version. * Set the `cache_format` attribute on your throttle class in order to retain the previous incorrect spelling. ## Other features There are also a number of other features and bugfixes as [listed in the release notes][2-4-release-notes]. In particular these include: [Customizable view name and description functions][view-name-and-description-settings] for use with the browsable API, by using the `VIEW_NAME_FUNCTION` and `VIEW_DESCRIPTION_FUNCTION` settings. Smarter [client IP identification for throttling][client-ip-identification], with the addition of the `NUM_PROXIES` setting. Added the standardized `Retry-After` header to throttled responses, as per [RFC 6585](http://tools.ietf.org/html/rfc6585). This should now be used in preference to the custom `X-Throttle-Wait-Seconds` header which will be fully deprecated in 3.0. ## Deprecations All API changes in 2.3 that previously raised `PendingDeprecationWarning` will now raise a `DeprecationWarning`, which is loud by default. All API changes in 2.3 that previously raised `DeprecationWarning` have now been removed entirely. Furter details on these deprecations is available in the [2.3 announcement][2-3-announcement]. ## Labels and milestones Although not strictly part of the 2.4 release it's also worth noting here that we've been working hard towards improving our triage process. The [labels that we use in GitHub][github-labels] have been cleaned up, and all existing tickets triaged. Any given ticket should have one and only one label, indicating its current state. We've also [started using milestones][github-milestones] in order to track tickets against particular releases. --- ![Labels and milestones](../img/labels-and-milestones.png) **Above**: *Overview of our current use of labels and milestones in GitHub.* --- We hope both of these changes will help make the management process more clear and obvious and help keep tickets well-organised and relevant. ## Next steps The next planned release will be 3.0, featuring an improved and simplified serializer implementation. Once again, many thanks to all the generous [backers and sponsors][kickstarter-sponsors] who've helped make this possible! [lts-releases]: https://docs.djangoproject.com/en/dev/internals/release-process/#long-term-support-lts-releases [2-4-release-notes]: release-notes#240 [view-name-and-description-settings]: ../api-guide/settings#view-names-and-descriptions [client-ip-identification]: ../api-guide/throttling#how-clients-are-identified [2-3-announcement]: 2.3-announcement [github-labels]: https://github.com/tomchristie/django-rest-framework/issues [github-milestones]: https://github.com/tomchristie/django-rest-framework/milestones [kickstarter-sponsors]: kickstarter-announcement#sponsors django-rest-framework-3.3.2/docs/topics/3.0-announcement.md000066400000000000000000001404361263353514300235070ustar00rootroot00000000000000# Django REST framework 3.0 The 3.0 release of Django REST framework is the result of almost four years of iteration and refinement. It comprehensively addresses some of the previous remaining design issues in serializers, fields and the generic views. **This release is incremental in nature. There *are* some breaking API changes, and upgrading *will* require you to read the release notes carefully, but the migration path should otherwise be relatively straightforward.** The difference in quality of the REST framework API and implementation should make writing, maintaining and debugging your application far easier. 3.0 is the first of three releases that have been funded by our recent [Kickstarter campaign][kickstarter]. As ever, a huge thank you to our many [wonderful sponsors][sponsors]. If you're looking for a Django gig, and want to work with smart community-minded folks, you should probably check out that list and see who's hiring. --- ## New features Notable features of this new release include: * Printable representations on serializers that allow you to inspect exactly what fields are present on the instance. * Simple model serializers that are vastly easier to understand and debug, and that make it easy to switch between the implicit `ModelSerializer` class and the explicit `Serializer` class. * A new `BaseSerializer` class, making it easier to write serializers for alternative storage backends, or to completely customize your serialization and validation logic. * A cleaner fields API including new classes such as `ListField` and `MultipleChoiceField`. * [Super simple default implementations][mixins.py] for the generic views. * Support for overriding how validation errors are handled by your API. * A metadata API that allows you to customize how `OPTIONS` requests are handled by your API. * A more compact JSON output with unicode style encoding turned on by default. * Templated based HTML form rendering for serializers. This will be finalized as public API in the upcoming 3.1 release. Significant new functionality continues to be planned for the 3.1 and 3.2 releases. These releases will correspond to the two [Kickstarter stretch goals](https://www.kickstarter.com/projects/tomchristie/django-rest-framework-3) - "Feature improvements" and "Admin interface". Further 3.x releases will present simple upgrades, without the same level of fundamental API changes necessary for the 3.0 release. --- #### REST framework: Under the hood. This talk from the [Django: Under the Hood](http://www.djangounderthehood.com/) event in Amsterdam, Nov 2014, gives some good background context on the design decisions behind 3.0. --- *Below is an in-depth guide to the API changes and migration notes for 3.0.* ## Request objects #### The `.data` and `.query_params` properties. The usage of `request.DATA` and `request.FILES` is now pending deprecation in favor of a single `request.data` attribute that contains *all* the parsed data. Having separate attributes is reasonable for web applications that only ever parse url-encoded or multipart requests, but makes less sense for the general-purpose request parsing that REST framework supports. You may now pass all the request data to a serializer class in a single argument: # Do this... ExampleSerializer(data=request.data) Instead of passing the files argument separately: # Don't do this... ExampleSerializer(data=request.DATA, files=request.FILES) The usage of `request.QUERY_PARAMS` is now pending deprecation in favor of the lowercased `request.query_params`. --- ## Serializers #### Single-step object creation. Previously the serializers used a two-step object creation, as follows: 1. Validating the data would create an object instance. This instance would be available as `serializer.object`. 2. Calling `serializer.save()` would then save the object instance to the database. This style is in-line with how the `ModelForm` class works in Django, but is problematic for a number of reasons: * Some data, such as many-to-many relationships, cannot be added to the object instance until after it has been saved. This type of data needed to be hidden in some undocumented state on the object instance, or kept as state on the serializer instance so that it could be used when `.save()` is called. * Instantiating model instances directly means that you cannot use model manager classes for instance creation, e.g. `ExampleModel.objects.create(...)`. Manager classes are an excellent layer at which to enforce business logic and application-level data constraints. * The two step process makes it unclear where to put deserialization logic. For example, should extra attributes such as the current user get added to the instance during object creation or during object save? We now use single-step object creation, like so: 1. Validating the data makes the cleaned data available as `serializer.validated_data`. 2. Calling `serializer.save()` then saves and returns the new object instance. The resulting API changes are further detailed below. #### The `.create()` and `.update()` methods. The `.restore_object()` method is now removed, and we instead have two separate methods, `.create()` and `.update()`. These methods work slightly different to the previous `.restore_object()`. When using the `.create()` and `.update()` methods you should both create *and save* the object instance. This is in contrast to the previous `.restore_object()` behavior that would instantiate the object but not save it. These methods also replace the optional `.save_object()` method, which no longer exists. The following example from the tutorial previously used `restore_object()` to handle both creating and updating object instances. def restore_object(self, attrs, instance=None): if instance: # Update existing instance instance.title = attrs.get('title', instance.title) instance.code = attrs.get('code', instance.code) instance.linenos = attrs.get('linenos', instance.linenos) instance.language = attrs.get('language', instance.language) instance.style = attrs.get('style', instance.style) return instance # Create new instance return Snippet(**attrs) This would now be split out into two separate methods. def update(self, instance, validated_data): instance.title = validated_data.get('title', instance.title) instance.code = validated_data.get('code', instance.code) instance.linenos = validated_data.get('linenos', instance.linenos) instance.language = validated_data.get('language', instance.language) instance.style = validated_data.get('style', instance.style) instance.save() return instance def create(self, validated_data): return Snippet.objects.create(**validated_data) Note that these methods should return the newly created object instance. #### Use `.validated_data` instead of `.object`. You must now use the `.validated_data` attribute if you need to inspect the data before saving, rather than using the `.object` attribute, which no longer exists. For example the following code *is no longer valid*: if serializer.is_valid(): name = serializer.object.name # Inspect validated field data. logging.info('Creating ticket "%s"' % name) serializer.object.user = request.user # Include the user when saving. serializer.save() Instead of using `.object` to inspect a partially constructed instance, you would now use `.validated_data` to inspect the cleaned incoming values. Also you can't set extra attributes on the instance directly, but instead pass them to the `.save()` method as keyword arguments. The corresponding code would now look like this: if serializer.is_valid(): name = serializer.validated_data['name'] # Inspect validated field data. logging.info('Creating ticket "%s"' % name) serializer.save(user=request.user) # Include the user when saving. #### Using `.is_valid(raise_exception=True)` The `.is_valid()` method now takes an optional boolean flag, `raise_exception`. Calling `.is_valid(raise_exception=True)` will cause a `ValidationError` to be raised if the serializer data contains validation errors. This error will be handled by REST framework's default exception handler, allowing you to remove error response handling from your view code. The handling and formatting of error responses may be altered globally by using the `EXCEPTION_HANDLER` settings key. This change also means it's now possible to alter the style of error responses used by the built-in generic views, without having to include mixin classes or other overrides. #### Using `serializers.ValidationError`. Previously `serializers.ValidationError` error was simply a synonym for `django.core.exceptions.ValidationError`. This has now been altered so that it inherits from the standard `APIException` base class. The reason behind this is that Django's `ValidationError` class is intended for use with HTML forms and its API makes using it slightly awkward with nested validation errors that can occur in serializers. For most users this change shouldn't require any updates to your codebase, but it is worth ensuring that whenever raising validation errors you should prefer using the `serializers.ValidationError` exception class, and not Django's built-in exception. We strongly recommend that you use the namespaced import style of `import serializers` and not `from serializers import ValidationError` in order to avoid any potential confusion. #### Change to `validate_`. The `validate_` method hooks that can be attached to serializer classes change their signature slightly and return type. Previously these would take a dictionary of all incoming data, and a key representing the field name, and would return a dictionary including the validated data for that field: def validate_score(self, attrs, source): if attrs['score'] % 10 != 0: raise serializers.ValidationError('This field should be a multiple of ten.') return attrs This is now simplified slightly, and the method hooks simply take the value to be validated, and return the validated value. def validate_score(self, value): if value % 10 != 0: raise serializers.ValidationError('This field should be a multiple of ten.') return value Any ad-hoc validation that applies to more than one field should go in the `.validate(self, attrs)` method as usual. Because `.validate_` would previously accept the complete dictionary of attributes, it could be used to validate a field depending on the input in another field. Now if you need to do this you should use `.validate()` instead. You can either return `non_field_errors` from the validate method by raising a simple `ValidationError` def validate(self, attrs): # serializer.errors == {'non_field_errors': ['A non field error']} raise serializers.ValidationError('A non field error') Alternatively if you want the errors to be against a specific field, use a dictionary of when instantiating the `ValidationError`, like so: def validate(self, attrs): # serializer.errors == {'my_field': ['A field error']} raise serializers.ValidationError({'my_field': 'A field error'}) This ensures you can still write validation that compares all the input fields, but that marks the error against a particular field. #### Removal of `transform_`. The under-used `transform_` on serializer classes is no longer provided. Instead you should just override `to_representation()` if you need to apply any modifications to the representation style. For example: def to_representation(self, instance): ret = super(UserSerializer, self).to_representation(instance) ret['username'] = ret['username'].lower() return ret Dropping the extra point of API means there's now only one right way to do things. This helps with repetition and reinforcement of the core API, rather than having multiple differing approaches. If you absolutely need to preserve `transform_` behavior, for example, in order to provide a simpler 2.x to 3.0 upgrade, you can use a mixin, or serializer base class that add the behavior back in. For example: class BaseModelSerializer(ModelSerializer): """ A custom ModelSerializer class that preserves 2.x style `transform_` behavior. """ def to_representation(self, instance): ret = super(BaseModelSerializer, self).to_representation(instance) for key, value in ret.items(): method = getattr(self, 'transform_' + key, None) if method is not None: ret[key] = method(value) return ret #### Differences between ModelSerializer validation and ModelForm. This change also means that we no longer use the `.full_clean()` method on model instances, but instead perform all validation explicitly on the serializer. This gives a cleaner separation, and ensures that there's no automatic validation behavior on `ModelSerializer` classes that can't also be easily replicated on regular `Serializer` classes. For the most part this change should be transparent. Field validation and uniqueness checks will still be run as normal, but the implementation is a little different. The one difference that you do need to note is that the `.clean()` method will not be called as part of serializer validation, as it would be if using a `ModelForm`. Use the serializer `.validate()` method to perform a final validation step on incoming data where required. There may be some cases where you really do need to keep validation logic in the model `.clean()` method, and cannot instead separate it into the serializer `.validate()`. You can do so by explicitly instantiating a model instance in the `.validate()` method. def validate(self, attrs): instance = ExampleModel(**attrs) instance.clean() return attrs Again, you really should look at properly separating the validation logic out of the model method if possible, but the above might be useful in some backwards compatibility cases, or for an easy migration path. #### Writable nested serialization. REST framework 2.x attempted to automatically support writable nested serialization, but the behavior was complex and non-obvious. Attempting to automatically handle these case is problematic: * There can be complex dependencies involved in order of saving multiple related model instances. * It's unclear what behavior the user should expect when related models are passed `None` data. * It's unclear how the user should expect to-many relationships to handle updates, creations and deletions of multiple records. Using the `depth` option on `ModelSerializer` will now create **read-only nested serializers** by default. If you try to use a writable nested serializer without writing a custom `create()` and/or `update()` method you'll see an assertion error when you attempt to save the serializer. For example: >>> class ProfileSerializer(serializers.ModelSerializer): >>> class Meta: >>> model = Profile >>> fields = ('address', 'phone') >>> >>> class UserSerializer(serializers.ModelSerializer): >>> profile = ProfileSerializer() >>> class Meta: >>> model = User >>> fields = ('username', 'email', 'profile') >>> >>> data = { >>> 'username': 'lizzy', >>> 'email': 'lizzy@example.com', >>> 'profile': {'address': '123 Acacia Avenue', 'phone': '01273 100200'} >>> } >>> >>> serializer = UserSerializer(data=data) >>> serializer.save() AssertionError: The `.create()` method does not support nested writable fields by default. Write an explicit `.create()` method for serializer `UserSerializer`, or set `read_only=True` on nested serializer fields. To use writable nested serialization you'll want to declare a nested field on the serializer class, and write the `create()` and/or `update()` methods explicitly. class UserSerializer(serializers.ModelSerializer): profile = ProfileSerializer() class Meta: model = User fields = ('username', 'email', 'profile') def create(self, validated_data): profile_data = validated_data.pop('profile') user = User.objects.create(**validated_data) Profile.objects.create(user=user, **profile_data) return user The single-step object creation makes this far simpler and more obvious than the previous `.restore_object()` behavior. #### Printable serializer representations. Serializer instances now support a printable representation that allows you to inspect the fields present on the instance. For instance, given the following example model: class LocationRating(models.Model): location = models.CharField(max_length=100) rating = models.IntegerField() created_by = models.ForeignKey(User) Let's create a simple `ModelSerializer` class corresponding to the `LocationRating` model. class LocationRatingSerializer(serializer.ModelSerializer): class Meta: model = LocationRating We can now inspect the serializer representation in the Django shell, using `python manage.py shell`... >>> serializer = LocationRatingSerializer() >>> print(serializer) # Or use `print serializer` in Python 2.x LocationRatingSerializer(): id = IntegerField(label='ID', read_only=True) location = CharField(max_length=100) rating = IntegerField() created_by = PrimaryKeyRelatedField(queryset=User.objects.all()) #### The `extra_kwargs` option. The `write_only_fields` option on `ModelSerializer` has been moved to `PendingDeprecation` and replaced with a more generic `extra_kwargs`. class MySerializer(serializer.ModelSerializer): class Meta: model = MyModel fields = ('id', 'email', 'notes', 'is_admin') extra_kwargs = { 'is_admin': {'write_only': True} } Alternatively, specify the field explicitly on the serializer class: class MySerializer(serializer.ModelSerializer): is_admin = serializers.BooleanField(write_only=True) class Meta: model = MyModel fields = ('id', 'email', 'notes', 'is_admin') The `read_only_fields` option remains as a convenient shortcut for the more common case. #### Changes to `HyperlinkedModelSerializer`. The `view_name` and `lookup_field` options have been moved to `PendingDeprecation`. They are no longer required, as you can use the `extra_kwargs` argument instead: class MySerializer(serializer.HyperlinkedModelSerializer): class Meta: model = MyModel fields = ('url', 'email', 'notes', 'is_admin') extra_kwargs = { 'url': {'lookup_field': 'uuid'} } Alternatively, specify the field explicitly on the serializer class: class MySerializer(serializer.HyperlinkedModelSerializer): url = serializers.HyperlinkedIdentityField( view_name='mymodel-detail', lookup_field='uuid' ) class Meta: model = MyModel fields = ('url', 'email', 'notes', 'is_admin') #### Fields for model methods and properties. With `ModelSerializer` you can now specify field names in the `fields` option that refer to model methods or properties. For example, suppose you have the following model: class Invitation(models.Model): created = models.DateTimeField() to_email = models.EmailField() message = models.CharField(max_length=1000) def expiry_date(self): return self.created + datetime.timedelta(days=30) You can include `expiry_date` as a field option on a `ModelSerializer` class. class InvitationSerializer(serializers.ModelSerializer): class Meta: model = Invitation fields = ('to_email', 'message', 'expiry_date') These fields will be mapped to `serializers.ReadOnlyField()` instances. >>> serializer = InvitationSerializer() >>> print repr(serializer) InvitationSerializer(): to_email = EmailField(max_length=75) message = CharField(max_length=1000) expiry_date = ReadOnlyField() #### The `ListSerializer` class. The `ListSerializer` class has now been added, and allows you to create base serializer classes for only accepting multiple inputs. class MultipleUserSerializer(ListSerializer): child = UserSerializer() You can also still use the `many=True` argument to serializer classes. It's worth noting that `many=True` argument transparently creates a `ListSerializer` instance, allowing the validation logic for list and non-list data to be cleanly separated in the REST framework codebase. You will typically want to *continue to use the existing `many=True` flag* rather than declaring `ListSerializer` classes explicitly, but declaring the classes explicitly can be useful if you need to write custom `create` or `update` methods for bulk updates, or provide for other custom behavior. See also the new `ListField` class, which validates input in the same way, but does not include the serializer interfaces of `.is_valid()`, `.data`, `.save()` and so on. #### The `BaseSerializer` class. REST framework now includes a simple `BaseSerializer` class that can be used to easily support alternative serialization and deserialization styles. This class implements the same basic API as the `Serializer` class: * `.data` - Returns the outgoing primitive representation. * `.is_valid()` - Deserializes and validates incoming data. * `.validated_data` - Returns the validated incoming data. * `.errors` - Returns an errors during validation. * `.save()` - Persists the validated data into an object instance. There are four methods that can be overridden, depending on what functionality you want the serializer class to support: * `.to_representation()` - Override this to support serialization, for read operations. * `.to_internal_value()` - Override this to support deserialization, for write operations. * `.create()` and `.update()` - Override either or both of these to support saving instances. Because this class provides the same interface as the `Serializer` class, you can use it with the existing generic class based views exactly as you would for a regular `Serializer` or `ModelSerializer`. The only difference you'll notice when doing so is the `BaseSerializer` classes will not generate HTML forms in the browsable API. This is because the data they return does not include all the field information that would allow each field to be rendered into a suitable HTML input. ##### Read-only `BaseSerializer` classes. To implement a read-only serializer using the `BaseSerializer` class, we just need to override the `.to_representation()` method. Let's take a look at an example using a simple Django model: class HighScore(models.Model): created = models.DateTimeField(auto_now_add=True) player_name = models.CharField(max_length=10) score = models.IntegerField() It's simple to create a read-only serializer for converting `HighScore` instances into primitive data types. class HighScoreSerializer(serializers.BaseSerializer): def to_representation(self, obj): return { 'score': obj.score, 'player_name': obj.player_name } We can now use this class to serialize single `HighScore` instances: @api_view(['GET']) def high_score(request, pk): instance = HighScore.objects.get(pk=pk) serializer = HighScoreSerializer(instance) return Response(serializer.data) Or use it to serialize multiple instances: @api_view(['GET']) def all_high_scores(request): queryset = HighScore.objects.order_by('-score') serializer = HighScoreSerializer(queryset, many=True) return Response(serializer.data) ##### Read-write `BaseSerializer` classes. To create a read-write serializer we first need to implement a `.to_internal_value()` method. This method returns the validated values that will be used to construct the object instance, and may raise a `ValidationError` if the supplied data is in an incorrect format. Once you've implemented `.to_internal_value()`, the basic validation API will be available on the serializer, and you will be able to use `.is_valid()`, `.validated_data` and `.errors`. If you want to also support `.save()` you'll need to also implement either or both of the `.create()` and `.update()` methods. Here's a complete example of our previous `HighScoreSerializer`, that's been updated to support both read and write operations. class HighScoreSerializer(serializers.BaseSerializer): def to_internal_value(self, data): score = data.get('score') player_name = data.get('player_name') # Perform the data validation. if not score: raise ValidationError({ 'score': 'This field is required.' }) if not player_name: raise ValidationError({ 'player_name': 'This field is required.' }) if len(player_name) > 10: raise ValidationError({ 'player_name': 'May not be more than 10 characters.' }) # Return the validated values. This will be available as # the `.validated_data` property. return { 'score': int(score), 'player_name': player_name } def to_representation(self, obj): return { 'score': obj.score, 'player_name': obj.player_name } def create(self, validated_data): return HighScore.objects.create(**validated_data) #### Creating new generic serializers with `BaseSerializer`. The `BaseSerializer` class is also useful if you want to implement new generic serializer classes for dealing with particular serialization styles, or for integrating with alternative storage backends. The following class is an example of a generic serializer that can handle coercing arbitrary objects into primitive representations. class ObjectSerializer(serializers.BaseSerializer): """ A read-only serializer that coerces arbitrary complex objects into primitive representations. """ def to_representation(self, obj): for attribute_name in dir(obj): attribute = getattr(obj, attribute_name) if attribute_name('_'): # Ignore private attributes. pass elif hasattr(attribute, '__call__'): # Ignore methods and other callables. pass elif isinstance(attribute, (str, int, bool, float, type(None))): # Primitive types can be passed through unmodified. output[attribute_name] = attribute elif isinstance(attribute, list): # Recursively deal with items in lists. output[attribute_name] = [ self.to_representation(item) for item in attribute ] elif isinstance(attribute, dict): # Recursively deal with items in dictionaries. output[attribute_name] = { str(key): self.to_representation(value) for key, value in attribute.items() } else: # Force anything else to its string representation. output[attribute_name] = str(attribute) --- ## Serializer fields #### The `Field` and `ReadOnly` field classes. There are some minor tweaks to the field base classes. Previously we had these two base classes: * `Field` as the base class for read-only fields. A default implementation was included for serializing data. * `WritableField` as the base class for read-write fields. We now use the following: * `Field` is the base class for all fields. It does not include any default implementation for either serializing or deserializing data. * `ReadOnlyField` is a concrete implementation for read-only fields that simply returns the attribute value without modification. #### The `required`, `allow_null`, `allow_blank` and `default` arguments. REST framework now has more explicit and clear control over validating empty values for fields. Previously the meaning of the `required=False` keyword argument was underspecified. In practice its use meant that a field could either be not included in the input, or it could be included, but be `None` or the empty string. We now have a better separation, with separate `required`, `allow_null` and `allow_blank` arguments. The following set of arguments are used to control validation of empty values: * `required=False`: The value does not need to be present in the input, and will not be passed to `.create()` or `.update()` if it is not seen. * `default=`: The value does not need to be present in the input, and a default value will be passed to `.create()` or `.update()` if it is not seen. * `allow_null=True`: `None` is a valid input. * `allow_blank=True`: `''` is valid input. For `CharField` and subclasses only. Typically you'll want to use `required=False` if the corresponding model field has a default value, and additionally set either `allow_null=True` or `allow_blank=True` if required. The `default` argument is also available and always implies that the field is not required to be in the input. It is unnecessary to use the `required` argument when a default is specified, and doing so will result in an error. #### Coercing output types. The previous field implementations did not forcibly coerce returned values into the correct type in many cases. For example, an `IntegerField` would return a string output if the attribute value was a string. We now more strictly coerce to the correct return type, leading to more constrained and expected behavior. #### Removal of `.validate()`. The `.validate()` method is now removed from field classes. This method was in any case undocumented and not public API. You should instead simply override `to_internal_value()`. class UppercaseCharField(serializers.CharField): def to_internal_value(self, data): value = super(UppercaseCharField, self).to_internal_value(data) if value != value.upper(): raise serializers.ValidationError('The input should be uppercase only.') return value Previously validation errors could be raised in either `.to_native()` or `.validate()`, making it non-obvious which should be used. Providing only a single point of API ensures more repetition and reinforcement of the core API. #### The `ListField` class. The `ListField` class has now been added. This field validates list input. It takes a `child` keyword argument which is used to specify the field used to validate each item in the list. For example: scores = ListField(child=IntegerField(min_value=0, max_value=100)) You can also use a declarative style to create new subclasses of `ListField`, like this: class ScoresField(ListField): child = IntegerField(min_value=0, max_value=100) We can now use the `ScoresField` class inside another serializer: scores = ScoresField() See also the new `ListSerializer` class, which validates input in the same way, but also includes the serializer interfaces of `.is_valid()`, `.data`, `.save()` and so on. #### The `ChoiceField` class may now accept a flat list. The `ChoiceField` class may now accept a list of choices in addition to the existing style of using a list of pairs of `(name, display_value)`. The following is now valid: color = ChoiceField(choices=['red', 'green', 'blue']) #### The `MultipleChoiceField` class. The `MultipleChoiceField` class has been added. This field acts like `ChoiceField`, but returns a set, which may include none, one or many of the valid choices. #### Changes to the custom field API. The `from_native(self, value)` and `to_native(self, data)` method names have been replaced with the more obviously named `to_internal_value(self, data)` and `to_representation(self, value)`. The `field_from_native()` and `field_to_native()` methods are removed. Previously you could use these methods if you wanted to customise the behaviour in a way that did not simply lookup the field value from the object. For example... def field_to_native(self, obj, field_name): """A custom read-only field that returns the class name.""" return obj.__class__.__name__ Now if you need to access the entire object you'll instead need to override one or both of the following: * Use `get_attribute` to modify the attribute value passed to `to_representation()`. * Use `get_value` to modify the data value passed `to_internal_value()`. For example: def get_attribute(self, obj): # Pass the entire object through to `to_representation()`, # instead of the standard attribute lookup. return obj def to_representation(self, value): return value.__class__.__name__ #### Explicit `queryset` required on relational fields. Previously relational fields that were explicitly declared on a serializer class could omit the queryset argument if (and only if) they were declared on a `ModelSerializer`. This code *would be valid* in `2.4.3`: class AccountSerializer(serializers.ModelSerializer): organizations = serializers.SlugRelatedField(slug_field='name') class Meta: model = Account However this code *would not be valid* in `3.0`: # Missing `queryset` class AccountSerializer(serializers.Serializer): organizations = serializers.SlugRelatedField(slug_field='name') def restore_object(self, attrs, instance=None): # ... The queryset argument is now always required for writable relational fields. This removes some magic and makes it easier and more obvious to move between implicit `ModelSerializer` classes and explicit `Serializer` classes. class AccountSerializer(serializers.ModelSerializer): organizations = serializers.SlugRelatedField( slug_field='name', queryset=Organization.objects.all() ) class Meta: model = Account The `queryset` argument is only ever required for writable fields, and is not required or valid for fields with `read_only=True`. #### Optional argument to `SerializerMethodField`. The argument to `SerializerMethodField` is now optional, and defaults to `get_`. For example the following is valid: class AccountSerializer(serializers.Serializer): # `method_name='get_billing_details'` by default. billing_details = serializers.SerializerMethodField() def get_billing_details(self, account): return calculate_billing(account) In order to ensure a consistent code style an assertion error will be raised if you include a redundant method name argument that matches the default method name. For example, the following code *will raise an error*: billing_details = serializers.SerializerMethodField('get_billing_details') #### Enforcing consistent `source` usage. I've see several codebases that unnecessarily include the `source` argument, setting it to the same value as the field name. This usage is redundant and confusing, making it less obvious that `source` is usually not required. The following usage will *now raise an error*: email = serializers.EmailField(source='email') #### The `UniqueValidator` and `UniqueTogetherValidator` classes. REST framework now provides new validators that allow you to ensure field uniqueness, while still using a completely explicit `Serializer` class instead of using `ModelSerializer`. The `UniqueValidator` should be applied to a serializer field, and takes a single `queryset` argument. from rest_framework import serializers from rest_framework.validators import UniqueValidator class OrganizationSerializer(serializers.Serializer): url = serializers.HyperlinkedIdentityField(view_name='organization_detail') created = serializers.DateTimeField(read_only=True) name = serializers.CharField( max_length=100, validators=UniqueValidator(queryset=Organization.objects.all()) ) The `UniqueTogetherValidator` should be applied to a serializer, and takes a `queryset` argument and a `fields` argument which should be a list or tuple of field names. class RaceResultSerializer(serializers.Serializer): category = serializers.ChoiceField(['5k', '10k']) position = serializers.IntegerField() name = serializers.CharField(max_length=100) class Meta: validators = [UniqueTogetherValidator( queryset=RaceResult.objects.all(), fields=('category', 'position') )] #### The `UniqueForDateValidator` classes. REST framework also now includes explicit validator classes for validating the `unique_for_date`, `unique_for_month`, and `unique_for_year` model field constraints. These are used internally instead of calling into `Model.full_clean()`. These classes are documented in the [Validators](../api-guide/validators.md) section of the documentation. --- ## Generic views #### Simplification of view logic. The view logic for the default method handlers has been significantly simplified, due to the new serializers API. #### Changes to pre/post save hooks. The `pre_save` and `post_save` hooks no longer exist, but are replaced with `perform_create(self, serializer)` and `perform_update(self, serializer)`. These methods should save the object instance by calling `serializer.save()`, adding in any additional arguments as required. They may also perform any custom pre-save or post-save behavior. For example: def perform_create(self, serializer): # Include the owner attribute directly, rather than from request data. instance = serializer.save(owner=self.request.user) # Perform a custom post-save action. send_email(instance.to_email, instance.message) The `pre_delete` and `post_delete` hooks no longer exist, and are replaced with `.perform_destroy(self, instance)`, which should delete the instance and perform any custom actions. def perform_destroy(self, instance): # Perform a custom pre-delete action. send_deletion_alert(user=instance.created_by, deleted=instance) # Delete the object instance. instance.delete() #### Removal of view attributes. The `.object` and `.object_list` attributes are no longer set on the view instance. Treating views as mutable object instances that store state during the processing of the view tends to be poor design, and can lead to obscure flow logic. I would personally recommend that developers treat view instances as immutable objects in their application code. #### PUT as create. Allowing `PUT` as create operations is problematic, as it necessarily exposes information about the existence or non-existence of objects. It's also not obvious that transparently allowing re-creating of previously deleted instances is necessarily a better default behavior than simply returning `404` responses. Both styles "`PUT` as 404" and "`PUT` as create" can be valid in different circumstances, but we've now opted for the 404 behavior as the default, due to it being simpler and more obvious. If you need to restore the previous behavior you may want to include [this `AllowPUTAsCreateMixin` class](https://gist.github.com/tomchristie/a2ace4577eff2c603b1b) as a mixin to your views. #### Customizing error responses. The generic views now raise `ValidationFailed` exception for invalid data. This exception is then dealt with by the exception handler, rather than the view returning a `400 Bad Request` response directly. This change means that you can now easily customize the style of error responses across your entire API, without having to modify any of the generic views. --- ## The metadata API Behavior for dealing with `OPTIONS` requests was previously built directly into the class based views. This has now been properly separated out into a Metadata API that allows the same pluggable style as other API policies in REST framework. This makes it far easier to use a different style for `OPTIONS` responses throughout your API, and makes it possible to create third-party metadata policies. --- ## Serializers as HTML forms REST framework 3.0 includes templated HTML form rendering for serializers. This API should not yet be considered finalized, and will only be promoted to public API for the 3.1 release. Significant changes that you do need to be aware of include: * Nested HTML forms are now supported, for example, a `UserSerializer` with a nested `ProfileSerializer` will now render a nested `fieldset` when used in the browsable API. * Nested lists of HTML forms are not yet supported, but are planned for 3.1. * Because we now use templated HTML form generation, **the `widget` option is no longer available for serializer fields**. You can instead control the template that is used for a given field, by using the `style` dictionary. #### The `style` keyword argument for serializer fields. The `style` keyword argument can be used to pass through additional information from a serializer field, to the renderer class. In particular, the `HTMLFormRenderer` uses the `base_template` key to determine which template to render the field with. For example, to use a `textarea` control instead of the default `input` control, you would use the following… additional_notes = serializers.CharField( style={'base_template': 'textarea.html'} ) Similarly, to use a radio button control instead of the default `select` control, you would use the following… color_channel = serializers.ChoiceField( choices=['red', 'blue', 'green'], style={'base_template': 'radio.html'} ) This API should be considered provisional, and there may be minor alterations with the incoming 3.1 release. --- ## API style There are some improvements in the default style we use in our API responses. #### Unicode JSON by default. Unicode JSON is now the default. The `UnicodeJSONRenderer` class no longer exists, and the `UNICODE_JSON` setting has been added. To revert this behavior use the new setting: REST_FRAMEWORK = { 'UNICODE_JSON': False } #### Compact JSON by default. We now output compact JSON in responses by default. For example, we return: {"email":"amy@example.com","is_admin":true} Instead of the following: {"email": "amy@example.com", "is_admin": true} The `COMPACT_JSON` setting has been added, and can be used to revert this behavior if needed: REST_FRAMEWORK = { 'COMPACT_JSON': False } #### File fields as URLs The `FileField` and `ImageField` classes are now represented as URLs by default. You should ensure you set Django's [standard `MEDIA_URL` setting](https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-MEDIA_URL) appropriately, and ensure your application [serves the uploaded files](https://docs.djangoproject.com/en/dev/howto/static-files/#serving-uploaded-files-in-development). You can revert this behavior, and display filenames in the representation by using the `UPLOADED_FILES_USE_URL` settings key: REST_FRAMEWORK = { 'UPLOADED_FILES_USE_URL': False } You can also modify serializer fields individually, using the `use_url` argument: uploaded_file = serializers.FileField(use_url=False) Also note that you should pass the `request` object to the serializer as context when instantiating it, so that a fully qualified URL can be returned. Returned URLs will then be of the form `https://example.com/url_path/filename.txt`. For example: context = {'request': request} serializer = ExampleSerializer(instance, context=context) return Response(serializer.data) If the request is omitted from the context, the returned URLs will be of the form `/url_path/filename.txt`. #### Throttle headers using `Retry-After`. The custom `X-Throttle-Wait-Second` header has now been dropped in favor of the standard `Retry-After` header. You can revert this behavior if needed by writing a custom exception handler for your application. #### Date and time objects as ISO-8859-1 strings in serializer data. Date and Time objects are now coerced to strings by default in the serializer output. Previously they were returned as `Date`, `Time` and `DateTime` objects, and later coerced to strings by the renderer. You can modify this behavior globally by settings the existing `DATE_FORMAT`, `DATETIME_FORMAT` and `TIME_FORMAT` settings keys. Setting these values to `None` instead of their default value of `'iso-8859-1'` will result in native objects being returned in serializer data. REST_FRAMEWORK = { # Return native `Date` and `Time` objects in `serializer.data` 'DATETIME_FORMAT': None 'DATE_FORMAT': None 'TIME_FORMAT': None } You can also modify serializer fields individually, using the `date_format`, `time_format` and `datetime_format` arguments: # Return `DateTime` instances in `serializer.data`, not strings. created = serializers.DateTimeField(format=None) #### Decimals as strings in serializer data. Decimals are now coerced to strings by default in the serializer output. Previously they were returned as `Decimal` objects, and later coerced to strings by the renderer. You can modify this behavior globally by using the `COERCE_DECIMAL_TO_STRING` settings key. REST_FRAMEWORK = { 'COERCE_DECIMAL_TO_STRING': False } Or modify it on an individual serializer field, using the `coerce_to_string` keyword argument. # Return `Decimal` instances in `serializer.data`, not strings. amount = serializers.DecimalField( max_digits=10, decimal_places=2, coerce_to_string=False ) The default JSON renderer will return float objects for un-coerced `Decimal` instances. This allows you to easily switch between string or float representations for decimals depending on your API design needs. --- ## Miscellaneous notes * The serializer `ChoiceField` does not currently display nested choices, as was the case in 2.4. This will be address as part of 3.1. * Due to the new templated form rendering, the 'widget' option is no longer valid. This means there's no easy way of using third party "autocomplete" widgets for rendering select inputs that contain a large number of choices. You'll either need to use a regular select or a plain text input. We may consider addressing this in 3.1 or 3.2 if there's sufficient demand. * Some of the default validation error messages were rewritten and might no longer be pre-translated. You can still [create language files with Django][django-localization] if you wish to localize them. * `APIException` subclasses could previously take any arbitrary type in the `detail` argument. These exceptions now use translatable text strings, and as a result call `force_text` on the `detail` argument, which *must be a string*. If you need complex arguments to an `APIException` class, you should subclass it and override the `__init__()` method. Typically you'll instead want to use a custom exception handler to provide for non-standard error responses. --- ## What's coming next 3.0 is an incremental release, and there are several upcoming features that will build on the baseline improvements that it makes. The 3.1 release is planned to address improvements in the following components: * Public API for using serializers as HTML forms. * Request parsing, mediatypes & the implementation of the browsable API. * Introduction of a new pagination API. * Better support for API versioning. The 3.2 release is planned to introduce an alternative admin-style interface to the browsable API. You can follow development on the GitHub site, where we use [milestones to indicate planning timescales](https://github.com/tomchristie/django-rest-framework/milestones). [kickstarter]: http://kickstarter.com/projects/tomchristie/django-rest-framework-3 [sponsors]: http://www.django-rest-framework.org/topics/kickstarter-announcement/#sponsors [mixins.py]: https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/mixins.py [django-localization]: https://docs.djangoproject.com/en/dev/topics/i18n/translation/#localization-how-to-create-language-files django-rest-framework-3.3.2/docs/topics/3.1-announcement.md000066400000000000000000000246211263353514300235050ustar00rootroot00000000000000# Django REST framework 3.1 The 3.1 release is an intermediate step in the Kickstarter project releases, and includes a range of new functionality. Some highlights include: * A super-smart cursor pagination scheme. * An improved pagination API, supporting header or in-body pagination styles. * Pagination controls rendering in the browsable API. * Better support for API versioning. * Built-in internationalization support. * Support for Django 1.8's `HStoreField` and `ArrayField`. --- ## Pagination The pagination API has been improved, making it both easier to use, and more powerful. A guide to the headline features follows. For full details, see [the pagination documentation][pagination]. Note that as a result of this work a number of settings keys and generic view attributes are now moved to pending deprecation. Controlling pagination styles is now largely handled by overriding a pagination class and modifying its configuration attributes. * The `PAGINATE_BY` settings key will continue to work but is now pending deprecation. The more obviously named `PAGE_SIZE` settings key should now be used instead. * The `PAGINATE_BY_PARAM`, `MAX_PAGINATE_BY` settings keys will continue to work but are now pending deprecation, in favor of setting configuration attributes on the configured pagination class. * The `paginate_by`, `page_query_param`, `paginate_by_param` and `max_paginate_by` generic view attributes will continue to work but are now pending deprecation, in favor of setting configuration attributes on the configured pagination class. * The `pagination_serializer_class` view attribute and `DEFAULT_PAGINATION_SERIALIZER_CLASS` settings key **are no longer valid**. The pagination API does not use serializers to determine the output format, and you'll need to instead override the `get_paginated_response` method on a pagination class in order to specify how the output format is controlled. #### New pagination schemes. Until now, there has only been a single built-in pagination style in REST framework. We now have page, limit/offset and cursor based schemes included by default. The cursor based pagination scheme is particularly smart, and is a better approach for clients iterating through large or frequently changing result sets. The scheme supports paging against non-unique indexes, by using both cursor and limit/offset information. It also allows for both forward and reverse cursor pagination. Much credit goes to David Cramer for [this blog post](http://cramer.io/2011/03/08/building-cursors-for-the-disqus-api/) on the subject. #### Pagination controls in the browsable API. Paginated results now include controls that render directly in the browsable API. If you're using the page or limit/offset style, then you'll see a page based control displayed in the browsable API: ![page number based pagination](../img/pages-pagination.png ) The cursor based pagination renders a more simple style of control: ![cursor based pagination](../img/cursor-pagination.png ) #### Support for header-based pagination. The pagination API was previously only able to alter the pagination style in the body of the response. The API now supports being able to write pagination information in response headers, making it possible to use pagination schemes that use the `Link` or `Content-Range` headers. For more information, see the [custom pagination styles](../api-guide/pagination/#custom-pagination-styles) documentation. --- ## Versioning We've made it [easier to build versioned APIs][versioning]. Built-in schemes for versioning include both URL based and Accept header based variations. When using a URL based scheme, hyperlinked serializers will resolve relationships to the same API version as used on the incoming request. For example, when using `NamespaceVersioning`, and the following hyperlinked serializer: class AccountsSerializer(serializer.HyperlinkedModelSerializer): class Meta: model = Accounts fields = ('account_name', 'users') The output representation would match the version used on the incoming request. Like so: GET http://example.org/v2/accounts/10 # Version 'v2' { "account_name": "europa", "users": [ "http://example.org/v2/users/12", # Version 'v2' "http://example.org/v2/users/54", "http://example.org/v2/users/87" ] } --- ## Internationalization REST framework now includes a built-in set of translations, and [supports internationalized error responses][internationalization]. This allows you to either change the default language, or to allow clients to specify the language via the `Accept-Language` header. You can change the default language by using the standard Django `LANGUAGE_CODE` setting: LANGUAGE_CODE = "es-es" You can turn on per-request language requests by adding `LocalMiddleware` to your `MIDDLEWARE_CLASSES` setting: MIDDLEWARE_CLASSES = [ ... 'django.middleware.locale.LocaleMiddleware' ] When per-request internationalization is enabled, client requests will respect the `Accept-Language` header where possible. For example, let's make a request for an unsupported media type: **Request** GET /api/users HTTP/1.1 Accept: application/xml Accept-Language: es-es Host: example.org **Response** HTTP/1.0 406 NOT ACCEPTABLE { "detail": "No se ha podido satisfacer la solicitud de cabecera de Accept." } Note that the structure of the error responses is still the same. We still have a `details` key in the response. If needed you can modify this behavior too, by using a [custom exception handler][custom-exception-handler]. We include built-in translations both for standard exception cases, and for serializer validation errors. The full list of supported languages can be found on our [Transifex project page](https://www.transifex.com/projects/p/django-rest-framework/). If you only wish to support a subset of the supported languages, use Django's standard `LANGUAGES` setting: LANGUAGES = [ ('de', _('German')), ('en', _('English')), ] For more details, see the [internationalization documentation](internationalization.md). Many thanks to [Craig Blaszczyk](https://github.com/jakul) for helping push this through. --- ## New field types Django 1.8's new `ArrayField`, `HStoreField` and `UUIDField` are now all fully supported. This work also means that we now have both `serializers.DictField()`, and `serializers.ListField()` types, allowing you to express and validate a wider set of representations. If you're building a new 1.8 project, then you should probably consider using `UUIDField` as the primary keys for all your models. This style will work automatically with hyperlinked serializers, returning URLs in the following style: http://example.org/api/purchases/9b1a433f-e90d-4948-848b-300fdc26365d --- ## ModelSerializer API The serializer redesign in 3.0 did not include any public API for modifying how ModelSerializer classes automatically generate a set of fields from a given mode class. We've now re-introduced an API for this, allowing you to create new ModelSerializer base classes that behave differently, such as using a different default style for relationships. For more information, see the documentation on [customizing field mappings][customizing-field-mappings] for ModelSerializer classes. --- ## Moving packages out of core We've now moved a number of packages out of the core of REST framework, and into separately installable packages. If you're currently using these you don't need to worry, you simply need to `pip install` the new packages, and change any import paths. We're making this change in order to help distribute the maintainance workload, and keep better focus of the core essentials of the framework. The change also means we can be more flexible with which external packages we recommend. For example, the excellently maintained [Django OAuth toolkit](https://github.com/evonove/django-oauth-toolkit) has now been promoted as our recommended option for integrating OAuth support. The following packages are now moved out of core and should be separately installed: * OAuth - [djangorestframework-oauth](http://jpadilla.github.io/django-rest-framework-oauth/) * XML - [djangorestframework-xml](http://jpadilla.github.io/django-rest-framework-xml) * YAML - [djangorestframework-yaml](http://jpadilla.github.io/django-rest-framework-yaml) * JSONP - [djangorestframework-jsonp](http://jpadilla.github.io/django-rest-framework-jsonp) It's worth reiterating that this change in policy shouldn't mean any work in your codebase other than adding a new requirement and modifying some import paths. For example to install XML rendering, you would now do: pip install djangorestframework-xml And modify your settings, like so: REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': [ 'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.BrowsableAPIRenderer', 'rest_framework_xml.renderers.XMLRenderer' ] } Thanks go to the latest member of our maintenance team, [José Padilla](https://github.com/jpadilla/), for handling this work and taking on ownership of these packages. --- ## Deprecations The `request.DATA`, `request.FILES` and `request.QUERY_PARAMS` attributes move from pending deprecation, to deprecated. Use `request.data` and `request.query_params` instead, as discussed in the 3.0 release notes. The ModelSerializer Meta options for `write_only_fields`, `view_name` and `lookup_field` are also moved from pending deprecation, to deprecated. Use `extra_kwargs` instead, as discussed in the 3.0 release notes. All these attributes and options will still work in 3.1, but their usage will raise a warning. They will be fully removed in 3.2. --- ## What's next? The next focus will be on HTML renderings of API output and will include: * HTML form rendering of serializers. * Filtering controls built-in to the browsable API. * An alternative admin-style interface. This will either be made as a single 3.2 release, or split across two separate releases, with the HTML forms and filter controls coming in 3.2, and the admin-style interface coming in a 3.3 release. [custom-exception-handler]: ../api-guide/exceptions.md#custom-exception-handling [pagination]: ../api-guide/pagination.md [versioning]: ../api-guide/versioning.md [internationalization]: internationalization.md [customizing-field-mappings]: ../api-guide/serializers.md#customizing-field-mappings django-rest-framework-3.3.2/docs/topics/3.2-announcement.md000066400000000000000000000141251263353514300235040ustar00rootroot00000000000000# Django REST framework 3.2 The 3.2 release is the first version to include an admin interface for the browsable API. ![The AdminRenderer](../img/admin.png) This interface is intended to act as a more user-friendly interface to the API. It can be used either as a replacement to the existing `BrowsableAPIRenderer`, or used together with it, allowing you to switch between the two styles as required. We've also fixed a huge number of issues, and made numerous cleanups and improvements. Over the course of the 3.1.x series we've [resolved nearly 600 tickets](https://github.com/tomchristie/django-rest-framework/issues?utf8=%E2%9C%93&q=closed%3A%3E2015-03-05) on our GitHub issue tracker. This means we're currently running at a rate of **closing around 100 issues or pull requests per month**. None of this would have been possible without the support of our wonderful Kickstarter backers. If you're looking for a job in Django development we'd strongly recommend taking [a look through our sponsors](http://www.django-rest-framework.org/topics/kickstarter-announcement/#sponsors) and finding out who's hiring. ## AdminRenderer To include `AdminRenderer` simply add it to your settings: REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': [ 'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.AdminRenderer', 'rest_framework.renderers.BrowsableAPIRenderer' ], 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'PAGE_SIZE': 100 } There are some limitations to the `AdminRenderer`, in particular it is not yet able to handle list or dictionary inputs, as we do not have any HTML form fields that support those. Also note that this is an initial release and we do not yet have a public API for modifying the behavior or documentation on overriding the templates. The idea is to get this released to users early, so we can start getting feedback and release a more fully featured version in 3.3. ## Supported versions This release drops support for Django 1.4. Our supported Django versions are now 1.5.6+, 1.6.3+, 1.7 and 1.8. ## Deprecations There are no new deprecations in 3.2, although a number of existing deprecations have now escalated in line with our deprecation policy. * `request.DATA` was put on the deprecation path in 3.0. It has now been removed and its usage will result in an error. Use the more pythonic style of `request.data` instead. * `request.QUERY_PARAMS` was put on the deprecation path in 3.0. It has now been removed and its usage will result in an error. Use the more pythonic style of `request.query_params` instead. * The following `ModelSerializer.Meta` options have now been removed: `write_only_fields`, `view_name`, `lookup_field`. Use the more general `extra_kwargs` option instead. The following pagination view attributes and settings have been moved into attributes on the pagination class since 3.1. Their usage was formerly in 'pending deprecation', and has now escalated to 'deprecated'. They will continue to function but will raise errors. * `view.paginate_by` - Use `paginator.page_size` instead. * `view.page_query_param` - Use `paginator.page_query_param` instead. * `view.paginate_by_param` - Use `paginator.page_size_query_param` instead. * `view.max_paginate_by` - Use `paginator.max_page_size` instead. * `settings.PAGINATE_BY` - Use `paginator.page_size` instead. * `settings.PAGINATE_BY_PARAM` - Use `paginator.page_size_query_param` instead. * `settings.MAX_PAGINATE_BY` - Use `max_page_size` instead. ## Modifications to list behaviors There are a couple of bug fixes that are worth calling out as they introduce differing behavior. These are a little subtle and probably won't affect most users, but are worth understanding before upgrading your project. ### ManyToMany fields and blank=True We've now added an `allow_empty` argument, which can be used with `ListSerializer`, or with `many=True` relationships. This is `True` by default, but can be set to `False` if you want to disallow empty lists as valid input. As a follow-up to this we are now able to properly mirror the behavior of Django's `ModelForm` with respect to how many-to-many fields are validated. Previously a many-to-many field on a model would map to a serializer field that would allow either empty or non-empty list inputs. Now, a many-to-many field will map to a serializer field that requires at least one input, unless the model field has `blank=True` set. Here's what the mapping looks like in practice: * `models.ManyToManyField()` → `serializers.PrimaryKeyRelatedField(many=True, allow_empty=False)` * `models.ManyToManyField(blank=True)` → `serializers.PrimaryKeyRelatedField(many=True)` The upshot is this: If you have many to many fields in your models, then make sure you've included the argument `blank=True` if you want to allow empty inputs in the equivalent `ModelSerializer` fields. ### List fields and allow_null When using `allow_null` with `ListField` or a nested `many=True` serializer the previous behavior was to allow `null` values as items in the list. The behavior is now to allow `null` values instead of the list. For example, take the following field: NestedSerializer(many=True, allow_null=True) Previously the validation behavior would be: * `[{…}, null, {…}]` is **valid**. * `null` is **invalid**. Our validation behavior as of 3.2.0 is now: * `[{…}, null, {…}]` is **invalid**. * `null` is **valid**. If you want to allow `null` child items, you'll need to instead specify `allow_null` on the child class, using an explicit `ListField` instead of `many=True`. For example: ListField(child=NestedSerializer(allow_null=True)) ## What's next? The 3.3 release is currently planned for the start of October, and will be the last Kickstarter-funded release. This release is planned to include: * Search and filtering controls in the browsable API and admin interface. * Improvements and public API for the admin interface. * Improvements and public API for our templated HTML forms and fields. * Nested object and list support in HTML forms. Thanks once again to all our sponsors and supporters.django-rest-framework-3.3.2/docs/topics/3.3-announcement.md000066400000000000000000000077521263353514300235150ustar00rootroot00000000000000# Django REST framework 3.3 The 3.3 release marks the final work in the Kickstarter funded series. We'd like to offer a final resounding **thank you** to all our wonderful sponsors and supporters. The amount of work that has been achieved as a direct result of the funding is immense. We've added a huge amounts of new functionality, resolved nearly 2,000 tickets, and redesigned & refined large parts of the project. In order to continue driving REST framework forward, we'll shortly be announcing a new set of funding plans. Follow [@_tomchristie](https://twitter.com/_tomchristie) to keep up to date with these announcements, and be among the first set of sign ups. We strongly believe that collaboratively funded software development yields outstanding results for a relatively low investment-per-head. If you or your company use REST framework commercially, then we would strongly urge you to participate in this latest funding drive, and help us continue to build an increasingly polished & professional product. --- ## Release notes Significant new functionality in the 3.3 release includes: * Filters presented as HTML controls in the browsable API. * A [forms API][forms-api], allowing serializers to be rendered as HTML forms. * Django 1.9 support. * A [`JSONField` serializer field][jsonfield], corresponding to Django 1.9's Postgres `JSONField` model field. * Browsable API support [via AJAX][ajax-form], rather than server side request overloading. ![Filter Controls](../img/filter-controls.png) *Example of the new filter controls* --- ## Supported versions This release drops support for Django 1.5 and 1.6. Django 1.7, 1.8 or 1.9 are now required. This brings our supported versions into line with Django's [currently supported versions][django-supported-versions] ## Deprecations The AJAX based support for the browsable API means that there are a number of internal cleanups in the `request` class. For the vast majority of developers this should largely remain transparent: * To support form based `PUT` and `DELETE`, or to support form content types such as JSON, you should now use the [AJAX forms][ajax-form] javascript library. This replaces the previous 'method and content type overloading' that required significant internal complexity to the request class. * The `accept` query parameter is no longer supported by the default content negotiation class. If you require it then you'll need to [use a custom content negotiation class](browser-enhancements.md#url-based-accept-headers). * The custom `HTTP_X_HTTP_METHOD_OVERRIDE` header is no longer supported by default. If you require it then you'll need to [use custom middleware](browser-enhancements.md#http-header-based-method-overriding). The following pagination view attributes and settings have been moved into attributes on the pagination class since 3.1. Their usage was formerly deprecated, and has now been removed entirely, in line with the deprecation policy. * `view.paginate_by` - Use `paginator.page_size` instead. * `view.page_query_param` - Use `paginator.page_query_param` instead. * `view.paginate_by_param` - Use `paginator.page_size_query_param` instead. * `view.max_paginate_by` - Use `paginator.max_page_size` instead. * `settings.PAGINATE_BY` - Use `paginator.page_size` instead. * `settings.PAGINATE_BY_PARAM` - Use `paginator.page_size_query_param` instead. * `settings.MAX_PAGINATE_BY` - Use `paginator.max_page_size` instead. The `ModelSerializer` and `HyperlinkedModelSerializer` classes should now include either a `fields` or `exclude` option, although the `fields = '__all__'` shortcut may be used. Failing to include either of these two options is currently pending deprecation, and will be removed entirely in the 3.5 release. This behavior brings `ModelSerializer` more closely in line with Django's `ModelForm` behavior. [forms-api]: html-and-forms.md [ajax-form]: https://github.com/tomchristie/ajax-form [jsonfield]: ../../api-guide/fields#jsonfield [django-supported-versions]: https://www.djangoproject.com/download/#supported-versionsdjango-rest-framework-3.3.2/docs/topics/ajax-csrf-cors.md000066400000000000000000000060451263353514300233360ustar00rootroot00000000000000# Working with AJAX, CSRF & CORS > "Take a close look at possible CSRF / XSRF vulnerabilities on your own websites. They're the worst kind of vulnerability — very easy to exploit by attackers, yet not so intuitively easy to understand for software developers, at least until you've been bitten by one." > > — [Jeff Atwood][cite] ## Javascript clients If you’re building a JavaScript client to interface with your Web API, you'll need to consider if the client can use the same authentication policy that is used by the rest of the website, and also determine if you need to use CSRF tokens or CORS headers. AJAX requests that are made within the same context as the API they are interacting with will typically use `SessionAuthentication`. This ensures that once a user has logged in, any AJAX requests made can be authenticated using the same session-based authentication that is used for the rest of the website. AJAX requests that are made on a different site from the API they are communicating with will typically need to use a non-session-based authentication scheme, such as `TokenAuthentication`. ## CSRF protection [Cross Site Request Forgery][csrf] protection is a mechanism of guarding against a particular type of attack, which can occur when a user has not logged out of a web site, and continues to have a valid session. In this circumstance a malicious site may be able to perform actions against the target site, within the context of the logged-in session. To guard against these type of attacks, you need to do two things: 1. Ensure that the 'safe' HTTP operations, such as `GET`, `HEAD` and `OPTIONS` cannot be used to alter any server-side state. 2. Ensure that any 'unsafe' HTTP operations, such as `POST`, `PUT`, `PATCH` and `DELETE`, always require a valid CSRF token. If you're using `SessionAuthentication` you'll need to include valid CSRF tokens for any `POST`, `PUT`, `PATCH` or `DELETE` operations. In order to make AJAX requests, you need to include CSRF token in the HTTP header, as [described in the Django documentation][csrf-ajax]. ## CORS [Cross-Origin Resource Sharing][cors] is a mechanism for allowing clients to interact with APIs that are hosted on a different domain. CORS works by requiring the server to include a specific set of headers that allow a browser to determine if and when cross-domain requests should be allowed. The best way to deal with CORS in REST framework is to add the required response headers in middleware. This ensures that CORS is supported transparently, without having to change any behavior in your views. [Otto Yiu][ottoyiu] maintains the [django-cors-headers] package, which is known to work correctly with REST framework APIs. [cite]: http://www.codinghorror.com/blog/2008/10/preventing-csrf-and-xsrf-attacks.html [csrf]: https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF) [csrf-ajax]: https://docs.djangoproject.com/en/dev/ref/csrf/#ajax [cors]: http://www.w3.org/TR/cors/ [ottoyiu]: https://github.com/ottoyiu/ [django-cors-headers]: https://github.com/ottoyiu/django-cors-headers/ django-rest-framework-3.3.2/docs/topics/browsable-api.md000066400000000000000000000212321263353514300232360ustar00rootroot00000000000000# The Browsable API > It is a profoundly erroneous truism... that we should cultivate the habit of thinking of what we are doing. The precise opposite is the case. Civilization advances by extending the number of important operations which we can perform without thinking about them. > > — [Alfred North Whitehead][cite], An Introduction to Mathematics (1911) API may stand for Application *Programming* Interface, but humans have to be able to read the APIs, too; someone has to do the programming. Django REST Framework supports generating human-friendly HTML output for each resource when the `HTML` format is requested. These pages allow for easy browsing of resources, as well as forms for submitting data to the resources using `POST`, `PUT`, and `DELETE`. ## URLs If you include fully-qualified URLs in your resource output, they will be 'urlized' and made clickable for easy browsing by humans. The `rest_framework` package includes a [`reverse`][drfreverse] helper for this purpose. ## Formats By default, the API will return the format specified by the headers, which in the case of the browser is HTML. The format can be specified using `?format=` in the request, so you can look at the raw JSON response in a browser by adding `?format=json` to the URL. There are helpful extensions for viewing JSON in [Firefox][ffjsonview] and [Chrome][chromejsonview]. ## Customizing The browsable API is built with [Twitter's Bootstrap][bootstrap] (v 2.1.1), making it easy to customize the look-and-feel. To customize the default style, create a template called `rest_framework/api.html` that extends from `rest_framework/base.html`. For example: **templates/rest_framework/api.html** {% extends "rest_framework/base.html" %} ... # Override blocks with required customizations ### Overriding the default theme To replace the default theme, add a `bootstrap_theme` block to your `api.html` and insert a `link` to the desired Bootstrap theme css file. This will completely replace the included theme. {% block bootstrap_theme %} {% endblock %} Suitable pre-made replacement themes are available at [Bootswatch][bswatch]. To use any of the Bootswatch themes, simply download the theme's `bootstrap.min.css` file, add it to your project, and replace the default one as described above. You can also change the navbar variant, which by default is `navbar-inverse`, using the `bootstrap_navbar_variant` block. The empty `{% block bootstrap_navbar_variant %}{% endblock %}` will use the original Bootstrap navbar style. Full example: {% extends "rest_framework/base.html" %} {% block bootstrap_theme %} {% endblock %} {% block bootstrap_navbar_variant %}{% endblock %} For more specific CSS tweaks than simply overriding the default bootstrap theme you can override the `style` block. --- ![Cerulean theme][cerulean] *Screenshot of the bootswatch 'Cerulean' theme* --- ![Slate theme][slate] *Screenshot of the bootswatch 'Slate' theme* --- ### Blocks All of the blocks available in the browsable API base template that can be used in your `api.html`. * `body` - The entire html ``. * `bodyclass` - Class attribute for the `` tag, empty by default. * `bootstrap_theme` - CSS for the Bootstrap theme. * `bootstrap_navbar_variant` - CSS class for the navbar. * `branding` - Branding section of the navbar, see [Bootstrap components][bcomponentsnav]. * `breadcrumbs` - Links showing resource nesting, allowing the user to go back up the resources. It's recommended to preserve these, but they can be overridden using the breadcrumbs block. * `script` - JavaScript files for the page. * `style` - CSS stylesheets for the page. * `title` - Title of the page. * `userlinks` - This is a list of links on the right of the header, by default containing login/logout links. To add links instead of replace, use `{{ block.super }}` to preserve the authentication links. #### Components All of the standard [Bootstrap components][bcomponents] are available. #### Tooltips The browsable API makes use of the Bootstrap tooltips component. Any element with the `js-tooltip` class and a `title` attribute has that title content will display a tooltip on hover events. ### Login Template To add branding and customize the look-and-feel of the login template, create a template called `login.html` and add it to your project, eg: `templates/rest_framework/login.html`. The template should extend from `rest_framework/login_base.html`. You can add your site name or branding by including the branding block: {% block branding %}

    My Site Name

    {% endblock %} You can also customize the style by adding the `bootstrap_theme` or `style` block similar to `api.html`. ### Advanced Customization #### Context The context that's available to the template: * `allowed_methods` : A list of methods allowed by the resource * `api_settings` : The API settings * `available_formats` : A list of formats allowed by the resource * `breadcrumblist` : The list of links following the chain of nested resources * `content` : The content of the API response * `description` : The description of the resource, generated from its docstring * `name` : The name of the resource * `post_form` : A form instance for use by the POST form (if allowed) * `put_form` : A form instance for use by the PUT form (if allowed) * `display_edit_forms` : A boolean indicating whether or not POST, PUT and PATCH forms will be displayed * `request` : The request object * `response` : The response object * `version` : The version of Django REST Framework * `view` : The view handling the request * `FORMAT_PARAM` : The view can accept a format override * `METHOD_PARAM` : The view can accept a method override You can override the `BrowsableAPIRenderer.get_context()` method to customise the context that gets passed to the template. #### Not using base.html For more advanced customization, such as not having a Bootstrap basis or tighter integration with the rest of your site, you can simply choose not to have `api.html` extend `base.html`. Then the page content and capabilities are entirely up to you. #### Handling `ChoiceField` with large numbers of items. When a relationship or `ChoiceField` has too many items, rendering the widget containing all the options can become very slow, and cause the browsable API rendering to perform poorly. The simplest option in this case is to replace the select input with a standard text input. For example: author = serializers.HyperlinkedRelatedField( queryset=User.objects.all(), style={'base_template': 'input.html'} ) #### Autocomplete An alternative, but more complex option would be to replace the input with an autocomplete widget, that only loads and renders a subset of the available options as needed. If you need to do this you'll need to do some work to build a custom autocomplete HTML template yourself. There are [a variety of packages for autocomplete widgets][autocomplete-packages], such as [django-autocomplete-light][django-autocomplete-light], that you may want to refer to. Note that you will not be able to simply include these components as standard widgets, but will need to write the HTML template explicitly. This is because REST framework 3.0 no longer supports the `widget` keyword argument since it now uses templated HTML generation. Better support for autocomplete inputs is planned in future versions. --- [cite]: http://en.wikiquote.org/wiki/Alfred_North_Whitehead [drfreverse]: ../api-guide/reverse.md [ffjsonview]: https://addons.mozilla.org/en-US/firefox/addon/jsonview/ [chromejsonview]: https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc [bootstrap]: http://getbootstrap.com [cerulean]: ../img/cerulean.png [slate]: ../img/slate.png [bcustomize]: http://getbootstrap.com/2.3.2/customize.html [bswatch]: http://bootswatch.com/ [bcomponents]: http://getbootstrap.com/2.3.2/components.html [bcomponentsnav]: http://getbootstrap.com/2.3.2/components.html#navbar [autocomplete-packages]: https://www.djangopackages.com/grids/g/auto-complete/ [django-autocomplete-light]: https://github.com/yourlabs/django-autocomplete-light [django-autocomplete-light-install]: http://django-autocomplete-light.readthedocs.org/en/latest/#install django-rest-framework-3.3.2/docs/topics/browser-enhancements.md000066400000000000000000000075201263353514300246440ustar00rootroot00000000000000# Browser enhancements > "There are two noncontroversial uses for overloaded POST. The first is to *simulate* HTTP's uniform interface for clients like web browsers that don't support PUT or DELETE" > > — [RESTful Web Services][cite], Leonard Richardson & Sam Ruby. In order to allow the browsable API to function, there are a couple of browser enhancements that REST framework needs to provide. As of version 3.3.0 onwards these are enabled with javascript, using the [ajax-form][ajax-form] library. ## Browser based PUT, DELETE, etc... The [AJAX form library][ajax-form] supports browser-based `PUT`, `DELETE` and other methods on HTML forms. After including the library, use the `data-method` attribute on the form, like so:
    ...
    Note that prior to 3.3.0, this support was server-side rather than javascript based. The method overloading style (as used in [Ruby on Rails][rails]) is no longer supported due to subtle issues that it introduces in request parsing. ## Browser based submission of non-form content Browser-based submission of content types such as JSON are supported by the [AJAX form library][ajax-form], using form fields with `data-override='content-type'` and `data-override='content'` attributes. For example:
    Note that prior to 3.3.0, this support was server-side rather than javascript based. ## URL based format suffixes REST framework can take `?format=json` style URL parameters, which can be a useful shortcut for determining which content type should be returned from the view. This behavior is controlled using the `URL_FORMAT_OVERRIDE` setting. ## HTTP header based method overriding Prior to version 3.3.0 the semi extension header `X-HTTP-Method-Override` was supported for overriding the request method. This behavior is no longer in core, but can be adding if needed using middleware. For example: METHOD_OVERRIDE_HEADER = 'HTTP_X_HTTP_METHOD_OVERRIDE' class MethodOverrideMiddleware(object): def process_view(self, request, callback, callback_args, callback_kwargs): if request.method != 'POST': return if METHOD_OVERRIDE_HEADER not in request.META: return request.method = request.META[METHOD_OVERRIDE_HEADER] ## URL based accept headers Until version 3.3.0 REST framework included built-in support for `?accept=application/json` style URL parameters, which would allow the `Accept` header to be overridden. Since the introduction of the content negotiation API this behavior is no longer included in core, but may be added using a custom content negotiation class, if needed. For example: class AcceptQueryParamOverride() def get_accept_list(self, request): header = request.META.get('HTTP_ACCEPT', '*/*') header = request.query_params.get('_accept', header) return [token.strip() for token in header.split(',')] ## Doesn't HTML5 support PUT and DELETE forms? Nope. It was at one point intended to support `PUT` and `DELETE` forms, but was later [dropped from the spec][html5]. There remains [ongoing discussion][put_delete] about adding support for `PUT` and `DELETE`, as well as how to support content types other than form-encoded data. [cite]: http://www.amazon.com/Restful-Web-Services-Leonard-Richardson/dp/0596529260 [ajax-form]: https://github.com/tomchristie/ajax-form [rails]: http://guides.rubyonrails.org/form_helpers.html#how-do-forms-with-put-or-delete-methods-work [html5]: http://www.w3.org/TR/html5-diff/#changes-2010-06-24 [put_delete]: http://amundsen.com/examples/put-delete-forms/ django-rest-framework-3.3.2/docs/topics/contributing.md000066400000000000000000000244031263353514300232210ustar00rootroot00000000000000# Contributing to REST framework > The world can only really be changed one piece at a time. The art is picking that piece. > > — [Tim Berners-Lee][cite] There are many ways you can contribute to Django REST framework. We'd like it to be a community-led project, so please get involved and help shape the future of the project. ## Community The most important thing you can do to help push the REST framework project forward is to be actively involved wherever possible. Code contributions are often overvalued as being the primary way to get involved in a project, we don't believe that needs to be the case. If you use REST framework, we'd love you to be vocal about your experiences with it - you might consider writing a blog post about using REST framework, or publishing a tutorial about building a project with a particular JavaScript framework. Experiences from beginners can be particularly helpful because you'll be in the best position to assess which bits of REST framework are more difficult to understand and work with. Other really great ways you can help move the community forward include helping to answer questions on the [discussion group][google-group], or setting up an [email alert on StackOverflow][so-filter] so that you get notified of any new questions with the `django-rest-framework` tag. When answering questions make sure to help future contributors find their way around by hyperlinking wherever possible to related threads and tickets, and include backlinks from those items if relevant. ## Code of conduct Please keep the tone polite & professional. For some users a discussion on the REST framework mailing list or ticket tracker may be their first engagement with the open source community. First impressions count, so let's try to make everyone feel welcome. Be mindful in the language you choose. As an example, in an environment that is heavily male-dominated, posts that start 'Hey guys,' can come across as unintentionally exclusive. It's just as easy, and more inclusive to use gender neutral language in those situations. The [Django code of conduct][code-of-conduct] gives a fuller set of guidelines for participating in community forums. # Issues It's really helpful if you can make sure to address issues on the correct channel. Usage questions should be directed to the [discussion group][google-group]. Feature requests, bug reports and other issues should be raised on the GitHub [issue tracker][issues]. Some tips on good issue reporting: * When describing issues try to phrase your ticket in terms of the *behavior* you think needs changing rather than the *code* you think need changing. * Search the issue list first for related items, and make sure you're running the latest version of REST framework before reporting an issue. * If reporting a bug, then try to include a pull request with a failing test case. This will help us quickly identify if there is a valid issue, and make sure that it gets fixed more quickly if there is one. * Feature requests will often be closed with a recommendation that they be implemented outside of the core REST framework library. Keeping new feature requests implemented as third party libraries allows us to keep down the maintenance overhead of REST framework, so that the focus can be on continued stability, bugfixes, and great documentation. * Closing an issue doesn't necessarily mean the end of a discussion. If you believe your issue has been closed incorrectly, explain why and we'll consider if it needs to be reopened. ## Triaging issues Getting involved in triaging incoming issues is a good way to start contributing. Every single ticket that comes into the ticket tracker needs to be reviewed in order to determine what the next steps should be. Anyone can help out with this, you just need to be willing to * Read through the ticket - does it make sense, is it missing any context that would help explain it better? * Is the ticket reported in the correct place, would it be better suited as a discussion on the discussion group? * If the ticket is a bug report, can you reproduce it? Are you able to write a failing test case that demonstrates the issue and that can be submitted as a pull request? * If the ticket is a feature request, do you agree with it, and could the feature request instead be implemented as a third party package? * If a ticket hasn't had much activity and it addresses something you need, then comment on the ticket and try to find out what's needed to get it moving again. # Development To start developing on Django REST framework, clone the repo: git clone git@github.com:tomchristie/django-rest-framework.git Changes should broadly follow the [PEP 8][pep-8] style conventions, and we recommend you set up your editor to automatically indicate non-conforming styles. ## Testing To run the tests, clone the repository, and then: # Setup the virtual environment virtualenv env source env/bin/activate pip install -r requirements.txt # Run the tests ./runtests.py ### Test options Run using a more concise output style. ./runtests.py -q Run the tests using a more concise output style, no coverage, no flake8. ./runtests.py --fast Don't run the flake8 code linting. ./runtests.py --nolint Only run the flake8 code linting, don't run the tests. ./runtests.py --lintonly Run the tests for a given test case. ./runtests.py MyTestCase Run the tests for a given test method. ./runtests.py MyTestCase.test_this_method Shorter form to run the tests for a given test method. ./runtests.py test_this_method Note: The test case and test method matching is fuzzy and will sometimes run other tests that contain a partial string match to the given command line input. ### Running against multiple environments You can also use the excellent [tox][tox] testing tool to run the tests against all supported versions of Python and Django. Install `tox` globally, and then simply run: tox ## Pull requests It's a good idea to make pull requests early on. A pull request represents the start of a discussion, and doesn't necessarily need to be the final, finished submission. It's also always best to make a new branch before starting work on a pull request. This means that you'll be able to later switch back to working on another separate issue without interfering with an ongoing pull requests. It's also useful to remember that if you have an outstanding pull request then pushing new commits to your GitHub repo will also automatically update the pull requests. GitHub's documentation for working on pull requests is [available here][pull-requests]. Always run the tests before submitting pull requests, and ideally run `tox` in order to check that your modifications are compatible with both Python 2 and Python 3, and that they run properly on all supported versions of Django. Once you've made a pull request take a look at the Travis build status in the GitHub interface and make sure the tests are running as you'd expect. ![Travis status][travis-status] *Above: Travis build notifications* ## Managing compatibility issues Sometimes, in order to ensure your code works on various different versions of Django, Python or third party libraries, you'll need to run slightly different code depending on the environment. Any code that branches in this way should be isolated into the `compat.py` module, and should provide a single common interface that the rest of the codebase can use. # Documentation The documentation for REST framework is built from the [Markdown][markdown] source files in [the docs directory][docs]. There are many great Markdown editors that make working with the documentation really easy. The [Mou editor for Mac][mou] is one such editor that comes highly recommended. ## Building the documentation To build the documentation, install MkDocs with `pip install mkdocs` and then run the following command. mkdocs build This will build the documentation into the `site` directory. You can build the documentation and open a preview in a browser window by using the `serve` command. mkdocs serve ## Language style Documentation should be in American English. The tone of the documentation is very important - try to stick to a simple, plain, objective and well-balanced style where possible. Some other tips: * Keep paragraphs reasonably short. * Don't use abbreviations such as 'e.g.' but instead use the long form, such as 'For example'. ## Markdown style There are a couple of conventions you should follow when working on the documentation. ##### 1. Headers Headers should use the hash style. For example: ### Some important topic The underline style should not be used. **Don't do this:** Some important topic ==================== ##### 2. Links Links should always use the reference style, with the referenced hyperlinks kept at the end of the document. Here is a link to [some other thing][other-thing]. More text... [other-thing]: http://example.com/other/thing This style helps keep the documentation source consistent and readable. If you are hyperlinking to another REST framework document, you should use a relative link, and link to the `.md` suffix. For example: [authentication]: ../api-guide/authentication.md Linking in this style means you'll be able to click the hyperlink in your Markdown editor to open the referenced document. When the documentation is built, these links will be converted into regular links to HTML pages. ##### 3. Notes If you want to draw attention to a note or warning, use a pair of enclosing lines, like so: --- **Note:** A useful documentation note. --- [cite]: http://www.w3.org/People/Berners-Lee/FAQ.html [code-of-conduct]: https://www.djangoproject.com/conduct/ [google-group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [so-filter]: http://stackexchange.com/filters/66475/rest-framework [issues]: https://github.com/tomchristie/django-rest-framework/issues?state=open [pep-8]: http://www.python.org/dev/peps/pep-0008/ [travis-status]: ../img/travis-status.png [pull-requests]: https://help.github.com/articles/using-pull-requests [tox]: http://tox.readthedocs.org/en/latest/ [markdown]: http://daringfireball.net/projects/markdown/basics [docs]: https://github.com/tomchristie/django-rest-framework/tree/master/docs [mou]: http://mouapp.com/ django-rest-framework-3.3.2/docs/topics/documenting-your-api.md000066400000000000000000000134671263353514300246010ustar00rootroot00000000000000# Documenting your API > A REST API should spend almost all of its descriptive effort in defining the media type(s) used for representing resources and driving application state. > > — Roy Fielding, [REST APIs must be hypertext driven][cite] There are a variety of approaches to API documentation. This document introduces a few of the various tools and options you might choose from. The approaches should not be considered exclusive - you may want to provide more than one documentation style for you API, such as a self describing API that also includes static documentation of the various API endpoints. ## Endpoint documentation The most common way to document Web APIs today is to produce documentation that lists the API endpoints verbatim, and describes the allowable operations on each. There are various tools that allow you to do this in an automated or semi-automated way. --- #### Django REST Swagger Marc Gibbons' [Django REST Swagger][django-rest-swagger] integrates REST framework with the [Swagger][swagger] API documentation tool. The package produces well presented API documentation, and includes interactive tools for testing API endpoints. The package is fully documented, well supported, and comes highly recommended. Django REST Swagger supports REST framework versions 2.3 and above. ![Screenshot - Django REST Swagger][image-django-rest-swagger] --- #### REST Framework Docs The [REST Framework Docs][rest-framework-docs] package is an earlier project, also by Marc Gibbons, that offers clean, simple autogenerated documentation for your API. ![Screenshot - REST Framework Docs][image-rest-framework-docs] --- #### Apiary There are various other online tools and services for providing API documentation. One notable service is [Apiary][apiary]. With Apiary, you describe your API using a simple markdown-like syntax. The generated documentation includes API interaction, a mock server for testing & prototyping, and various other tools. ![Screenshot - Apiary][image-apiary] --- ## Self describing APIs The browsable API that REST framework provides makes it possible for your API to be entirely self describing. The documentation for each API endpoint can be provided simply by visiting the URL in your browser. ![Screenshot - Self describing API][image-self-describing-api] --- #### Setting the title The title that is used in the browsable API is generated from the view class name or function name. Any trailing `View` or `ViewSet` suffix is stripped, and the string is whitespace separated on uppercase/lowercase boundaries or underscores. For example, the view `UserListView`, will be named `User List` when presented in the browsable API. When working with viewsets, an appropriate suffix is appended to each generated view. For example, the view set `UserViewSet` will generate views named `User List` and `User Instance`. #### Setting the description The description in the browsable API is generated from the docstring of the view or viewset. If the python `markdown` library is installed, then [markdown syntax][markdown] may be used in the docstring, and will be converted to HTML in the browsable API. For example: class AccountListView(views.APIView): """ Returns a list of all **active** accounts in the system. For more details on how accounts are activated please [see here][ref]. [ref]: http://example.com/activating-accounts """ Note that one constraint of using viewsets is that any documentation be used for all generated views, so for example, you cannot have differing documentation for the generated list view and detail view. #### The `OPTIONS` method REST framework APIs also support programmatically accessible descriptions, using the `OPTIONS` HTTP method. A view will respond to an `OPTIONS` request with metadata including the name, description, and the various media types it accepts and responds with. When using the generic views, any `OPTIONS` requests will additionally respond with metadata regarding any `POST` or `PUT` actions available, describing which fields are on the serializer. You can modify the response behavior to `OPTIONS` requests by overriding the `metadata` view method. For example: def metadata(self, request): """ Don't include the view description in OPTIONS responses. """ data = super(ExampleView, self).metadata(request) data.pop('description') return data --- ## The hypermedia approach To be fully RESTful an API should present its available actions as hypermedia controls in the responses that it sends. In this approach, rather than documenting the available API endpoints up front, the description instead concentrates on the *media types* that are used. The available actions that may be taken on any given URL are not strictly fixed, but are instead made available by the presence of link and form controls in the returned document. To implement a hypermedia API you'll need to decide on an appropriate media type for the API, and implement a custom renderer and parser for that media type. The [REST, Hypermedia & HATEOAS][hypermedia-docs] section of the documentation includes pointers to background reading, as well as links to various hypermedia formats. [cite]: http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven [django-rest-swagger]: https://github.com/marcgibbons/django-rest-swagger [swagger]: https://developers.helloreverb.com/swagger/ [rest-framework-docs]: https://github.com/marcgibbons/django-rest-framework-docs [apiary]: http://apiary.io/ [markdown]: http://daringfireball.net/projects/markdown/ [hypermedia-docs]: rest-hypermedia-hateoas.md [image-django-rest-swagger]: ../img/django-rest-swagger.png [image-rest-framework-docs]: ../img/rest-framework-docs.png [image-apiary]: ../img/apiary.png [image-self-describing-api]: ../img/self-describing.png django-rest-framework-3.3.2/docs/topics/funding.md000066400000000000000000000255761263353514300221600ustar00rootroot00000000000000 # Funding If you use REST framework commercially we strongly encourage you to invest in its continued development by signing up for a paid plan. **We believe that collaboratively funded software can offer outstanding returns on investment, by allowing users and clients to collectively share the cost of development.** Signing up for a paid plan will: * Directly contribute to faster releases, more features and higher quality software. * Allow more time to be invested in documentation, issue triage and community support. * Safeguard the future development of REST framework. REST framework will always be open source and permissively licensed, but we firmly believe it is in the commercial best-interest for users of the project to fund its ongoing development. --- ## Making the business case Our successful Kickstarter campaign demonstrates the cost-reward ratio of shared development funding. With *typical corporate fundings of just £100-£1000 per organization* we successfully delivered: * The comprehensive 3.0 serializer redesign. * Substantial improvements to the Browsable API. * The admin interface. * A new pagination API including offset/limit and cursor pagination implementations, plus on-page controls. * A versioning API, including URL-based and header-based versioning schemes. * Support for customizable exception handling. * Support for Django's PostgreSQL HStoreField, ArrayField and JSONField. * Templated HTML form support, including HTML forms with nested list and objects. * Internationalization support for API responses, currently with 27 languages. * The metadata APIs for handling `OPTIONS` requests and schema endpoints. * Numerous minor improvements and better quality throughout the codebase. * Ongoing triage and community support, closing over 1600 tickets. This incredible level of return on investment is *only possible through collaboratively funded models*, which is why we believe that supporting our paid plans is in everyone's best interest. --- ## Individual plan This subscription is recommended for freelancers and other individuals with an interest in seeing REST framework continue to improve. If you are using REST framework as an full-time employee, consider recommending that your company takes out a [corporate plan](#corporate-plans).
    $ 15 /month
    Individual
    Support ongoing development
    Credited on the site
    *Billing is monthly and you can cancel at any time.* --- ## Corporate plans These subscriptions are recommended for companies and organizations using REST framework either publicly or privately. In exchange for funding you'll also receive advertising space on our site, allowing you to **promote your company or product to many tens of thousands of developers worldwide**. Our professional and premium plans also include **priority support**. At any time your engineers can escalate an issue or discussion group thread, and we'll ensure it gets a guaranteed response within the next working day.
    $ 50 /month
    Basic
    Support ongoing development
    Funding page ad placement
    $ 250 /month
    Professional
    Add a half day per month development time to the project
    Homepage ad placement
    Priority support for your engineers
    $ 500 /month
    Premium
    Add one full day per month development time to the project
    Full site ad placement
    Priority support for your engineers
    *Billing is monthly and you can cancel at any time.* Once you've signed up we'll contact you via email and arrange your ad placements on the site. For further enquires please contact tom@tomchristie.com. --- ## Roadmap Although we're incredibly proud of REST framework in its current state we believe there is still huge scope for improvement. What we're aiming for here is a *highly polished, rock solid product*. This needs to backed up with impeccable documentation and a great third party ecosystem. The roadmap below is a broad indication of just some of the ongoing and future work we believe is important to REST framework. * Increasing our "bus factor" through documented organizational process & safeguards. * More time towards testing and hardening releases, with only gradual, well-documented deprecations. * A formal policy on security backports for non-current releases. * Continuing triage & community support. * Improved project documentation, including versioned & internationalized docs. * Improved third party package visibility. * Refining the admin interface, ensuring it has a fully customizable API and making it suitable as end-user facing application. * Cleaning up internal complexities including the `BrowsableAPIRenderer` and `Request` object. * Support for alternative backends such as SQLAlchemy. * Support for non-database backed services. * HTTP Caching API & support for conditional database lookups. * Benchmarking and performance improvements. * In depth documentation on advanced usage and best practices. * Documentation & support for integration with realtime systems. * Hypermedia support and client libraries. * Support for JSON schema as endpoints or `OPTIONS` responses. * API metric tools. * Debug & logging tools. * Third party GraphQL support. By taking out a paid plan you'll be directly contributing towards making these features happen. django-rest-framework-3.3.2/docs/topics/html-and-forms.md000066400000000000000000000203451263353514300233430ustar00rootroot00000000000000# HTML & Forms REST framework is suitable for returning both API style responses, and regular HTML pages. Additionally, serializers can used as HTML forms and rendered in templates. ## Rendering HTML In order to return HTML responses you'll need to either `TemplateHTMLRenderer`, or `StaticHTMLRenderer`. The `TemplateHTMLRenderer` class expects the response to contain a dictionary of context data, and renders an HTML page based on a template that must be specified either in the view or on the response. The `StaticHTMLRender` class expects the response to contain a string of the pre-rendered HTML content. Because static HTML pages typically have different behavior from API responses you'll probably need to write any HTML views explicitly, rather than relying on the built-in generic views. Here's an example of a view that returns a list of "Profile" instances, rendered in an HTML template: **views.py**: from my_project.example.models import Profile from rest_framework.renderers import TemplateHTMLRenderer from rest_framework.response import Response from rest_framework.views import APIView class ProfileList(APIView): renderer_classes = [TemplateHTMLRenderer] template_name = 'profile_list.html' def get(self, request): queryset = Profile.objects.all() return Response({'profiles': queryset}) **profile_list.html**:

    Profiles

      {% for profile in profiles %}
    • {{ profile.name }}
    • {% endfor %}
    ## Rendering Forms Serializers may be rendered as forms by using the `render_form` template tag, and including the serializer instance as context to the template. The following view demonstrates an example of using a serializer in a template for viewing and updating a model instance: **views.py**: from django.shortcuts import get_object_or_404 from my_project.example.models import Profile from rest_framework.renderers import TemplateHTMLRenderer from rest_framework.views import APIView class ProfileDetail(APIView): renderer_classes = [TemplateHTMLRenderer] template_name = 'profile_detail.html' def get(self, request, pk): profile = get_object_or_404(Profile, pk=pk) serializer = ProfileSerializer(profile) return Response({'serializer': serializer, 'profile': profile}) def post(self, request, pk): profile = get_object_or_404(Profile, pk=pk) serializer = ProfileSerializer(profile) if not serializer.is_valid(): return Response({'serializer': serializer, 'profile': profile}) return redirect('profile-list') **profile_detail.html**: {% load rest_framework %}

    Profile - {{ profile.name }}

    {% csrf_token %} {% render_form serializer %}
    ### Using template packs The `render_form` tag takes an optional `template_pack` argument, that specifies which template directory should be used for rendering the form and form fields. REST framework includes three built-in template packs, all based on Bootstrap 3. The built-in styles are `horizontal`, `vertical`, and `inline`. The default style is `horizontal`. To use any of these template packs you'll want to also include the Bootstrap 3 CSS. The following HTML will link to a CDN hosted version of the Bootstrap 3 CSS: … Third party packages may include alternate template packs, by bundling a template directory containing the necessary form and field templates. Let's take a look at how to render each of the three available template packs. For these examples we'll use a single serializer class to present a "Login" form. class LoginSerializer(serializers.Serializer): email = serializers.EmailField( max_length=100, style={'placeholder': 'Email'} ) password = serializers.CharField( max_length=100, style={'input_type': 'password', 'placeholder': 'Password'} ) remember_me = serializers.BooleanField() --- #### `rest_framework/vertical` Presents form labels above their corresponding control inputs, using the standard Bootstrap layout. *This is the default template pack.* {% load rest_framework %} ...
    {% csrf_token %} {% render_form serializer template_pack='rest_framework/vertical' %}
    ![Vertical form example](../img/vertical.png) --- #### `rest_framework/horizontal` Presents labels and controls alongside each other, using a 2/10 column split. *This is the form style used in the browsable API and admin renderers.* {% load rest_framework %} ...
    {% csrf_token %} {% render_form serializer %}
    ![Horizontal form example](../img/horizontal.png) --- #### `rest_framework/inline` A compact form style that presents all the controls inline. {% load rest_framework %} ...
    {% csrf_token %} {% render_form serializer template_pack='rest_framework/inline' %}
    ![Inline form example](../img/inline.png) ## Field styles Serializer fields can have their rendering style customized by using the `style` keyword argument. This argument is a dictionary of options that control the template and layout used. The most common way to customize the field style is to use the `base_template` style keyword argument to select which template in the template pack should be use. For example, to render a `CharField` as an HTML textarea rather than the default HTML input, you would use something like this: details = serializers.CharField( max_length=1000, style={'base_template': 'textarea.html'} ) If you instead want a field to be rendered using a custom template that is *not part of an included template pack*, you can instead use the `template` style option, to fully specify a template name: details = serializers.CharField( max_length=1000, style={'template': 'my-field-templates/custom-input.html'} ) Field templates can also use additional style properties, depending on their type. For example, the `textarea.html` template also accepts a `rows` property that can be used to affect the sizing of the control. details = serializers.CharField( max_length=1000, style={'base_template': 'textarea.html', 'rows': 10} ) The complete list of `base_template` options and their associated style options is listed below. base_template | Valid field types | Additional style options ----|----|---- input.html | Any string, numeric or date/time field | input_type, placeholder, hide_label textarea.html | `CharField` | rows, placeholder, hide_label select.html | `ChoiceField` or relational field types | hide_label radio.html | `ChoiceField` or relational field types | inline, hide_label select_multiple.html | `MultipleChoiceField` or relational fields with `many=True` | hide_label checkbox_multiple.html | `MultipleChoiceField` or relational fields with `many=True` | inline, hide_label checkbox.html | `BooleanField` | hide_label fieldset.html | Nested serializer | hide_label list_fieldset.html | `ListField` or nested serializer with `many=True` | hide_label django-rest-framework-3.3.2/docs/topics/internationalization.md000066400000000000000000000140061263353514300247550ustar00rootroot00000000000000# Internationalization > Supporting internationalization is not optional. It must be a core feature. > > — [Jannis Leidel, speaking at Django Under the Hood, 2015][cite]. REST framework ships with translatable error messages. You can make these appear in your language enabling [Django's standard translation mechanisms][django-translation]. Doing so will allow you to: * Select a language other than English as the default, using the standard `LANGUAGE_CODE` Django setting. * Allow clients to choose a language themselves, using the `LocaleMiddleware` included with Django. A typical usage for API clients would be to include an `Accept-Language` request header. ## Enabling internationalized APIs You can change the default language by using the standard Django `LANGUAGE_CODE` setting: LANGUAGE_CODE = "es-es" You can turn on per-request language requests by adding `LocalMiddleware` to your `MIDDLEWARE_CLASSES` setting: MIDDLEWARE_CLASSES = [ ... 'django.middleware.locale.LocaleMiddleware' ] When per-request internationalization is enabled, client requests will respect the `Accept-Language` header where possible. For example, let's make a request for an unsupported media type: **Request** GET /api/users HTTP/1.1 Accept: application/xml Accept-Language: es-es Host: example.org **Response** HTTP/1.0 406 NOT ACCEPTABLE {"detail": "No se ha podido satisfacer la solicitud de cabecera de Accept."} REST framework includes these built-in translations both for standard exception cases, and for serializer validation errors. Note that the translations only apply to the error strings themselves. The format of error messages, and the keys of field names will remain the same. An example `400 Bad Request` response body might look like this: {"detail": {"username": ["Esse campo deve ser unico."]}} If you want to use different string for parts of the response such as `detail` and `non_field_errors` then you can modify this behavior by using a [custom exception handler][custom-exception-handler]. #### Specifying the set of supported languages. By default all available languages will be supported. If you only wish to support a subset of the available languages, use Django's standard `LANGUAGES` setting: LANGUAGES = [ ('de', _('German')), ('en', _('English')), ] ## Adding new translations REST framework translations are managed online using [Transifex][transifex-project]. You can use the Transifex service to add new translation languages. The maintenance team will then ensure that these translation strings are included in the REST framework package. Sometimes you may need to add translation strings to your project locally. You may need to do this if: * You want to use REST Framework in a language which has not been translated yet on Transifex. * Your project includes custom error messages, which are not part of REST framework's default translation strings. #### Translating a new language locally This guide assumes you are already familiar with how to translate a Django app. If you're not, start by reading [Django's translation docs][django-translation]. If you're translating a new language you'll need to translate the existing REST framework error messages: 1. Make a new folder where you want to store the internationalization resources. Add this path to your [`LOCALE_PATHS`][django-locale-paths] setting. 2. Now create a subfolder for the language you want to translate. The folder should be named using [locale name][django-locale-name] notation. For example: `de`, `pt_BR`, `es_AR`. 3. Now copy the [base translations file][django-po-source] from the REST framework source code into your translations folder. 4. Edit the `django.po` file you've just copied, translating all the error messages. 5. Run `manage.py compilemessages -l pt_BR` to make the translations available for Django to use. You should see a message like `processing file django.po in <...>/locale/pt_BR/LC_MESSAGES`. 6. Restart your development server to see the changes take effect. If you're only translating custom error messages that exist inside your project codebase you don't need to copy the REST framework source `django.po` file into a `LOCALE_PATHS` folder, and can instead simply run Django's standard `makemessages` process. ## How the language is determined If you want to allow per-request language preferences you'll need to include `django.middleware.locale.LocaleMiddleware` in your `MIDDLEWARE_CLASSES` setting. You can find more information on how the language preference is determined in the [Django documentation][django-language-preference]. For reference, the method is: 1. First, it looks for the language prefix in the requested URL. 2. Failing that, it looks for the `LANGUAGE_SESSION_KEY` key in the current user’s session. 3. Failing that, it looks for a cookie. 4. Failing that, it looks at the `Accept-Language` HTTP header. 5. Failing that, it uses the global `LANGUAGE_CODE` setting. For API clients the most appropriate of these will typically be to use the `Accept-Language` header; Sessions and cookies will not be available unless using session authentication, and generally better practice to prefer an `Accept-Language` header for API clients rather than using language URL prefixes. [cite]: http://youtu.be/Wa0VfS2q94Y [django-translation]: https://docs.djangoproject.com/en/1.7/topics/i18n/translation [custom-exception-handler]: ../api-guide/exceptions.md#custom-exception-handling [transifex-project]: https://www.transifex.com/projects/p/django-rest-framework/ [django-po-source]: https://raw.githubusercontent.com/tomchristie/django-rest-framework/master/rest_framework/locale/en_US/LC_MESSAGES/django.po [django-language-preference]: https://docs.djangoproject.com/en/1.7/topics/i18n/translation/#how-django-discovers-language-preference [django-locale-paths]: https://docs.djangoproject.com/en/1.7/ref/settings/#std:setting-LOCALE_PATHS [django-locale-name]: https://docs.djangoproject.com/en/1.7/topics/i18n/#term-locale-name [contributing]: ../../CONTRIBUTING.md django-rest-framework-3.3.2/docs/topics/kickstarter-announcement.md000066400000000000000000000342731263353514300255360ustar00rootroot00000000000000# Kickstarting Django REST framework 3 --- --- In order to continue to drive the project forward, I'm launching a Kickstarter campaign to help fund the development of a major new release - Django REST framework 3. ## Project details This new release will allow us to comprehensively address some of the shortcomings of the framework, and will aim to include the following: * Faster, simpler and easier-to-use serializers. * An alternative admin-style interface for the browsable API. * Search and filtering controls made accessible in the browsable API. * Alternative API pagination styles. * Documentation around API versioning. * Triage of outstanding tickets. * Improving the ongoing quality and maintainability of the project. Full details are available now on the [project page](https://www.kickstarter.com/projects/tomchristie/django-rest-framework-3). If you're interested in helping make sustainable open source development a reality please [visit the Kickstarter page](https://www.kickstarter.com/projects/tomchristie/django-rest-framework-3) and consider funding the project. I can't wait to see where this takes us! Many thanks to everyone for your support so far, Tom Christie :) --- ## Sponsors We've now blazed way past all our goals, with a staggering £30,000 (~$50,000), meaning I'll be in a position to work on the project significantly beyond what we'd originally planned for. I owe a huge debt of gratitude to all the wonderful companies and individuals who have been backing the project so generously, and making this possible. --- ### Platinum sponsors Our platinum sponsors have each made a hugely substantial contribution to the future development of Django REST framework, and I simply can't thank them enough.
    --- ### Gold sponsors Our gold sponsors include companies large and small. Many thanks for their significant funding of the project and their commitment to sustainable open-source development.
    --- ### Silver sponsors The serious financial contribution that our silver sponsors have made is very much appreciated. I'd like to say a particular thank you to individuals who have choosen to privately support the project at this level.
    **Individual backers**: Paul Hallett, Paul Whipp, Dylan Roy, Jannis Leidel, Xavier Ordoquy, Johannes Spielmann, Rob Spectre, Chris Heisel, Marwan Alsabbagh, Haris Ali, Tuomas Toivonen. --- ### Advocates The following individuals made a significant financial contribution to the development of Django REST framework 3, for which I can only offer a huge, warm and sincere thank you! **Individual backers**: Jure Cuhalev, Kevin Brolly, Ferenc Szalai, Dougal Matthews, Stefan Foulis, Carlos Hernando, Alen Mujezinovic, Ross Crawford-d'Heureuse, George Kappel, Alasdair Nicol, John Carr, Steve Winton, Trey, Manuel Miranda, David Horn, Vince Mi, Daniel Sears, Jamie Matthews, Ryan Currah, Marty Kemka, Scott Nixon, Moshin Elahi, Kevin Campbell, Jose Antonio Leiva Izquierdo, Kevin Stone, Andrew Godwin, Tijs Teulings, Roger Boardman, Xavier Antoviaque, Darian Moody, Lujeni, Jon Dugan, Wiley Kestner, Daniel C. Silverstein, Daniel Hahler, Subodh Nijsure, Philipp Weidenhiller, Yusuke Muraoka, Danny Roa, Reto Aebersold, Kyle Getrost, Décébal Hormuz, James Dacosta, Matt Long, Mauro Rocco, Tyrel Souza, Ryan Campbell, Ville Jyrkkä, Charalampos Papaloizou, Nikolai Røed Kristiansen, Antoni Aloy López, Celia Oakley, Michał Krawczak, Ivan VenOsdel, Tim Watts, Martin Warne, Nicola Jordan, Ryan Kaskel. **Corporate backers**: Savannah Informatics, Prism Skylabs, Musical Operating Devices. --- ### Supporters There were also almost 300 further individuals choosing to help fund the project at other levels or choosing to give anonymously. Again, thank you, thank you, thank you! django-rest-framework-3.3.2/docs/topics/project-management.md000066400000000000000000000232701263353514300242730ustar00rootroot00000000000000# Project management > "No one can whistle a symphony; it takes a whole orchestra to play it" > > — Halford E. Luccock This document outlines our project management processes for REST framework. The aim is to ensure that the project has a high ["bus factor"][bus-factor], and can continue to remain well supported for the foreseeable future. Suggestions for improvements to our process are welcome. --- ## Maintenance team We have a quarterly maintenance cycle where new members may join the maintenance team. We currently cap the size of the team at 5 members, and may encourage folks to step out of the team for a cycle to allow new members to participate. #### Current team The [maintenance team for Q1 2015](https://github.com/tomchristie/django-rest-framework/issues/2190): * [@tomchristie](https://github.com/tomchristie/) * [@xordoquy](https://github.com/xordoquy/) (Release manager.) * [@carltongibson](https://github.com/carltongibson/) * [@kevin-brown](https://github.com/kevin-brown/) * [@jpadilla](https://github.com/jpadilla/) #### Maintenance cycles Each maintenance cycle is initiated by an issue being opened with the `Process` label. * To be considered for a maintainer role simply comment against the issue. * Existing members must explicitly opt-in to the next cycle by check-marking their name. * The final decision on the incoming team will be made by `@tomchristie`. Members of the maintenance team will be added as collaborators to the repository. The following template should be used for the description of the issue, and serves as the formal process for selecting the team. This issue is for determining the maintenance team for the *** period. Please see the [Project management](http://www.django-rest-framework.org/topics/project-management/) section of our documentation for more details. --- #### Renewing existing members. The following people are the current maintenance team. Please checkmark your name if you wish to continue to have write permission on the repository for the *** period. - [ ] @*** - [ ] @*** - [ ] @*** - [ ] @*** - [ ] @*** --- #### New members. If you wish to be considered for this or a future date, please comment against this or subsequent issues. To modify this process for future maintenance cycles make a pull request to the [project management](http://www.django-rest-framework.org/topics/project-management/) documentation. #### Responsibilities of team members Team members have the following responsibilities. * Close invalid or resolved tickets. * Add triage labels and milestones to tickets. * Merge finalized pull requests. * Build and deploy the documentation, using `mkdocs gh-deploy`. * Build and update the included translation packs. Further notes for maintainers: * Code changes should come in the form of a pull request - do not push directly to master. * Maintainers should typically not merge their own pull requests. * Each issue/pull request should have exactly one label once triaged. * Search for un-triaged issues with [is:open no:label][un-triaged]. It should be noted that participating actively in the REST framework project clearly **does not require being part of the maintenance team**. Almost every import part of issue triage and project improvement can be actively worked on regardless of your collaborator status on the repository. --- ## Release process The release manager is selected on every quarterly maintenance cycle. * The manager should be selected by `@tomchristie`. * The manager will then have the maintainer role added to PyPI package. * The previous manager will then have the maintainer role removed from the PyPI package. Our PyPI releases will be handled by either the current release manager, or by `@tomchristie`. Every release should have an open issue tagged with the `Release` label and marked against the appropriate milestone. The following template should be used for the description of the issue, and serves as a release checklist. Release manager is @***. Pull request is #***. During development cycle: - [ ] Upload the new content to be translated to [transifex](http://www.django-rest-framework.org/topics/project-management/#translations). Checklist: - [ ] Create pull request for [release notes](https://github.com/tomchristie/django-rest-framework/blob/master/docs/topics/release-notes.md) based on the [*.*.* milestone](https://github.com/tomchristie/django-rest-framework/milestones/***). - [ ] Update the translations from [transifex](http://www.django-rest-framework.org/topics/project-management/#translations). - [ ] Ensure the pull request increments the version to `*.*.*` in [`restframework/__init__.py`](https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/__init__.py). - [ ] Confirm with @tomchristie that release is finalized and ready to go. - [ ] Ensure that release date is included in pull request. - [ ] Merge the release pull request. - [ ] Push the package to PyPI with `./setup.py publish`. - [ ] Tag the release, with `git tag -a *.*.* -m 'version *.*.*'; git push --tags`. - [ ] Deploy the documentation with `mkdocs gh-deploy`. - [ ] Make a release announcement on the [discussion group](https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework). - [ ] Make a release announcement on twitter. - [ ] Close the milestone on GitHub. To modify this process for future releases make a pull request to the [project management](http://www.django-rest-framework.org/topics/project-management/) documentation. When pushing the release to PyPI ensure that your environment has been installed from our development `requirement.txt`, so that documentation and PyPI installs are consistently being built against a pinned set of packages. --- ## Translations The maintenance team are responsible for managing the translation packs include in REST framework. Translating the source strings into multiple languages is managed through the [transifex service][transifex-project]. ### Managing Transifex The [official Transifex client][transifex-client] is used to upload and download translations to Transifex. The client is installed using pip: pip install transifex-client To use it you'll need a login to Transifex which has a password, and you'll need to have administrative access to the Transifex project. You'll need to create a `~/.transifexrc` file which contains your credentials. [https://www.transifex.com] username = *** token = *** password = *** hostname = https://www.transifex.com ### Upload new source files When any user visible strings are changed, they should be uploaded to Transifex so that the translators can start to translate them. To do this, just run: # 1. Update the source django.po file, which is the US English version. cd rest_framework django-admin.py makemessages -l en_US # 2. Push the source django.po file to Transifex. cd .. tx push -s When pushing source files, Transifex will update the source strings of a resource to match those from the new source file. Here's how differences between the old and new source files will be handled: * New strings will be added. * Modified strings will be added as well. * Strings which do not exist in the new source file will be removed from the database, along with their translations. If that source strings gets re-added later then [Transifex Translation Memory][translation-memory] will automatically include the translation string. ### Download translations When a translator has finished translating their work needs to be downloaded from Transifex into the REST framework repository. To do this, run: # 3. Pull the translated django.po files from Transifex. tx pull -a cd rest_framework # 4. Compile the binary .mo files for all supported languages. django-admin.py compilemessages --- ## Project requirements All our test requirements are pinned to exact versions, in order to ensure that our test runs are reproducible. We maintain the requirements in the `requirements` directory. The requirements files are referenced from the `tox.ini` configuration file, ensuring we have a single source of truth for package versions used in testing. Package upgrades should generally be treated as isolated pull requests. You can check if there are any packages available at a newer version, by using the `pip list --outdated`. --- ## Project ownership The PyPI package is owned by `@tomchristie`. As a backup `@j4mie` also has ownership of the package. If `@tomchristie` ceases to participate in the project then `@j4mie` has responsibility for handing over ownership duties. #### Outstanding management & ownership issues The following issues still need to be addressed: * [Consider moving the repo into a proper GitHub organization][github-org]. * Ensure `@jamie` has back-up access to the `django-rest-framework.org` domain setup and admin. * Document ownership of the [live example][sandbox] API. * Document ownership of the [mailing list][mailing-list] and IRC channel. * Document ownership and management of the security mailing list. [bus-factor]: http://en.wikipedia.org/wiki/Bus_factor [un-triaged]: https://github.com/tomchristie/django-rest-framework/issues?q=is%3Aopen+no%3Alabel [transifex-project]: https://www.transifex.com/projects/p/django-rest-framework/ [transifex-client]: https://pypi.python.org/pypi/transifex-client [translation-memory]: http://docs.transifex.com/guides/tm#let-tm-automatically-populate-translations [github-org]: https://github.com/tomchristie/django-rest-framework/issues/2162 [sandbox]: http://restframework.herokuapp.com/ [mailing-list]: https://groups.google.com/forum/#!forum/django-rest-framework django-rest-framework-3.3.2/docs/topics/release-notes.md000066400000000000000000001175231263353514300232660ustar00rootroot00000000000000# Release Notes > Release Early, Release Often > > — Eric S. Raymond, [The Cathedral and the Bazaar][cite]. ## Versioning Minor version numbers (0.0.x) are used for changes that are API compatible. You should be able to upgrade between minor point releases without any other code changes. Medium version numbers (0.x.0) may include API changes, in line with the [deprecation policy][deprecation-policy]. You should read the release notes carefully before upgrading between medium point releases. Major version numbers (x.0.0) are reserved for substantial project milestones. ## Deprecation policy REST framework releases follow a formal deprecation policy, which is in line with [Django's deprecation policy][django-deprecation-policy]. The timeline for deprecation of a feature present in version 1.0 would work as follows: * Version 1.1 would remain **fully backwards compatible** with 1.0, but would raise `PendingDeprecationWarning` warnings if you use the feature that are due to be deprecated. These warnings are **silent by default**, but can be explicitly enabled when you're ready to start migrating any required changes. For example if you start running your tests using `python -Wd manage.py test`, you'll be warned of any API changes you need to make. * Version 1.2 would escalate these warnings to `DeprecationWarning`, which is loud by default. * Version 1.3 would remove the deprecated bits of API entirely. Note that in line with Django's policy, any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change. ## Upgrading To upgrade Django REST framework to the latest version, use pip: pip install -U djangorestframework You can determine your currently installed version using `pip freeze`: pip freeze | grep djangorestframework --- ## 3.3.x series ### 3.3.2 **Date**: [14th December 2015][3.3.2-milestone]. * `ListField` enforces input is a list. ([#3513][gh3513]) * Fix regression hiding raw data form. ([#3600][gh3600], [#3578][gh3578]) * Fix Python 3.5 compatibility. ([#3534][gh3534], [#3626][gh3626]) * Allow setting a custom Django Paginator in `pagination.PageNumberPagination`. ([#3631][gh3631], [#3684][gh3684]) * Fix relational fields without `to_fields` attribute. ([#3635][gh3635], [#3634][gh3634]) * Fix `template.render` deprecation warnings for Django 1.9. ([#3654][gh3654]) * Sort response headers in browsable API renderer. ([#3655][gh3655]) * Use related_objects api for Django 1.9+. ([#3656][gh3656], [#3252][gh3252]) * Add confirm modal when deleting. ([#3228][gh3228], [#3662][gh3662]) * Reveal previously hidden AttributeErrors and TypeErrors while calling has_[object_]permissions. ([#3668][gh3668]) * Make DRF compatible with multi template engine in Django 1.8. ([#3672][gh3672]) * Update `NestedBoundField` to also handle empty string when rendering its form. ([#3677][gh3677]) * Fix UUID validation to properly catch invalid input types. ([#3687][gh3687], [#3679][gh3679]) * Fix caching issues. ([#3628][gh3628], [#3701][gh3701]) * Fix Admin and API browser for views without a filter_class. ([#3705][gh3705], [#3596][gh3596], [#3597][gh3597]) * Add app_name to rest_framework.urls. ([#3714][gh3714]) * Improve authtoken's views to support url versioning. ([#3718][gh3718], [#3723][gh3723]) ### 3.3.1 **Date**: [4th November 2015][3.3.1-milestone]. * Resolve parsing bug when accessing `request.POST` ([#3592][gh3592]) * Correctly deal with `to_field` referring to primary key. ([#3593][gh3593]) * Allow filter HTML to render when no `filter_class` is defined. ([#3560][gh3560]) * Fix admin rendering issues. ([#3564][gh3564], [#3556][gh3556]) * Fix issue with DecimalValidator. ([#3568][gh3568]) ### 3.3.0 **Date**: [28th October 2015][3.3.0-milestone]. * HTML controls for filters. ([#3315][gh3315]) * Forms API. ([#3475][gh3475]) * AJAX browsable API. ([#3410][gh3410]) * Added JSONField. ([#3454][gh3454]) * Correctly map `to_field` when creating `ModelSerializer` relational fields. ([#3526][gh3526]) * Include keyword arguments when mapping `FilePathField` to a serializer field. ([#3536][gh3536]) * Map appropriate model `error_messages` on `ModelSerializer` uniqueness constraints. ([#3435][gh3435]) * Include `max_length` constraint for `ModelSerializer` fields mapped from TextField. ([#3509][gh3509]) * Added support for Django 1.9. ([#3450][gh3450], [#3525][gh3525]) * Removed support for Django 1.5 & 1.6. ([#3421][gh3421], [#3429][gh3429]) * Removed 'south' migrations. ([#3495][gh3495]) ## 3.2.x series ### 3.2.5 **Date**: [27th October 2015][3.2.5-milestone]. * Escape `username` in optional logout tag. ([#3550][gh3550]) ### 3.2.4 **Date**: [21th September 2015][3.2.4-milestone]. * Don't error on missing `ViewSet.search_fields` attribute. ([#3324][gh3324], [#3323][gh3323]) * Fix `allow_empty` not working on serializers with `many=True`. ([#3361][gh3361], [#3364][gh3364]) * Let `DurationField` accepts integers. ([#3359][gh3359]) * Multi-level dictionaries not supported in multipart requests. ([#3314][gh3314]) * Fix `ListField` truncation on HTTP PATCH ([#3415][gh3415], [#2761][gh2761]) ### 3.2.3 **Date**: [24th August 2015][3.2.3-milestone]. * Added `html_cutoff` and `html_cutoff_text` for limiting select dropdowns. ([#3313][gh3313]) * Added regex style to `SearchFilter`. ([#3316][gh3316]) * Resolve issues with setting blank HTML fields. ([#3318][gh3318]) ([#3321][gh3321]) * Correctly display existing 'select multiple' values in browsable API forms. ([#3290][gh3290]) * Resolve duplicated validation message for `IPAddressField`. ([#3249[gh3249]) ([#3250][gh3250]) * Fix to ensure admin renderer continues to work when pagination is disabled. ([#3275][gh3275]) * Resolve error with `LimitOffsetPagination` when count=0, offset=0. ([#3303][gh3303]) ### 3.2.2 **Date**: [13th August 2015][3.2.2-milestone]. * Add `display_value()` method for use when displaying relational field select inputs. ([#3254][gh3254]) * Fix issue with `BooleanField` checkboxes incorrectly displaying as checked. ([#3258][gh3258]) * Ensure empty checkboxes properly set `BooleanField` to `False` in all cases. ([#2776][gh2776]) * Allow `WSGIRequest.FILES` property without raising incorrect deprecated error. ([#3261][gh3261]) * Resolve issue with rendering nested serializers in forms. ([#3260][gh3260]) * Raise an error if user accidentally pass a serializer instance to a response, rather than data. ([#3241][gh3241]) ### 3.2.1 **Date**: [7th August 2015][3.2.1-milestone]. * Fix for relational select widgets rendering without any choices. ([#3237][gh3237]) * Fix for `1`, `0` rendering as `true`, `false` in the admin interface. [#3227][gh3227]) * Fix for ListFields with single value in HTML form input. ([#3238][gh3238]) * Allow `request.FILES` for compat with Django's `HTTPRequest` class. ([#3239][gh3239]) ### 3.2.0 **Date**: [6th August 2015][3.2.0-milestone]. * Add `AdminRenderer`. ([#2926][gh2926]) * Add `FilePathField`. ([#1854][gh1854]) * Add `allow_empty` to `ListField`. ([#2250][gh2250]) * Support django-guardian 1.3. ([#3165][gh3165]) * Support grouped choices. ([#3225][gh3225]) * Support error forms in browsable API. ([#3024][gh3024]) * Allow permission classes to customize the error message. ([#2539][gh2539]) * Support `source=` on hyperlinked fields. ([#2690][gh2690]) * `ListField(allow_null=True)` now allows null as the list value, not null items in the list. ([#2766][gh2766]) * `ManyToMany()` maps to `allow_empty=False`, `ManyToMany(blank=True)` maps to `allow_empty=True`. ([#2804][gh2804]) * Support custom serialization styles for primary key fields. ([#2789][gh2789]) * `OPTIONS` requests support nested representations. ([#2915][gh2915]) * Set `view.action == "metadata"` for viewsets with `OPTIONS` requests. ([#3115][gh3115]) * Support `allow_blank` on `UUIDField`. ([#3130][gh#3130]) * Do not display view docstrings with 401 or 403 response codes. ([#3216][gh3216]) * Resolve Django 1.8 deprecation warnings. ([#2886][gh2886]) * Fix for `DecimalField` validation. ([#3139][gh3139]) * Fix behavior of `allow_blank=False` when used with `trim_whitespace=True`. ([#2712][gh2712]) * Fix issue with some field combinations incorrectly mapping to an invalid `allow_blank` argument. ([#3011][gh3011]) * Fix for output representations with prefetches and modified querysets. ([#2704][gh2704], [#2727][gh2727]) * Fix assertion error when CursorPagination is provided with certains invalid query parameters. (#2920)[gh2920]. * Fix `UnicodeDecodeError` when invalid characters included in header with `TokenAuthentication`. ([#2928][gh2928]) * Fix transaction rollbacks with `@non_atomic_requests` decorator. ([#3016][gh3016]) * Fix duplicate results issue with Oracle databases using `SearchFilter`. ([#2935][gh2935]) * Fix checkbox alignment and rendering in browsable API forms. ([#2783][gh2783]) * Fix for unsaved file objects which should use `"url": null` in the representation. ([#2759][gh2759]) * Fix field value rendering in browsable API. ([#2416][gh2416]) * Fix `HStoreField` to include `allow_blank=True` in `DictField` mapping. ([#2659][gh2659]) * Numerous other cleanups, improvements to error messaging, private API & minor fixes. --- ## 3.1.x series ### 3.1.3 **Date**: [4th June 2015][3.1.3-milestone]. * Add `DurationField`. ([#2481][gh2481], [#2989][gh2989]) * Add `format` argument to `UUIDField`. ([#2788][gh2788], [#3000][gh3000]) * `MultipleChoiceField` empties incorrectly on a partial update using multipart/form-data ([#2993][gh2993], [#2894][gh2894]) * Fix a bug in options related to read-only `RelatedField`. ([#2981][gh2981], [#2811][gh2811]) * Fix nested serializers with `unique_together` relations. ([#2975][gh2975]) * Allow unexpected values for `ChoiceField`/`MultipleChoiceField` representations. ([#2839][gh2839], [#2940][gh2940]) * Rollback the transaction on error if `ATOMIC_REQUESTS` is set. ([#2887][gh2887], [#2034][gh2034]) * Set the action on a view when override_method regardless of its None-ness. ([#2933][gh2933]) * `DecimalField` accepts `2E+2` as 200 and validates decimal place correctly. ([#2948][gh2948], [#2947][gh2947]) * Support basic authentication with custom `UserModel` that change `username`. ([#2952][gh2952]) * `IPAddressField` improvements. ([#2747][gh2747], [#2618][gh2618], [#3008][gh3008]) * Improve `DecimalField` for easier subclassing. ([#2695][gh2695]) ### 3.1.2 **Date**: [13rd May 2015][3.1.2-milestone]. * `DateField.to_representation` can handle str and empty values. ([#2656][gh2656], [#2687][gh2687], [#2869][gh2869]) * Use default reason phrases from HTTP standard. ([#2764][gh2764], [#2763][gh2763]) * Raise error when `ModelSerializer` used with abstract model. ([#2757][gh2757], [#2630][gh2630]) * Handle reversal of non-API view_name in `HyperLinkedRelatedField` ([#2724][gh2724], [#2711][gh2711]) * Dont require pk strictly for related fields. ([#2745][gh2745], [#2754][gh2754]) * Metadata detects null boolean field type. ([#2762][gh2762]) * Proper handling of depth in nested serializers. ([#2798][gh2798]) * Display viewset without paginator. ([#2807][gh2807]) * Don't check for deprecated `.model` attribute in permissions ([#2818][gh2818]) * Restrict integer field to integers and strings. ([#2835][gh2835], [#2836][gh2836]) * Improve `IntegerField` to use compiled decimal regex. ([#2853][gh2853]) * Prevent empty `queryset` to raise AssertionError. ([#2862][gh2862]) * `DjangoModelPermissions` rely on `get_queryset`. ([#2863][gh2863]) * Check `AcceptHeaderVersioning` with content negotiation in place. ([#2868][gh2868]) * Allow `DjangoObjectPermissions` to use views that define `get_queryset`. ([#2905][gh2905]) ### 3.1.1 **Date**: [23rd March 2015][3.1.1-milestone]. * **Security fix**: Escape tab switching cookie name in browsable API. * Display input forms in browsable API if `serializer_class` is used, even when `get_serializer` method does not exist on the view. ([#2743][gh2743]) * Use a password input for the AuthTokenSerializer. ([#2741][gh2741]) * Fix missing anchor closing tag after next button. ([#2691][gh2691]) * Fix `lookup_url_kwarg` handling in viewsets. ([#2685][gh2685], [#2591][gh2591]) * Fix problem with importing `rest_framework.views` in `apps.py` ([#2678][gh2678]) * LimitOffsetPagination raises `TypeError` if PAGE_SIZE not set ([#2667][gh2667], [#2700][gh2700]) * German translation for `min_value` field error message references `max_value`. ([#2645][gh2645]) * Remove `MergeDict`. ([#2640][gh2640]) * Support serializing unsaved models with related fields. ([#2637][gh2637], [#2641][gh2641]) * Allow blank/null on radio.html choices. ([#2631][gh2631]) ### 3.1.0 **Date**: [5th March 2015][3.1.0-milestone]. For full details see the [3.1 release announcement](3.1-announcement.md). --- ## 3.0.x series ### 3.0.5 **Date**: [10th February 2015][3.0.5-milestone]. * Fix a bug where `_closable_objects` breaks pickling. ([#1850][gh1850], [#2492][gh2492]) * Allow non-standard `User` models with `Throttling`. ([#2524][gh2524]) * Support custom `User.db_table` in TokenAuthentication migration. ([#2479][gh2479]) * Fix misleading `AttributeError` tracebacks on `Request` objects. ([#2530][gh2530], [#2108][gh2108]) * `ManyRelatedField.get_value` clearing field on partial update. ([#2475][gh2475]) * Removed '.model' shortcut from code. ([#2486][gh2486]) * Fix `detail_route` and `list_route` mutable argument. ([#2518][gh2518]) * Prefetching the user object when getting the token in `TokenAuthentication`. ([#2519][gh2519]) ### 3.0.4 **Date**: [28th January 2015][3.0.4-milestone]. * Django 1.8a1 support. ([#2425][gh2425], [#2446][gh2446], [#2441][gh2441]) * Add `DictField` and support Django 1.8 `HStoreField`. ([#2451][gh2451], [#2106][gh2106]) * Add `UUIDField` and support Django 1.8 `UUIDField`. ([#2448][gh2448], [#2433][gh2433], [#2432][gh2432]) * `BaseRenderer.render` now raises `NotImplementedError`. ([#2434][gh2434]) * Fix timedelta JSON serialization on Python 2.6. ([#2430][gh2430]) * `ResultDict` and `ResultList` now appear as standard dict/list. ([#2421][gh2421]) * Fix visible `HiddenField` in the HTML form of the web browsable API page. ([#2410][gh2410]) * Use `OrderedDict` for `RelatedField.choices`. ([#2408][gh2408]) * Fix ident format when using `HTTP_X_FORWARDED_FOR`. ([#2401][gh2401]) * Fix invalid key with memcached while using throttling. ([#2400][gh2400]) * Fix `FileUploadParser` with version 3.x. ([#2399][gh2399]) * Fix the serializer inheritance. ([#2388][gh2388]) * Fix caching issues with `ReturnDict`. ([#2360][gh2360]) ### 3.0.3 **Date**: [8th January 2015][3.0.3-milestone]. * Fix `MinValueValidator` on `models.DateField`. ([#2369][gh2369]) * Fix serializer missing context when pagination is used. ([#2355][gh2355]) * Namespaced router URLs are now supported by the `DefaultRouter`. ([#2351][gh2351]) * `required=False` allows omission of value for output. ([#2342][gh2342]) * Use textarea input for `models.TextField`. ([#2340][gh2340]) * Use custom `ListSerializer` for pagination if required. ([#2331][gh2331], [#2327][gh2327]) * Better behavior with null and '' for blank HTML fields. ([#2330][gh2330]) * Ensure fields in `exclude` are model fields. ([#2319][gh2319]) * Fix `IntegerField` and `max_length` argument incompatibility. ([#2317][gh2317]) * Fix the YAML encoder for 3.0 serializers. ([#2315][gh2315], [#2283][gh2283]) * Fix the behavior of empty HTML fields. ([#2311][gh2311], [#1101][gh1101]) * Fix Metaclass attribute depth ignoring fields attribute. ([#2287][gh2287]) * Fix `format_suffix_patterns` to work with Django's `i18n_patterns`. ([#2278][gh2278]) * Ability to customize router URLs for custom actions, using `url_path`. ([#2010][gh2010]) * Don't install Django REST Framework as egg. ([#2386][gh2386]) ### 3.0.2 **Date**: [17th December 2014][3.0.2-milestone]. * Ensure `request.user` is made available to response middleware. ([#2155][gh2155]) * `Client.logout()` also cancels any existing `force_authenticate`. ([#2218][gh2218], [#2259][gh2259]) * Extra assertions and better checks to preventing incorrect serializer API use. ([#2228][gh2228], [#2234][gh2234], [#2262][gh2262], [#2263][gh2263], [#2266][gh2266], [#2267][gh2267], [#2289][gh2289], [#2291][gh2291]) * Fixed `min_length` message for `CharField`. ([#2255][gh2255]) * Fix `UnicodeDecodeError`, which can occur on serializer `repr`. ([#2270][gh2270], [#2279][gh2279]) * Fix empty HTML values when a default is provided. ([#2280][gh2280], [#2294][gh2294]) * Fix `SlugRelatedField` raising `UnicodeEncodeError` when used as a multiple choice input. ([#2290][gh2290]) ### 3.0.1 **Date**: [11th December 2014][3.0.1-milestone]. * More helpful error message when the default Serializer `create()` fails. ([#2013][gh2013]) * Raise error when attempting to save serializer if data is not valid. ([#2098][gh2098]) * Fix `FileUploadParser` breaks with empty file names and multiple upload handlers. ([#2109][gh2109]) * Improve `BindingDict` to support standard dict-functions. ([#2135][gh2135], [#2163][gh2163]) * Add `validate()` to `ListSerializer`. ([#2168][gh2168], [#2225][gh2225], [#2232][gh2232]) * Fix JSONP renderer failing to escape some characters. ([#2169][gh2169], [#2195][gh2195]) * Add missing default style for `FileField`. ([#2172][gh2172]) * Actions are required when calling `ViewSet.as_view()`. ([#2175][gh2175]) * Add `allow_blank` to `ChoiceField`. ([#2184][gh2184], [#2239][gh2239]) * Cosmetic fixes in the HTML renderer. ([#2187][gh2187]) * Raise error if `fields` on serializer is not a list of strings. ([#2193][gh2193], [#2213][gh2213]) * Improve checks for nested creates and updates. ([#2194][gh2194], [#2196][gh2196]) * `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()`. ([#2197][gh2197]) * Remove deprecated code to reflect the dropped Django versions. ([#2200][gh2200]) * Better serializer errors for nested writes. ([#2202][gh2202], [#2215][gh2215]) * Fix pagination and custom permissions incompatibility. ([#2205][gh2205]) * Raise error if `fields` on serializer is not a list of strings. ([#2213][gh2213]) * Add missing translation markers for relational fields. ([#2231][gh2231]) * Improve field lookup behavior for dicts/mappings. ([#2244][gh2244], [#2243][gh2243]) * Optimized hyperlinked PK. ([#2242][gh2242]) ### 3.0.0 **Date**: 1st December 2014 For full details see the [3.0 release announcement](3.0-announcement.md). --- For older release notes, [please see the version 2.x documentation][old-release-notes]. [cite]: http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/ar01s04.html [deprecation-policy]: #deprecation-policy [django-deprecation-policy]: https://docs.djangoproject.com/en/dev/internals/release-process/#internal-release-deprecation-policy [defusedxml-announce]: http://blog.python.org/2013/02/announcing-defusedxml-fixes-for-xml.html [743]: https://github.com/tomchristie/django-rest-framework/pull/743 [staticfiles14]: https://docs.djangoproject.com/en/1.4/howto/static-files/#with-a-template-tag [staticfiles13]: https://docs.djangoproject.com/en/1.3/howto/static-files/#with-a-template-tag [2.1.0-notes]: https://groups.google.com/d/topic/django-rest-framework/Vv2M0CMY9bg/discussion [ticket-582]: https://github.com/tomchristie/django-rest-framework/issues/582 [rfc-6266]: http://tools.ietf.org/html/rfc6266#section-4.3 [old-release-notes]: https://github.com/tomchristie/django-rest-framework/blob/version-2.4.x/docs/topics/release-notes.md [3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22 [3.0.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.2+Release%22 [3.0.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22 [3.0.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22 [3.0.5-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.5+Release%22 [3.1.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.0+Release%22 [3.1.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.1+Release%22 [3.1.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.2+Release%22 [3.1.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.3+Release%22 [3.2.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.0+Release%22 [3.2.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.1+Release%22 [3.2.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.2+Release%22 [3.2.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.3+Release%22 [3.2.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.4+Release%22 [3.2.5-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.5+Release%22 [3.3.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.0+Release%22 [3.3.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.1+Release%22 [3.3.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.2+Release%22 [gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013 [gh2098]: https://github.com/tomchristie/django-rest-framework/issues/2098 [gh2109]: https://github.com/tomchristie/django-rest-framework/issues/2109 [gh2135]: https://github.com/tomchristie/django-rest-framework/issues/2135 [gh2163]: https://github.com/tomchristie/django-rest-framework/issues/2163 [gh2168]: https://github.com/tomchristie/django-rest-framework/issues/2168 [gh2169]: https://github.com/tomchristie/django-rest-framework/issues/2169 [gh2172]: https://github.com/tomchristie/django-rest-framework/issues/2172 [gh2175]: https://github.com/tomchristie/django-rest-framework/issues/2175 [gh2184]: https://github.com/tomchristie/django-rest-framework/issues/2184 [gh2187]: https://github.com/tomchristie/django-rest-framework/issues/2187 [gh2193]: https://github.com/tomchristie/django-rest-framework/issues/2193 [gh2194]: https://github.com/tomchristie/django-rest-framework/issues/2194 [gh2195]: https://github.com/tomchristie/django-rest-framework/issues/2195 [gh2196]: https://github.com/tomchristie/django-rest-framework/issues/2196 [gh2197]: https://github.com/tomchristie/django-rest-framework/issues/2197 [gh2200]: https://github.com/tomchristie/django-rest-framework/issues/2200 [gh2202]: https://github.com/tomchristie/django-rest-framework/issues/2202 [gh2205]: https://github.com/tomchristie/django-rest-framework/issues/2205 [gh2213]: https://github.com/tomchristie/django-rest-framework/issues/2213 [gh2213]: https://github.com/tomchristie/django-rest-framework/issues/2213 [gh2215]: https://github.com/tomchristie/django-rest-framework/issues/2215 [gh2225]: https://github.com/tomchristie/django-rest-framework/issues/2225 [gh2231]: https://github.com/tomchristie/django-rest-framework/issues/2231 [gh2232]: https://github.com/tomchristie/django-rest-framework/issues/2232 [gh2239]: https://github.com/tomchristie/django-rest-framework/issues/2239 [gh2242]: https://github.com/tomchristie/django-rest-framework/issues/2242 [gh2243]: https://github.com/tomchristie/django-rest-framework/issues/2243 [gh2244]: https://github.com/tomchristie/django-rest-framework/issues/2244 [gh2155]: https://github.com/tomchristie/django-rest-framework/issues/2155 [gh2218]: https://github.com/tomchristie/django-rest-framework/issues/2218 [gh2228]: https://github.com/tomchristie/django-rest-framework/issues/2228 [gh2234]: https://github.com/tomchristie/django-rest-framework/issues/2234 [gh2255]: https://github.com/tomchristie/django-rest-framework/issues/2255 [gh2259]: https://github.com/tomchristie/django-rest-framework/issues/2259 [gh2262]: https://github.com/tomchristie/django-rest-framework/issues/2262 [gh2263]: https://github.com/tomchristie/django-rest-framework/issues/2263 [gh2266]: https://github.com/tomchristie/django-rest-framework/issues/2266 [gh2267]: https://github.com/tomchristie/django-rest-framework/issues/2267 [gh2270]: https://github.com/tomchristie/django-rest-framework/issues/2270 [gh2279]: https://github.com/tomchristie/django-rest-framework/issues/2279 [gh2280]: https://github.com/tomchristie/django-rest-framework/issues/2280 [gh2289]: https://github.com/tomchristie/django-rest-framework/issues/2289 [gh2290]: https://github.com/tomchristie/django-rest-framework/issues/2290 [gh2291]: https://github.com/tomchristie/django-rest-framework/issues/2291 [gh2294]: https://github.com/tomchristie/django-rest-framework/issues/2294 [gh1101]: https://github.com/tomchristie/django-rest-framework/issues/1101 [gh2010]: https://github.com/tomchristie/django-rest-framework/issues/2010 [gh2278]: https://github.com/tomchristie/django-rest-framework/issues/2278 [gh2283]: https://github.com/tomchristie/django-rest-framework/issues/2283 [gh2287]: https://github.com/tomchristie/django-rest-framework/issues/2287 [gh2311]: https://github.com/tomchristie/django-rest-framework/issues/2311 [gh2315]: https://github.com/tomchristie/django-rest-framework/issues/2315 [gh2317]: https://github.com/tomchristie/django-rest-framework/issues/2317 [gh2319]: https://github.com/tomchristie/django-rest-framework/issues/2319 [gh2327]: https://github.com/tomchristie/django-rest-framework/issues/2327 [gh2330]: https://github.com/tomchristie/django-rest-framework/issues/2330 [gh2331]: https://github.com/tomchristie/django-rest-framework/issues/2331 [gh2340]: https://github.com/tomchristie/django-rest-framework/issues/2340 [gh2342]: https://github.com/tomchristie/django-rest-framework/issues/2342 [gh2351]: https://github.com/tomchristie/django-rest-framework/issues/2351 [gh2355]: https://github.com/tomchristie/django-rest-framework/issues/2355 [gh2369]: https://github.com/tomchristie/django-rest-framework/issues/2369 [gh2386]: https://github.com/tomchristie/django-rest-framework/issues/2386 [gh2425]: https://github.com/tomchristie/django-rest-framework/issues/2425 [gh2446]: https://github.com/tomchristie/django-rest-framework/issues/2446 [gh2441]: https://github.com/tomchristie/django-rest-framework/issues/2441 [gh2451]: https://github.com/tomchristie/django-rest-framework/issues/2451 [gh2106]: https://github.com/tomchristie/django-rest-framework/issues/2106 [gh2448]: https://github.com/tomchristie/django-rest-framework/issues/2448 [gh2433]: https://github.com/tomchristie/django-rest-framework/issues/2433 [gh2432]: https://github.com/tomchristie/django-rest-framework/issues/2432 [gh2434]: https://github.com/tomchristie/django-rest-framework/issues/2434 [gh2430]: https://github.com/tomchristie/django-rest-framework/issues/2430 [gh2421]: https://github.com/tomchristie/django-rest-framework/issues/2421 [gh2410]: https://github.com/tomchristie/django-rest-framework/issues/2410 [gh2408]: https://github.com/tomchristie/django-rest-framework/issues/2408 [gh2401]: https://github.com/tomchristie/django-rest-framework/issues/2401 [gh2400]: https://github.com/tomchristie/django-rest-framework/issues/2400 [gh2399]: https://github.com/tomchristie/django-rest-framework/issues/2399 [gh2388]: https://github.com/tomchristie/django-rest-framework/issues/2388 [gh2360]: https://github.com/tomchristie/django-rest-framework/issues/2360 [gh1850]: https://github.com/tomchristie/django-rest-framework/issues/1850 [gh2108]: https://github.com/tomchristie/django-rest-framework/issues/2108 [gh2475]: https://github.com/tomchristie/django-rest-framework/issues/2475 [gh2479]: https://github.com/tomchristie/django-rest-framework/issues/2479 [gh2486]: https://github.com/tomchristie/django-rest-framework/issues/2486 [gh2492]: https://github.com/tomchristie/django-rest-framework/issues/2492 [gh2518]: https://github.com/tomchristie/django-rest-framework/issues/2518 [gh2519]: https://github.com/tomchristie/django-rest-framework/issues/2519 [gh2524]: https://github.com/tomchristie/django-rest-framework/issues/2524 [gh2530]: https://github.com/tomchristie/django-rest-framework/issues/2530 [gh2691]: https://github.com/tomchristie/django-rest-framework/issues/2691 [gh2685]: https://github.com/tomchristie/django-rest-framework/issues/2685 [gh2591]: https://github.com/tomchristie/django-rest-framework/issues/2591 [gh2678]: https://github.com/tomchristie/django-rest-framework/issues/2678 [gh2667]: https://github.com/tomchristie/django-rest-framework/issues/2667 [gh2700]: https://github.com/tomchristie/django-rest-framework/issues/2700 [gh2645]: https://github.com/tomchristie/django-rest-framework/issues/2645 [gh2640]: https://github.com/tomchristie/django-rest-framework/issues/2640 [gh2637]: https://github.com/tomchristie/django-rest-framework/issues/2637 [gh2641]: https://github.com/tomchristie/django-rest-framework/issues/2641 [gh2631]: https://github.com/tomchristie/django-rest-framework/issues/2631 [gh2741]: https://github.com/tomchristie/django-rest-framework/issues/2641 [gh2743]: https://github.com/tomchristie/django-rest-framework/issues/2643 [gh2656]: https://github.com/tomchristie/django-rest-framework/issues/2656 [gh2687]: https://github.com/tomchristie/django-rest-framework/issues/2687 [gh2869]: https://github.com/tomchristie/django-rest-framework/issues/2869 [gh2764]: https://github.com/tomchristie/django-rest-framework/issues/2764 [gh2763]: https://github.com/tomchristie/django-rest-framework/issues/2763 [gh2757]: https://github.com/tomchristie/django-rest-framework/issues/2757 [gh2630]: https://github.com/tomchristie/django-rest-framework/issues/2630 [gh2724]: https://github.com/tomchristie/django-rest-framework/issues/2724 [gh2711]: https://github.com/tomchristie/django-rest-framework/issues/2711 [gh2745]: https://github.com/tomchristie/django-rest-framework/issues/2745 [gh2754]: https://github.com/tomchristie/django-rest-framework/issues/2754 [gh2762]: https://github.com/tomchristie/django-rest-framework/issues/2762 [gh2798]: https://github.com/tomchristie/django-rest-framework/issues/2798 [gh2807]: https://github.com/tomchristie/django-rest-framework/issues/2807 [gh2818]: https://github.com/tomchristie/django-rest-framework/issues/2818 [gh2835]: https://github.com/tomchristie/django-rest-framework/issues/2835 [gh2836]: https://github.com/tomchristie/django-rest-framework/issues/2836 [gh2853]: https://github.com/tomchristie/django-rest-framework/issues/2853 [gh2862]: https://github.com/tomchristie/django-rest-framework/issues/2862 [gh2863]: https://github.com/tomchristie/django-rest-framework/issues/2863 [gh2868]: https://github.com/tomchristie/django-rest-framework/issues/2868 [gh2905]: https://github.com/tomchristie/django-rest-framework/issues/2905 [gh2481]: https://github.com/tomchristie/django-rest-framework/issues/2481 [gh2989]: https://github.com/tomchristie/django-rest-framework/issues/2989 [gh2788]: https://github.com/tomchristie/django-rest-framework/issues/2788 [gh3000]: https://github.com/tomchristie/django-rest-framework/issues/3000 [gh2993]: https://github.com/tomchristie/django-rest-framework/issues/2993 [gh2894]: https://github.com/tomchristie/django-rest-framework/issues/2894 [gh2981]: https://github.com/tomchristie/django-rest-framework/issues/2981 [gh2811]: https://github.com/tomchristie/django-rest-framework/issues/2811 [gh2975]: https://github.com/tomchristie/django-rest-framework/issues/2975 [gh2839]: https://github.com/tomchristie/django-rest-framework/issues/2839 [gh2940]: https://github.com/tomchristie/django-rest-framework/issues/2940 [gh2887]: https://github.com/tomchristie/django-rest-framework/issues/2887 [gh2034]: https://github.com/tomchristie/django-rest-framework/issues/2034 [gh2933]: https://github.com/tomchristie/django-rest-framework/issues/2933 [gh2948]: https://github.com/tomchristie/django-rest-framework/issues/2948 [gh2947]: https://github.com/tomchristie/django-rest-framework/issues/2947 [gh2952]: https://github.com/tomchristie/django-rest-framework/issues/2952 [gh2747]: https://github.com/tomchristie/django-rest-framework/issues/2747 [gh2618]: https://github.com/tomchristie/django-rest-framework/issues/2618 [gh3008]: https://github.com/tomchristie/django-rest-framework/issues/3008 [gh2695]: https://github.com/tomchristie/django-rest-framework/issues/2695 [gh1854]: https://github.com/tomchristie/django-rest-framework/issues/1854 [gh2250]: https://github.com/tomchristie/django-rest-framework/issues/2250 [gh2416]: https://github.com/tomchristie/django-rest-framework/issues/2416 [gh2539]: https://github.com/tomchristie/django-rest-framework/issues/2539 [gh2659]: https://github.com/tomchristie/django-rest-framework/issues/2659 [gh2690]: https://github.com/tomchristie/django-rest-framework/issues/2690 [gh2704]: https://github.com/tomchristie/django-rest-framework/issues/2704 [gh2712]: https://github.com/tomchristie/django-rest-framework/issues/2712 [gh2727]: https://github.com/tomchristie/django-rest-framework/issues/2727 [gh2759]: https://github.com/tomchristie/django-rest-framework/issues/2759 [gh2766]: https://github.com/tomchristie/django-rest-framework/issues/2766 [gh2783]: https://github.com/tomchristie/django-rest-framework/issues/2783 [gh2789]: https://github.com/tomchristie/django-rest-framework/issues/2789 [gh2804]: https://github.com/tomchristie/django-rest-framework/issues/2804 [gh2886]: https://github.com/tomchristie/django-rest-framework/issues/2886 [gh2915]: https://github.com/tomchristie/django-rest-framework/issues/2915 [gh2920]: https://github.com/tomchristie/django-rest-framework/issues/2920 [gh2926]: https://github.com/tomchristie/django-rest-framework/issues/2926 [gh2928]: https://github.com/tomchristie/django-rest-framework/issues/2928 [gh2935]: https://github.com/tomchristie/django-rest-framework/issues/2935 [gh3011]: https://github.com/tomchristie/django-rest-framework/issues/3011 [gh3016]: https://github.com/tomchristie/django-rest-framework/issues/3016 [gh3024]: https://github.com/tomchristie/django-rest-framework/issues/3024 [gh3115]: https://github.com/tomchristie/django-rest-framework/issues/3115 [gh3139]: https://github.com/tomchristie/django-rest-framework/issues/3139 [gh3165]: https://github.com/tomchristie/django-rest-framework/issues/3165 [gh3216]: https://github.com/tomchristie/django-rest-framework/issues/3216 [gh3225]: https://github.com/tomchristie/django-rest-framework/issues/3225 [gh3237]: https://github.com/tomchristie/django-rest-framework/issues/3237 [gh3227]: https://github.com/tomchristie/django-rest-framework/issues/3227 [gh3238]: https://github.com/tomchristie/django-rest-framework/issues/3238 [gh3239]: https://github.com/tomchristie/django-rest-framework/issues/3239 [gh3254]: https://github.com/tomchristie/django-rest-framework/issues/3254 [gh3258]: https://github.com/tomchristie/django-rest-framework/issues/3258 [gh2776]: https://github.com/tomchristie/django-rest-framework/issues/2776 [gh3261]: https://github.com/tomchristie/django-rest-framework/issues/3261 [gh3260]: https://github.com/tomchristie/django-rest-framework/issues/3260 [gh3241]: https://github.com/tomchristie/django-rest-framework/issues/3241 [gh3249]: https://github.com/tomchristie/django-rest-framework/issues/3249 [gh3250]: https://github.com/tomchristie/django-rest-framework/issues/3250 [gh3275]: https://github.com/tomchristie/django-rest-framework/issues/3275 [gh3288]: https://github.com/tomchristie/django-rest-framework/issues/3288 [gh3290]: https://github.com/tomchristie/django-rest-framework/issues/3290 [gh3303]: https://github.com/tomchristie/django-rest-framework/issues/3303 [gh3313]: https://github.com/tomchristie/django-rest-framework/issues/3313 [gh3316]: https://github.com/tomchristie/django-rest-framework/issues/3316 [gh3318]: https://github.com/tomchristie/django-rest-framework/issues/3318 [gh3321]: https://github.com/tomchristie/django-rest-framework/issues/3321 [gh2761]: https://github.com/tomchristie/django-rest-framework/issues/2761 [gh3314]: https://github.com/tomchristie/django-rest-framework/issues/3314 [gh3323]: https://github.com/tomchristie/django-rest-framework/issues/3323 [gh3324]: https://github.com/tomchristie/django-rest-framework/issues/3324 [gh3359]: https://github.com/tomchristie/django-rest-framework/issues/3359 [gh3361]: https://github.com/tomchristie/django-rest-framework/issues/3361 [gh3364]: https://github.com/tomchristie/django-rest-framework/issues/3364 [gh3415]: https://github.com/tomchristie/django-rest-framework/issues/3415 [gh3550]:https://github.com/tomchristie/django-rest-framework/issues/3550 [gh3315]: https://github.com/tomchristie/django-rest-framework/issues/3315 [gh3410]: https://github.com/tomchristie/django-rest-framework/issues/3410 [gh3435]: https://github.com/tomchristie/django-rest-framework/issues/3435 [gh3450]: https://github.com/tomchristie/django-rest-framework/issues/3450 [gh3454]: https://github.com/tomchristie/django-rest-framework/issues/3454 [gh3475]: https://github.com/tomchristie/django-rest-framework/issues/3475 [gh3495]: https://github.com/tomchristie/django-rest-framework/issues/3495 [gh3509]: https://github.com/tomchristie/django-rest-framework/issues/3509 [gh3421]: https://github.com/tomchristie/django-rest-framework/issues/3421 [gh3525]: https://github.com/tomchristie/django-rest-framework/issues/3525 [gh3526]: https://github.com/tomchristie/django-rest-framework/issues/3526 [gh3429]: https://github.com/tomchristie/django-rest-framework/issues/3429 [gh3536]: https://github.com/tomchristie/django-rest-framework/issues/3536 [gh3556]: https://github.com/tomchristie/django-rest-framework/issues/3556 [gh3560]: https://github.com/tomchristie/django-rest-framework/issues/3560 [gh3564]: https://github.com/tomchristie/django-rest-framework/issues/3564 [gh3568]: https://github.com/tomchristie/django-rest-framework/issues/3568 [gh3592]: https://github.com/tomchristie/django-rest-framework/issues/3592 [gh3593]: https://github.com/tomchristie/django-rest-framework/issues/3593 [gh3228]: https://github.com/tomchristie/django-rest-framework/issues/3228 [gh3252]: https://github.com/tomchristie/django-rest-framework/issues/3252 [gh3513]: https://github.com/tomchristie/django-rest-framework/issues/3513 [gh3534]: https://github.com/tomchristie/django-rest-framework/issues/3534 [gh3578]: https://github.com/tomchristie/django-rest-framework/issues/3578 [gh3596]: https://github.com/tomchristie/django-rest-framework/issues/3596 [gh3597]: https://github.com/tomchristie/django-rest-framework/issues/3597 [gh3600]: https://github.com/tomchristie/django-rest-framework/issues/3600 [gh3626]: https://github.com/tomchristie/django-rest-framework/issues/3626 [gh3628]: https://github.com/tomchristie/django-rest-framework/issues/3628 [gh3631]: https://github.com/tomchristie/django-rest-framework/issues/3631 [gh3634]: https://github.com/tomchristie/django-rest-framework/issues/3634 [gh3635]: https://github.com/tomchristie/django-rest-framework/issues/3635 [gh3654]: https://github.com/tomchristie/django-rest-framework/issues/3654 [gh3655]: https://github.com/tomchristie/django-rest-framework/issues/3655 [gh3656]: https://github.com/tomchristie/django-rest-framework/issues/3656 [gh3662]: https://github.com/tomchristie/django-rest-framework/issues/3662 [gh3668]: https://github.com/tomchristie/django-rest-framework/issues/3668 [gh3672]: https://github.com/tomchristie/django-rest-framework/issues/3672 [gh3677]: https://github.com/tomchristie/django-rest-framework/issues/3677 [gh3679]: https://github.com/tomchristie/django-rest-framework/issues/3679 [gh3684]: https://github.com/tomchristie/django-rest-framework/issues/3684 [gh3687]: https://github.com/tomchristie/django-rest-framework/issues/3687 [gh3701]: https://github.com/tomchristie/django-rest-framework/issues/3701 [gh3705]: https://github.com/tomchristie/django-rest-framework/issues/3705 [gh3714]: https://github.com/tomchristie/django-rest-framework/issues/3714 [gh3718]: https://github.com/tomchristie/django-rest-framework/issues/3718 [gh3723]: https://github.com/tomchristie/django-rest-framework/issues/3723 django-rest-framework-3.3.2/docs/topics/rest-framework-2-announcement.md000066400000000000000000000137731263353514300263210ustar00rootroot00000000000000# Django REST framework 2.0 > Most people just make the mistake that it should be simple to design simple things. In reality, the effort required to design something is inversely proportional to the simplicity of the result. > > — [Roy Fielding][cite] --- **Announcement:** REST framework 2 released - Tue 30th Oct 2012 --- REST framework 2 is an almost complete reworking of the original framework, which comprehensively addresses some of the original design issues. Because the latest version should be considered a re-release, rather than an incremental improvement, we've skipped a version, and called this release Django REST framework 2.0. This article is intended to give you a flavor of what REST framework 2 is, and why you might want to give it a try. ## User feedback Before we get cracking, let's start with the hard sell, with a few bits of feedback from some early adopters… "Django REST framework 2 is beautiful. Some of the API design is worthy of @kennethreitz." - [Kit La Touche][quote1] "Since it's pretty much just Django, controlling things like URLs has been a breeze... I think [REST framework 2] has definitely got the right approach here; even simple things like being able to override a function called post to do custom work during rather than having to intimately know what happens during a post make a huge difference to your productivity." - [Ian Strachan][quote2] "I switched to the 2.0 branch and I don't regret it - fully refactored my code in another ½ day and it's *much* more to my tastes" - [Bruno Desthuilliers][quote3] Sounds good, right? Let's get into some details... ## Serialization REST framework 2 includes a totally re-worked serialization engine, that was initially intended as a replacement for Django's existing inflexible fixture serialization, and which meets the following design goals: * A declarative serialization API, that mirrors Django's `Forms`/`ModelForms` API. * Structural concerns are decoupled from encoding concerns. * Able to support rendering and parsing to many formats, including both machine-readable representations and HTML forms. * Validation that can be mapped to obvious and comprehensive error responses. * Serializers that support both nested, flat, and partially-nested representations. * Relationships that can be expressed as primary keys, hyperlinks, slug fields, and other custom representations. Mapping between the internal state of the system and external representations of that state is the core concern of building Web APIs. Designing serializers that allow the developer to do so in a flexible and obvious way is a deceptively difficult design task, and with the new serialization API we think we've pretty much nailed it. ## Generic views When REST framework was initially released at the start of 2011, the current Django release was version 1.2. REST framework included a backport of Django 1.3's upcoming `View` class, but it didn't take full advantage of the generic view implementations. With the new release the generic views in REST framework now tie in with Django's generic views. The end result is that framework is clean, lightweight and easy to use. ## Requests, Responses & Views REST framework 2 includes `Request` and `Response` classes, than are used in place of Django's existing `HttpRequest` and `HttpResponse` classes. Doing so allows logic such as parsing the incoming request or rendering the outgoing response to be supported transparently by the framework. The `Request`/`Response` approach leads to a much cleaner API, less logic in the view itself, and a simple, obvious request-response cycle. REST framework 2 also allows you to work with both function-based and class-based views. For simple API views all you need is a single `@api_view` decorator, and you're good to go. ## API Design Pretty much every aspect of REST framework has been reworked, with the aim of ironing out some of the design flaws of the previous versions. Each of the components of REST framework are cleanly decoupled, and can be used independently of each-other, and there are no monolithic resource classes, overcomplicated mixin combinations, or opinionated serialization or URL routing decisions. ## The Browsable API Django REST framework's most unique feature is the way it is able to serve up both machine-readable representations, and a fully browsable HTML representation to the same endpoints. Browsable Web APIs are easier to work with, visualize and debug, and generally makes it easier and more frictionless to inspect and work with. With REST framework 2, the browsable API gets a snazzy new bootstrap-based theme that looks great and is even nicer to work with. There are also some functionality improvements - actions such as as `POST` and `DELETE` will only display if the user has the appropriate permissions. ![Browsable API][image] **Image above**: An example of the browsable API in REST framework 2 ## Documentation As you can see the documentation for REST framework has been radically improved. It gets a completely new style, using markdown for the documentation source, and a bootstrap-based theme for the styling. We're really pleased with how the docs style looks - it's simple and clean, is easy to navigate around, and we think it reads great. ## Summary In short, we've engineered the hell outta this thing, and we're incredibly proud of the result. If you're interested please take a browse around the documentation. [The tutorial][tut] is a great place to get started. There's also a [live sandbox version of the tutorial API][sandbox] available for testing. [cite]: http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven#comment-724 [quote1]: https://twitter.com/kobutsu/status/261689665952833536 [quote2]: https://groups.google.com/d/msg/django-rest-framework/heRGHzG6BWQ/ooVURgpwVC0J [quote3]: https://groups.google.com/d/msg/django-rest-framework/flsXbvYqRoY/9lSyntOf5cUJ [image]: ../img/quickstart.png [readthedocs]: https://readthedocs.org/ [tut]: ../tutorial/1-serialization.md [sandbox]: http://restframework.herokuapp.com/ django-rest-framework-3.3.2/docs/topics/rest-hypermedia-hateoas.md000066400000000000000000000067621263353514300252460ustar00rootroot00000000000000# REST, Hypermedia & HATEOAS > You keep using that word "REST". I do not think it means what you think it means. > > — Mike Amundsen, [REST fest 2012 keynote][cite]. First off, the disclaimer. The name "Django REST framework" was decided back in early 2011 and was chosen simply to sure the project would be easily found by developers. Throughout the documentation we try to use the more simple and technically correct terminology of "Web APIs". If you are serious about designing a Hypermedia API, you should look to resources outside of this documentation to help inform your design choices. The following fall into the "required reading" category. * Roy Fielding's dissertation - [Architectural Styles and the Design of Network-based Software Architectures][dissertation]. * Roy Fielding's "[REST APIs must be hypertext-driven][hypertext-driven]" blog post. * Leonard Richardson & Mike Amundsen's [RESTful Web APIs][restful-web-apis]. * Mike Amundsen's [Building Hypermedia APIs with HTML5 and Node][building-hypermedia-apis]. * Steve Klabnik's [Designing Hypermedia APIs][designing-hypermedia-apis]. * The [Richardson Maturity Model][maturitymodel]. For a more thorough background, check out Klabnik's [Hypermedia API reading list][readinglist]. ## Building Hypermedia APIs with REST framework REST framework is an agnostic Web API toolkit. It does help guide you towards building well-connected APIs, and makes it easy to design appropriate media types, but it does not strictly enforce any particular design style. ## What REST framework provides. It is self evident that REST framework makes it possible to build Hypermedia APIs. The browsable API that it offers is built on HTML - the hypermedia language of the web. REST framework also includes [serialization] and [parser]/[renderer] components that make it easy to build appropriate media types, [hyperlinked relations][fields] for building well-connected systems, and great support for [content negotiation][conneg]. ## What REST framework doesn't provide. What REST framework doesn't do is give you machine readable hypermedia formats such as [HAL][hal], [Collection+JSON][collection], [JSON API][json-api] or HTML [microformats] by default, or the ability to auto-magically create fully HATEOAS style APIs that include hypermedia-based form descriptions and semantically labelled hyperlinks. Doing so would involve making opinionated choices about API design that should really remain outside of the framework's scope. [cite]: http://vimeo.com/channels/restfest/page:2 [dissertation]: http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm [hypertext-driven]: http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven [restful-web-apis]: http://restfulwebapis.org/ [building-hypermedia-apis]: http://www.amazon.com/Building-Hypermedia-APIs-HTML5-Node/dp/1449306578 [designing-hypermedia-apis]: http://designinghypermediaapis.com/ [restisover]: http://blog.steveklabnik.com/posts/2012-02-23-rest-is-over [readinglist]: http://blog.steveklabnik.com/posts/2012-02-27-hypermedia-api-reading-list [maturitymodel]: http://martinfowler.com/articles/richardsonMaturityModel.html [hal]: http://stateless.co/hal_specification.html [collection]: http://www.amundsen.com/media-types/collection/ [json-api]: http://jsonapi.org/ [microformats]: http://microformats.org/wiki/Main_Page [serialization]: ../api-guide/serializers.md [parser]: ../api-guide/parsers.md [renderer]: ../api-guide/renderers.md [fields]: ../api-guide/fields.md [conneg]: ../api-guide/content-negotiation.md django-rest-framework-3.3.2/docs/topics/third-party-resources.md000066400000000000000000000514401263353514300247720ustar00rootroot00000000000000# Third Party Resources > Software ecosystems […] establish a community that further accelerates the sharing of knowledge, content, issues, expertise and skills. > > — [Jan Bosch][cite]. ## About Third Party Packages Third Party Packages allow developers to share code that extends the functionality of Django REST framework, in order to support additional use-cases. We **support**, **encourage** and **strongly favor** the creation of Third Party Packages to encapsulate new behavior rather than adding additional functionality directly to Django REST Framework. We aim to make creating third party packages as easy as possible, whilst keeping a **simple** and **well maintained** core API. By promoting third party packages we ensure that the responsibility for a package remains with its author. If a package proves suitably popular it can always be considered for inclusion into the core REST framework. If you have an idea for a new feature please consider how it may be packaged as a Third Party Package. We're always happy to discuss ideas on the [Mailing List][discussion-group]. ## How to create a Third Party Package ### Creating your package You can use [this cookiecutter template][cookiecutter] for creating reusable Django REST Framework packages quickly. Cookiecutter creates projects from project templates. While optional, this cookiecutter template includes best practices from Django REST framework and other packages, as well as a Travis CI configuration, Tox configuration, and a sane setup.py for easy PyPI registration/distribution. Note: Let us know if you have an alternate cookiecuter package so we can also link to it. #### Running the initial cookiecutter command To run the initial cookiecutter command, you'll first need to install the Python `cookiecutter` package. $ pip install cookiecutter Once `cookiecutter` is installed just run the following to create a new project. $ cookiecutter gh:jpadilla/cookiecutter-django-rest-framework You'll be prompted for some questions, answer them, then it'll create your Python package in the current working directory based on those values. full_name (default is "Your full name here")? Johnny Appleseed email (default is "you@example.com")? jappleseed@example.com github_username (default is "yourname")? jappleseed pypi_project_name (default is "dj-package")? djangorestframework-custom-auth repo_name (default is "dj-package")? django-rest-framework-custom-auth app_name (default is "djpackage")? custom_auth project_short_description (default is "Your project description goes here")? year (default is "2014")? version (default is "0.1.0")? #### Getting it onto GitHub To put your project up on GitHub, you'll need a repository for it to live in. You can create a new repository [here][new-repo]. If you need help, check out the [Create A Repo][create-a-repo] article on GitHub. #### Adding to Travis CI We recommend using [Travis CI][travis-ci], a hosted continuous integration service which integrates well with GitHub and is free for public repositories. To get started with Travis CI, [sign in][travis-ci] with your GitHub account. Once you're signed in, go to your [profile page][travis-profile] and enable the service hook for the repository you want. If you use the cookiecutter template, your project will already contain a `.travis.yml` file which Travis CI will use to build your project and run tests. By default, builds are triggered everytime you push to your repository or create Pull Request. #### Uploading to PyPI Once you've got at least a prototype working and tests running, you should publish it on PyPI to allow others to install it via `pip`. You must [register][pypi-register] an account before publishing to PyPI. To register your package on PyPI run the following command. $ python setup.py register If this is the first time publishing to PyPI, you'll be prompted to login. Note: Before publishing you'll need to make sure you have the latest pip that supports `wheel` as well as install the `wheel` package. $ pip install --upgrade pip $ pip install wheel After this, every time you want to release a new version on PyPI just run the following command. $ python setup.py publish You probably want to also tag the version now: git tag -a {0} -m 'version 0.1.0' git push --tags After releasing a new version to PyPI, it's always a good idea to tag the version and make available as a GitHub Release. We recommend to follow [Semantic Versioning][semver] for your package's versions. ### Development #### Version requirements The cookiecutter template assumes a set of supported versions will be provided for Python and Django. Make sure you correctly update your requirements, docs, `tox.ini`, `.travis.yml`, and `setup.py` to match the set of versions you wish to support. #### Tests The cookiecutter template includes a `runtests.py` which uses the `pytest` package as a test runner. Before running, you'll need to install a couple test requirements. $ pip install -r requirements.txt Once requirements installed, you can run `runtests.py`. $ ./runtests.py Run using a more concise output style. $ ./runtests.py -q Run the tests using a more concise output style, no coverage, no flake8. $ ./runtests.py --fast Don't run the flake8 code linting. $ ./runtests.py --nolint Only run the flake8 code linting, don't run the tests. $ ./runtests.py --lintonly Run the tests for a given test case. $ ./runtests.py MyTestCase Run the tests for a given test method. $ ./runtests.py MyTestCase.test_this_method Shorter form to run the tests for a given test method. $ ./runtests.py test_this_method To run your tests against multiple versions of Python as different versions of requirements such as Django we recommend using `tox`. [Tox][tox-docs] is a generic virtualenv management and test command line tool. First, install `tox` globally. $ pip install tox To run `tox`, just simply run: $ tox To run a particular `tox` environment: $ tox -e envlist `envlist` is a comma-separated value to that specifies the environments to run tests against. To view a list of all possible test environments, run: $ tox -l #### Version compatibility Sometimes, in order to ensure your code works on various different versions of Django, Python or third party libraries, you'll need to run slightly different code depending on the environment. Any code that branches in this way should be isolated into a `compat.py` module, and should provide a single common interface that the rest of the codebase can use. Check out Django REST framework's [compat.py][drf-compat] for an example. ### Once your package is available Once your package is decently documented and available on PyPI, you might want share it with others that might find it useful. #### Adding to the Django REST framework grid We suggest adding your package to the [REST Framework][rest-framework-grid] grid on Django Packages. #### Adding to the Django REST framework docs Create a [Pull Request][drf-create-pr] or [Issue][drf-create-issue] on GitHub, and we'll add a link to it from the main REST framework documentation. You can add your package under **Third party packages** of the API Guide section that best applies, like [Authentication][authentication] or [Permissions][permissions]. You can also link your package under the [Third Party Resources][third-party-resources] section. #### Announce on the discussion group. You can also let others know about your package through the [discussion group][discussion-group]. ## Existing Third Party Packages Django REST Framework has a growing community of developers, packages, and resources. Check out a grid detailing all the packages and ecosystem around Django REST Framework at [Django Packages][rest-framework-grid]. To submit new content, [open an issue][drf-create-issue] or [create a pull request][drf-create-pr]. ### Authentication * [djangorestframework-digestauth][djangorestframework-digestauth] - Provides Digest Access Authentication support. * [django-oauth-toolkit][django-oauth-toolkit] - Provides OAuth 2.0 support. * [doac][doac] - Provides OAuth 2.0 support. * [djangorestframework-jwt][djangorestframework-jwt] - Provides JSON Web Token Authentication support. * [hawkrest][hawkrest] - Provides Hawk HTTP Authorization. * [djangorestframework-httpsignature][djangorestframework-httpsignature] - Provides an easy to use HTTP Signature Authentication mechanism. * [djoser][djoser] - Provides a set of views to handle basic actions such as registration, login, logout, password reset and account activation. * [django-rest-auth][django-rest-auth] - Provides a set of REST API endpoints for registration, authentication (including social media authentication), password reset, retrieve and update user details, etc. ### Permissions * [drf-any-permissions][drf-any-permissions] - Provides alternative permission handling. * [djangorestframework-composed-permissions][djangorestframework-composed-permissions] - Provides a simple way to define complex permissions. * [rest_condition][rest-condition] - Another extension for building complex permissions in a simple and convenient way. * [dry-rest-permissions][dry-rest-permissions] - Provides a simple way to define permissions for individual api actions. ### Serializers * [django-rest-framework-mongoengine][django-rest-framework-mongoengine] - Serializer class that supports using MongoDB as the storage layer for Django REST framework. * [djangorestframework-gis][djangorestframework-gis] - Geographic add-ons * [djangorestframework-hstore][djangorestframework-hstore] - Serializer class to support django-hstore DictionaryField model field and its schema-mode feature. ### Serializer fields * [drf-compound-fields][drf-compound-fields] - Provides "compound" serializer fields, such as lists of simple values. * [django-extra-fields][django-extra-fields] - Provides extra serializer fields. * [django-versatileimagefield][django-versatileimagefield] - Provides a drop-in replacement for Django's stock `ImageField` that makes it easy to serve images in multiple sizes/renditions from a single field. For DRF-specific implementation docs, [click here][django-versatileimagefield-drf-docs]. ### Views * [djangorestframework-bulk][djangorestframework-bulk] - Implements generic view mixins as well as some common concrete generic views to allow to apply bulk operations via API requests. * [django-rest-multiple-models][django-rest-multiple-models] - Provides a generic view (and mixin) for sending multiple serialized models and/or querysets via a single API request. ### Routers * [drf-nested-routers][drf-nested-routers] - Provides routers and relationship fields for working with nested resources. * [wq.db.rest][wq.db.rest] - Provides an admin-style model registration API with reasonable default URLs and viewsets. ### Parsers * [djangorestframework-msgpack][djangorestframework-msgpack] - Provides MessagePack renderer and parser support. * [djangorestframework-camel-case][djangorestframework-camel-case] - Provides camel case JSON renderers and parsers. ### Renderers * [djangorestframework-csv][djangorestframework-csv] - Provides CSV renderer support. * [drf_ujson][drf_ujson] - Implements JSON rendering using the UJSON package. * [rest-pandas][rest-pandas] - Pandas DataFrame-powered renderers including Excel, CSV, and SVG formats. ### Filtering * [djangorestframework-chain][djangorestframework-chain] - Allows arbitrary chaining of both relations and lookup filters. * [django-url-filter][django-url-filter] - Allows a safe way to filter data via human-friendly URLs. It is a generic library which is not tied to DRF but it provides easy integration with DRF. ### Misc * [cookiecutter-django-rest][cookiecutter-django-rest] - A cookiecutter template that takes care of the setup and configuration so you can focus on making your REST apis awesome. * [djangorestrelationalhyperlink][djangorestrelationalhyperlink] - A hyperlinked serialiser that can can be used to alter relationships via hyperlinks, but otherwise like a hyperlink model serializer. * [django-rest-swagger][django-rest-swagger] - An API documentation generator for Swagger UI. * [django-rest-framework-proxy][django-rest-framework-proxy] - Proxy to redirect incoming request to another API server. * [gaiarestframework][gaiarestframework] - Utils for django-rest-framework * [drf-extensions][drf-extensions] - A collection of custom extensions * [ember-django-adapter][ember-django-adapter] - An adapter for working with Ember.js * [django-versatileimagefield][django-versatileimagefield] - Provides a drop-in replacement for Django's stock `ImageField` that makes it easy to serve images in multiple sizes/renditions from a single field. For DRF-specific implementation docs, [click here][django-versatileimagefield-drf-docs]. * [drf-tracking][drf-tracking] - Utilities to track requests to DRF API views. * [django-rest-framework-braces][django-rest-framework-braces] - Collection of utilities for working with Django Rest Framework. The most notable ones are [FormSerializer](https://django-rest-framework-braces.readthedocs.org/en/latest/overview.html#formserializer) and [SerializerForm](https://django-rest-framework-braces.readthedocs.org/en/latest/overview.html#serializerform), which are adapters between DRF serializers and Django forms. * [drf-haystack][drf-haystack] - Haystack search for Django Rest Framework * [django-rest-framework-version-transforms][django-rest-framework-version-transforms] - Enables the use of delta transformations for versioning of DRF resource representations. ## Other Resources ### Tutorials * [Beginner's Guide to the Django Rest Framework][beginners-guide-to-the-django-rest-framework] * [Getting Started with Django Rest Framework and AngularJS][getting-started-with-django-rest-framework-and-angularjs] * [End to end web app with Django-Rest-Framework & AngularJS][end-to-end-web-app-with-django-rest-framework-angularjs] * [Start Your API - django-rest-framework part 1][start-your-api-django-rest-framework-part-1] * [Permissions & Authentication - django-rest-framework part 2][permissions-authentication-django-rest-framework-part-2] * [ViewSets and Routers - django-rest-framework part 3][viewsets-and-routers-django-rest-framework-part-3] * [Django Rest Framework User Endpoint][django-rest-framework-user-endpoint] * [Check credentials using Django Rest Framework][check-credentials-using-django-rest-framework] ### Videos * [Ember and Django Part 1 (Video)][ember-and-django-part 1-video] * [Django Rest Framework Part 1 (Video)][django-rest-framework-part-1-video] * [Pyowa July 2013 - Django Rest Framework (Video)][pyowa-july-2013-django-rest-framework-video] * [django-rest-framework and angularjs (Video)][django-rest-framework-and-angularjs-video] ### Articles * [Web API performance: profiling Django REST framework][web-api-performance-profiling-django-rest-framework] * [API Development with Django and Django REST Framework][api-development-with-django-and-django-rest-framework] ### Documentations * [Classy Django REST Framework][cdrf.co] [cite]: http://www.software-ecosystems.com/Software_Ecosystems/Ecosystems.html [cookiecutter]: https://github.com/jpadilla/cookiecutter-django-rest-framework [new-repo]: https://github.com/new [create-a-repo]: https://help.github.com/articles/create-a-repo/ [travis-ci]: https://travis-ci.org [travis-profile]: https://travis-ci.org/profile [pypi-register]: https://pypi.python.org/pypi?%3Aaction=register_form [semver]: http://semver.org/ [tox-docs]: https://tox.readthedocs.org/en/latest/ [drf-compat]: https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/compat.py [rest-framework-grid]: https://www.djangopackages.com/grids/g/django-rest-framework/ [drf-create-pr]: https://github.com/tomchristie/django-rest-framework/compare [drf-create-issue]: https://github.com/tomchristie/django-rest-framework/issues/new [authentication]: ../api-guide/authentication.md [permissions]: ../api-guide/permissions.md [third-party-resources]: ../topics/third-party-resources/#existing-third-party-packages [discussion-group]: https://groups.google.com/forum/#!forum/django-rest-framework [djangorestframework-digestauth]: https://github.com/juanriaza/django-rest-framework-digestauth [django-oauth-toolkit]: https://github.com/evonove/django-oauth-toolkit [doac]: https://github.com/Rediker-Software/doac [djangorestframework-jwt]: https://github.com/GetBlimp/django-rest-framework-jwt [hawkrest]: https://github.com/kumar303/hawkrest [djangorestframework-httpsignature]: https://github.com/etoccalino/django-rest-framework-httpsignature [djoser]: https://github.com/sunscrapers/djoser [drf-any-permissions]: https://github.com/kevin-brown/drf-any-permissions [djangorestframework-composed-permissions]: https://github.com/niwibe/djangorestframework-composed-permissions [rest-condition]: https://github.com/caxap/rest_condition [django-rest-framework-mongoengine]: https://github.com/umutbozkurt/django-rest-framework-mongoengine [djangorestframework-gis]: https://github.com/djangonauts/django-rest-framework-gis [djangorestframework-hstore]: https://github.com/djangonauts/django-rest-framework-hstore [drf-compound-fields]: https://github.com/estebistec/drf-compound-fields [django-extra-fields]: https://github.com/Hipo/drf-extra-fields [djangorestframework-bulk]: https://github.com/miki725/django-rest-framework-bulk [django-rest-multiple-models]: https://github.com/Axiologue/DjangoRestMultipleModels [drf-nested-routers]: https://github.com/alanjds/drf-nested-routers [wq.db.rest]: http://wq.io/docs/about-rest [djangorestframework-msgpack]: https://github.com/juanriaza/django-rest-framework-msgpack [djangorestframework-camel-case]: https://github.com/vbabiy/djangorestframework-camel-case [djangorestframework-csv]: https://github.com/mjumbewu/django-rest-framework-csv [drf_ujson]: https://github.com/gizmag/drf-ujson-renderer [rest-pandas]: https://github.com/wq/django-rest-pandas [djangorestframework-chain]: https://github.com/philipn/django-rest-framework-chain [djangorestrelationalhyperlink]: https://github.com/fredkingham/django_rest_model_hyperlink_serializers_project [django-rest-swagger]: https://github.com/marcgibbons/django-rest-swagger [django-rest-framework-proxy]: https://github.com/eofs/django-rest-framework-proxy [gaiarestframework]: https://github.com/AppsFuel/gaiarestframework [drf-extensions]: https://github.com/chibisov/drf-extensions [ember-django-adapter]: https://github.com/dustinfarris/ember-django-adapter [beginners-guide-to-the-django-rest-framework]: http://code.tutsplus.com/tutorials/beginners-guide-to-the-django-rest-framework--cms-19786 [getting-started-with-django-rest-framework-and-angularjs]: http://blog.kevinastone.com/getting-started-with-django-rest-framework-and-angularjs.html [end-to-end-web-app-with-django-rest-framework-angularjs]: http://blog.mourafiq.com/post/55034504632/end-to-end-web-app-with-django-rest-framework [start-your-api-django-rest-framework-part-1]: https://godjango.com/41-start-your-api-django-rest-framework-part-1/ [permissions-authentication-django-rest-framework-part-2]: https://godjango.com/43-permissions-authentication-django-rest-framework-part-2/ [viewsets-and-routers-django-rest-framework-part-3]: https://godjango.com/45-viewsets-and-routers-django-rest-framework-part-3/ [django-rest-framework-user-endpoint]: http://richardtier.com/2014/02/25/django-rest-framework-user-endpoint/ [check-credentials-using-django-rest-framework]: http://richardtier.com/2014/03/06/110/ [ember-and-django-part 1-video]: http://www.neckbeardrepublic.com/screencasts/ember-and-django-part-1 [django-rest-framework-part-1-video]: http://www.neckbeardrepublic.com/screencasts/django-rest-framework-part-1 [pyowa-july-2013-django-rest-framework-video]: http://www.youtube.com/watch?v=e1zrehvxpbo [django-rest-framework-and-angularjs-video]: http://www.youtube.com/watch?v=q8frbgtj020 [web-api-performance-profiling-django-rest-framework]: http://dabapps.com/blog/api-performance-profiling-django-rest-framework/ [api-development-with-django-and-django-rest-framework]: https://bnotions.com/api-development-with-django-and-django-rest-framework/ [django-rest-auth]: https://github.com/Tivix/django-rest-auth/ [django-versatileimagefield]: https://github.com/WGBH/django-versatileimagefield [django-versatileimagefield-drf-docs]:http://django-versatileimagefield.readthedocs.org/en/latest/drf_integration.html [cdrf.co]:http://www.cdrf.co [drf-tracking]: https://github.com/aschn/drf-tracking [django-rest-framework-braces]: https://github.com/dealertrack/django-rest-framework-braces [dry-rest-permissions]: https://github.com/Helioscene/dry-rest-permissions [django-url-filter]: https://github.com/miki725/django-url-filter [cookiecutter-django-rest]: https://github.com/agconti/cookiecutter-django-rest [drf-haystack]: http://drf-haystack.readthedocs.org/en/latest/ [django-rest-framework-version-transforms]: https://github.com/mrhwick/django-rest-framework-version-transforms django-rest-framework-3.3.2/docs/topics/writable-nested-serializers.md000066400000000000000000000032631263353514300261360ustar00rootroot00000000000000> To save HTTP requests, it may be convenient to send related documents along with the request. > > — [JSON API specification for Ember Data][cite]. # Writable nested serializers Although flat data structures serve to properly delineate between the individual entities in your service, there are cases where it may be more appropriate or convenient to use nested data structures. Nested data structures are easy enough to work with if they're read-only - simply nest your serializer classes and you're good to go. However, there are a few more subtleties to using writable nested serializers, due to the dependencies between the various model instances, and the need to save or delete multiple instances in a single action. ## One-to-many data structures *Example of a **read-only** nested serializer. Nothing complex to worry about here.* class ToDoItemSerializer(serializers.ModelSerializer): class Meta: model = ToDoItem fields = ('text', 'is_completed') class ToDoListSerializer(serializers.ModelSerializer): items = ToDoItemSerializer(many=True, read_only=True) class Meta: model = ToDoList fields = ('title', 'items') Some example output from our serializer. { 'title': 'Leaving party preperations', 'items': [ {'text': 'Compile playlist', 'is_completed': True}, {'text': 'Send invites', 'is_completed': False}, {'text': 'Clean house', 'is_completed': False} ] } Let's take a look at updating our nested one-to-many data structure. ### Validation errors ### Adding and removing items ### Making PATCH requests [cite]: http://jsonapi.org/format/#url-based-json-api django-rest-framework-3.3.2/docs/tutorial/000077500000000000000000000000001263353514300205275ustar00rootroot00000000000000django-rest-framework-3.3.2/docs/tutorial/1-serialization.md000066400000000000000000000411031263353514300240630ustar00rootroot00000000000000# Tutorial 1: Serialization ## Introduction This tutorial will cover creating a simple pastebin code highlighting Web API. Along the way it will introduce the various components that make up REST framework, and give you a comprehensive understanding of how everything fits together. The tutorial is fairly in-depth, so you should probably get a cookie and a cup of your favorite brew before getting started. If you just want a quick overview, you should head over to the [quickstart] documentation instead. --- **Note**: The code for this tutorial is available in the [tomchristie/rest-framework-tutorial][repo] repository on GitHub. The completed implementation is also online as a sandbox version for testing, [available here][sandbox]. --- ## Setting up a new environment Before we do anything else we'll create a new virtual environment, using [virtualenv]. This will make sure our package configuration is kept nicely isolated from any other projects we're working on. virtualenv env source env/bin/activate Now that we're inside a virtualenv environment, we can install our package requirements. pip install django pip install djangorestframework pip install pygments # We'll be using this for the code highlighting **Note:** To exit the virtualenv environment at any time, just type `deactivate`. For more information see the [virtualenv documentation][virtualenv]. ## Getting started Okay, we're ready to get coding. To get started, let's create a new project to work with. cd ~ django-admin.py startproject tutorial cd tutorial Once that's done we can create an app that we'll use to create a simple Web API. python manage.py startapp snippets We'll need to add our new `snippets` app and the `rest_framework` app to `INSTALLED_APPS`. Let's edit the `tutorial/settings.py` file: INSTALLED_APPS = ( ... 'rest_framework', 'snippets', ) We also need to wire up the root urlconf, in the `tutorial/urls.py` file, to include our snippet app's URLs. urlpatterns = [ url(r'^', include('snippets.urls')), ] Okay, we're ready to roll. ## Creating a model to work with For the purposes of this tutorial we're going to start by creating a simple `Snippet` model that is used to store code snippets. Go ahead and edit the `snippets/models.py` file. Note: Good programming practices include comments. Although you will find them in our repository version of this tutorial code, we have omitted them here to focus on the code itself. from django.db import models from pygments.lexers import get_all_lexers from pygments.styles import get_all_styles LEXERS = [item for item in get_all_lexers() if item[1]] LANGUAGE_CHOICES = sorted([(item[1][0], item[0]) for item in LEXERS]) STYLE_CHOICES = sorted((item, item) for item in get_all_styles()) class Snippet(models.Model): created = models.DateTimeField(auto_now_add=True) title = models.CharField(max_length=100, blank=True, default='') code = models.TextField() linenos = models.BooleanField(default=False) language = models.CharField(choices=LANGUAGE_CHOICES, default='python', max_length=100) style = models.CharField(choices=STYLE_CHOICES, default='friendly', max_length=100) class Meta: ordering = ('created',) We'll also need to create an initial migration for our snippet model, and sync the database for the first time. python manage.py makemigrations snippets python manage.py migrate ## Creating a Serializer class The first thing we need to get started on our Web API is to provide a way of serializing and deserializing the snippet instances into representations such as `json`. We can do this by declaring serializers that work very similar to Django's forms. Create a file in the `snippets` directory named `serializers.py` and add the following. from rest_framework import serializers from snippets.models import Snippet, LANGUAGE_CHOICES, STYLE_CHOICES class SnippetSerializer(serializers.Serializer): pk = serializers.IntegerField(read_only=True) title = serializers.CharField(required=False, allow_blank=True, max_length=100) code = serializers.CharField(style={'base_template': 'textarea.html'}) linenos = serializers.BooleanField(required=False) language = serializers.ChoiceField(choices=LANGUAGE_CHOICES, default='python') style = serializers.ChoiceField(choices=STYLE_CHOICES, default='friendly') def create(self, validated_data): """ Create and return a new `Snippet` instance, given the validated data. """ return Snippet.objects.create(**validated_data) def update(self, instance, validated_data): """ Update and return an existing `Snippet` instance, given the validated data. """ instance.title = validated_data.get('title', instance.title) instance.code = validated_data.get('code', instance.code) instance.linenos = validated_data.get('linenos', instance.linenos) instance.language = validated_data.get('language', instance.language) instance.style = validated_data.get('style', instance.style) instance.save() return instance The first part of the serializer class defines the fields that get serialized/deserialized. The `create()` and `update()` methods define how fully fledged instances are created or modified when calling `serializer.save()` A serializer class is very similar to a Django `Form` class, and includes similar validation flags on the various fields, such as `required`, `max_length` and `default`. The field flags can also control how the serializer should be displayed in certain circumstances, such as when rendering to HTML. The `{'base_template': 'textarea.html'}` flag above is equivalent to using `widget=widgets.Textarea` on a Django `Form` class. This is particularly useful for controlling how the browsable API should be displayed, as we'll see later in the tutorial. We can actually also save ourselves some time by using the `ModelSerializer` class, as we'll see later, but for now we'll keep our serializer definition explicit. ## Working with Serializers Before we go any further we'll familiarize ourselves with using our new Serializer class. Let's drop into the Django shell. python manage.py shell Okay, once we've got a few imports out of the way, let's create a couple of code snippets to work with. from snippets.models import Snippet from snippets.serializers import SnippetSerializer from rest_framework.renderers import JSONRenderer from rest_framework.parsers import JSONParser snippet = Snippet(code='foo = "bar"\n') snippet.save() snippet = Snippet(code='print "hello, world"\n') snippet.save() We've now got a few snippet instances to play with. Let's take a look at serializing one of those instances. serializer = SnippetSerializer(snippet) serializer.data # {'pk': 2, 'title': u'', 'code': u'print "hello, world"\n', 'linenos': False, 'language': u'python', 'style': u'friendly'} At this point we've translated the model instance into Python native datatypes. To finalize the serialization process we render the data into `json`. content = JSONRenderer().render(serializer.data) content # '{"pk": 2, "title": "", "code": "print \\"hello, world\\"\\n", "linenos": false, "language": "python", "style": "friendly"}' Deserialization is similar. First we parse a stream into Python native datatypes... from django.utils.six import BytesIO stream = BytesIO(content) data = JSONParser().parse(stream) ...then we restore those native datatypes into to a fully populated object instance. serializer = SnippetSerializer(data=data) serializer.is_valid() # True serializer.validated_data # OrderedDict([('title', ''), ('code', 'print "hello, world"\n'), ('linenos', False), ('language', 'python'), ('style', 'friendly')]) serializer.save() # Notice how similar the API is to working with forms. The similarity should become even more apparent when we start writing views that use our serializer. We can also serialize querysets instead of model instances. To do so we simply add a `many=True` flag to the serializer arguments. serializer = SnippetSerializer(Snippet.objects.all(), many=True) serializer.data # [OrderedDict([('pk', 1), ('title', u''), ('code', u'foo = "bar"\n'), ('linenos', False), ('language', 'python'), ('style', 'friendly')]), OrderedDict([('pk', 2), ('title', u''), ('code', u'print "hello, world"\n'), ('linenos', False), ('language', 'python'), ('style', 'friendly')]), OrderedDict([('pk', 3), ('title', u''), ('code', u'print "hello, world"'), ('linenos', False), ('language', 'python'), ('style', 'friendly')])] ## Using ModelSerializers Our `SnippetSerializer` class is replicating a lot of information that's also contained in the `Snippet` model. It would be nice if we could keep our code a bit more concise. In the same way that Django provides both `Form` classes and `ModelForm` classes, REST framework includes both `Serializer` classes, and `ModelSerializer` classes. Let's look at refactoring our serializer using the `ModelSerializer` class. Open the file `snippets/serializers.py` again, and replace the `SnippetSerializer` class with the following. class SnippetSerializer(serializers.ModelSerializer): class Meta: model = Snippet fields = ('id', 'title', 'code', 'linenos', 'language', 'style') One nice property that serializers have is that you can inspect all the fields in a serializer instance, by printing its representation. Open the Django shell with `python manage.py shell`, then try the following: >>> from snippets.serializers import SnippetSerializer >>> serializer = SnippetSerializer() >>> print(repr(serializer)) SnippetSerializer(): id = IntegerField(label='ID', read_only=True) title = CharField(allow_blank=True, max_length=100, required=False) code = CharField(style={'base_template': 'textarea.html'}) linenos = BooleanField(required=False) language = ChoiceField(choices=[('Clipper', 'FoxPro'), ('Cucumber', 'Gherkin'), ('RobotFramework', 'RobotFramework'), ('abap', 'ABAP'), ('ada', 'Ada')... style = ChoiceField(choices=[('autumn', 'autumn'), ('borland', 'borland'), ('bw', 'bw'), ('colorful', 'colorful')... It's important to remember that `ModelSerializer` classes don't do anything particularly magical, they are simply a shortcut for creating serializer classes: * An automatically determined set of fields. * Simple default implementations for the `create()` and `update()` methods. ## Writing regular Django views using our Serializer Let's see how we can write some API views using our new Serializer class. For the moment we won't use any of REST framework's other features, we'll just write the views as regular Django views. We'll start off by creating a subclass of HttpResponse that we can use to render any data we return into `json`. Edit the `snippets/views.py` file, and add the following. from django.http import HttpResponse from django.views.decorators.csrf import csrf_exempt from rest_framework.renderers import JSONRenderer from rest_framework.parsers import JSONParser from snippets.models import Snippet from snippets.serializers import SnippetSerializer class JSONResponse(HttpResponse): """ An HttpResponse that renders its content into JSON. """ def __init__(self, data, **kwargs): content = JSONRenderer().render(data) kwargs['content_type'] = 'application/json' super(JSONResponse, self).__init__(content, **kwargs) The root of our API is going to be a view that supports listing all the existing snippets, or creating a new snippet. @csrf_exempt def snippet_list(request): """ List all code snippets, or create a new snippet. """ if request.method == 'GET': snippets = Snippet.objects.all() serializer = SnippetSerializer(snippets, many=True) return JSONResponse(serializer.data) elif request.method == 'POST': data = JSONParser().parse(request) serializer = SnippetSerializer(data=data) if serializer.is_valid(): serializer.save() return JSONResponse(serializer.data, status=201) return JSONResponse(serializer.errors, status=400) Note that because we want to be able to POST to this view from clients that won't have a CSRF token we need to mark the view as `csrf_exempt`. This isn't something that you'd normally want to do, and REST framework views actually use more sensible behavior than this, but it'll do for our purposes right now. We'll also need a view which corresponds to an individual snippet, and can be used to retrieve, update or delete the snippet. @csrf_exempt def snippet_detail(request, pk): """ Retrieve, update or delete a code snippet. """ try: snippet = Snippet.objects.get(pk=pk) except Snippet.DoesNotExist: return HttpResponse(status=404) if request.method == 'GET': serializer = SnippetSerializer(snippet) return JSONResponse(serializer.data) elif request.method == 'PUT': data = JSONParser().parse(request) serializer = SnippetSerializer(snippet, data=data) if serializer.is_valid(): serializer.save() return JSONResponse(serializer.data) return JSONResponse(serializer.errors, status=400) elif request.method == 'DELETE': snippet.delete() return HttpResponse(status=204) Finally we need to wire these views up. Create the `snippets/urls.py` file: from django.conf.urls import url from snippets import views urlpatterns = [ url(r'^snippets/$', views.snippet_list), url(r'^snippets/(?P[0-9]+)/$', views.snippet_detail), ] It's worth noting that there are a couple of edge cases we're not dealing with properly at the moment. If we send malformed `json`, or if a request is made with a method that the view doesn't handle, then we'll end up with a 500 "server error" response. Still, this'll do for now. ## Testing our first attempt at a Web API Now we can start up a sample server that serves our snippets. Quit out of the shell... quit() ...and start up Django's development server. python manage.py runserver Validating models... 0 errors found Django version 1.8.3, using settings 'tutorial.settings' Development server is running at http://127.0.0.1:8000/ Quit the server with CONTROL-C. In another terminal window, we can test the server. We can test our API using using [curl][curl] or [httpie][httpie]. Httpie is a user friendly http client that's written in Python. Let's install that. You can install httpie using pip: pip install httpie Finally, we can get a list of all of the snippets: http http://127.0.0.1:8000/snippets/ HTTP/1.1 200 OK ... [ { "id": 1, "title": "", "code": "foo = \"bar\"\n", "linenos": false, "language": "python", "style": "friendly" }, { "id": 2, "title": "", "code": "print \"hello, world\"\n", "linenos": false, "language": "python", "style": "friendly" } ] Or we can get a particular snippet by referencing its id: http http://127.0.0.1:8000/snippets/2/ HTTP/1.1 200 OK ... { "id": 2, "title": "", "code": "print \"hello, world\"\n", "linenos": false, "language": "python", "style": "friendly" } Similarly, you can have the same json displayed by visiting these URLs in a web browser. ## Where are we now We're doing okay so far, we've got a serialization API that feels pretty similar to Django's Forms API, and some regular Django views. Our API views don't do anything particularly special at the moment, beyond serving `json` responses, and there are some error handling edge cases we'd still like to clean up, but it's a functioning Web API. We'll see how we can start to improve things in [part 2 of the tutorial][tut-2]. [quickstart]: quickstart.md [repo]: https://github.com/tomchristie/rest-framework-tutorial [sandbox]: http://restframework.herokuapp.com/ [virtualenv]: http://www.virtualenv.org/en/latest/index.html [tut-2]: 2-requests-and-responses.md [httpie]: https://github.com/jakubroztocil/httpie#installation [curl]: http://curl.haxx.se django-rest-framework-3.3.2/docs/tutorial/2-requests-and-responses.md000066400000000000000000000211611263353514300256430ustar00rootroot00000000000000# Tutorial 2: Requests and Responses From this point we're going to really start covering the core of REST framework. Let's introduce a couple of essential building blocks. ## Request objects REST framework introduces a `Request` object that extends the regular `HttpRequest`, and provides more flexible request parsing. The core functionality of the `Request` object is the `request.data` attribute, which is similar to `request.POST`, but more useful for working with Web APIs. request.POST # Only handles form data. Only works for 'POST' method. request.data # Handles arbitrary data. Works for 'POST', 'PUT' and 'PATCH' methods. ## Response objects REST framework also introduces a `Response` object, which is a type of `TemplateResponse` that takes unrendered content and uses content negotiation to determine the correct content type to return to the client. return Response(data) # Renders to content type as requested by the client. ## Status codes Using numeric HTTP status codes in your views doesn't always make for obvious reading, and it's easy to not notice if you get an error code wrong. REST framework provides more explicit identifiers for each status code, such as `HTTP_400_BAD_REQUEST` in the `status` module. It's a good idea to use these throughout rather than using numeric identifiers. ## Wrapping API views REST framework provides two wrappers you can use to write API views. 1. The `@api_view` decorator for working with function based views. 2. The `APIView` class for working with class based views. These wrappers provide a few bits of functionality such as making sure you receive `Request` instances in your view, and adding context to `Response` objects so that content negotiation can be performed. The wrappers also provide behaviour such as returning `405 Method Not Allowed` responses when appropriate, and handling any `ParseError` exception that occurs when accessing `request.data` with malformed input. ## Pulling it all together Okay, let's go ahead and start using these new components to write a few views. We don't need our `JSONResponse` class in `views.py` anymore, so go ahead and delete that. Once that's done we can start refactoring our views slightly. from rest_framework import status from rest_framework.decorators import api_view from rest_framework.response import Response from snippets.models import Snippet from snippets.serializers import SnippetSerializer @api_view(['GET', 'POST']) def snippet_list(request): """ List all snippets, or create a new snippet. """ if request.method == 'GET': snippets = Snippet.objects.all() serializer = SnippetSerializer(snippets, many=True) return Response(serializer.data) elif request.method == 'POST': serializer = SnippetSerializer(data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_201_CREATED) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) Our instance view is an improvement over the previous example. It's a little more concise, and the code now feels very similar to if we were working with the Forms API. We're also using named status codes, which makes the response meanings more obvious. Here is the view for an individual snippet, in the `views.py` module. @api_view(['GET', 'PUT', 'DELETE']) def snippet_detail(request, pk): """ Retrieve, update or delete a snippet instance. """ try: snippet = Snippet.objects.get(pk=pk) except Snippet.DoesNotExist: return Response(status=status.HTTP_404_NOT_FOUND) if request.method == 'GET': serializer = SnippetSerializer(snippet) return Response(serializer.data) elif request.method == 'PUT': serializer = SnippetSerializer(snippet, data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) elif request.method == 'DELETE': snippet.delete() return Response(status=status.HTTP_204_NO_CONTENT) This should all feel very familiar - it is not a lot different from working with regular Django views. Notice that we're no longer explicitly tying our requests or responses to a given content type. `request.data` can handle incoming `json` requests, but it can also handle other formats. Similarly we're returning response objects with data, but allowing REST framework to render the response into the correct content type for us. ## Adding optional format suffixes to our URLs To take advantage of the fact that our responses are no longer hardwired to a single content type let's add support for format suffixes to our API endpoints. Using format suffixes gives us URLs that explicitly refer to a given format, and means our API will be able to handle URLs such as [http://example.com/api/items/4/.json][json-url]. Start by adding a `format` keyword argument to both of the views, like so. def snippet_list(request, format=None): and def snippet_detail(request, pk, format=None): Now update the `urls.py` file slightly, to append a set of `format_suffix_patterns` in addition to the existing URLs. from django.conf.urls import url from rest_framework.urlpatterns import format_suffix_patterns from snippets import views urlpatterns = [ url(r'^snippets/$', views.snippet_list), url(r'^snippets/(?P[0-9]+)$', views.snippet_detail), ] urlpatterns = format_suffix_patterns(urlpatterns) We don't necessarily need to add these extra url patterns in, but it gives us a simple, clean way of referring to a specific format. ## How's it looking? Go ahead and test the API from the command line, as we did in [tutorial part 1][tut-1]. Everything is working pretty similarly, although we've got some nicer error handling if we send invalid requests. We can get a list of all of the snippets, as before. http http://127.0.0.1:8000/snippets/ HTTP/1.1 200 OK ... [ { "id": 1, "title": "", "code": "foo = \"bar\"\n", "linenos": false, "language": "python", "style": "friendly" }, { "id": 2, "title": "", "code": "print \"hello, world\"\n", "linenos": false, "language": "python", "style": "friendly" } ] We can control the format of the response that we get back, either by using the `Accept` header: http http://127.0.0.1:8000/snippets/ Accept:application/json # Request JSON http http://127.0.0.1:8000/snippets/ Accept:text/html # Request HTML Or by appending a format suffix: http http://127.0.0.1:8000/snippets.json # JSON suffix http http://127.0.0.1:8000/snippets.api # Browsable API suffix Similarly, we can control the format of the request that we send, using the `Content-Type` header. # POST using form data http --form POST http://127.0.0.1:8000/snippets/ code="print 123" { "id": 3, "title": "", "code": "print 123", "linenos": false, "language": "python", "style": "friendly" } # POST using JSON http --json POST http://127.0.0.1:8000/snippets/ code="print 456" { "id": 4, "title": "", "code": "print 456", "linenos": false, "language": "python", "style": "friendly" } Now go and open the API in a web browser, by visiting [http://127.0.0.1:8000/snippets/][devserver]. ### Browsability Because the API chooses the content type of the response based on the client request, it will, by default, return an HTML-formatted representation of the resource when that resource is requested by a web browser. This allows for the API to return a fully web-browsable HTML representation. Having a web-browsable API is a huge usability win, and makes developing and using your API much easier. It also dramatically lowers the barrier-to-entry for other developers wanting to inspect and work with your API. See the [browsable api][browsable-api] topic for more information about the browsable API feature and how to customize it. ## What's next? In [tutorial part 3][tut-3], we'll start using class based views, and see how generic views reduce the amount of code we need to write. [json-url]: http://example.com/api/items/4/.json [devserver]: http://127.0.0.1:8000/snippets/ [browsable-api]: ../topics/browsable-api.md [tut-1]: 1-serialization.md [tut-3]: 3-class-based-views.md django-rest-framework-3.3.2/docs/tutorial/3-class-based-views.md000066400000000000000000000146571263353514300245420ustar00rootroot00000000000000# Tutorial 3: Class Based Views We can also write our API views using class based views, rather than function based views. As we'll see this is a powerful pattern that allows us to reuse common functionality, and helps us keep our code [DRY][dry]. ## Rewriting our API using class based views We'll start by rewriting the root view as a class based view. All this involves is a little bit of refactoring of `views.py`. from snippets.models import Snippet from snippets.serializers import SnippetSerializer from django.http import Http404 from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import status class SnippetList(APIView): """ List all snippets, or create a new snippet. """ def get(self, request, format=None): snippets = Snippet.objects.all() serializer = SnippetSerializer(snippets, many=True) return Response(serializer.data) def post(self, request, format=None): serializer = SnippetSerializer(data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_201_CREATED) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) So far, so good. It looks pretty similar to the previous case, but we've got better separation between the different HTTP methods. We'll also need to update the instance view in `views.py`. class SnippetDetail(APIView): """ Retrieve, update or delete a snippet instance. """ def get_object(self, pk): try: return Snippet.objects.get(pk=pk) except Snippet.DoesNotExist: raise Http404 def get(self, request, pk, format=None): snippet = self.get_object(pk) serializer = SnippetSerializer(snippet) return Response(serializer.data) def put(self, request, pk, format=None): snippet = self.get_object(pk) serializer = SnippetSerializer(snippet, data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) def delete(self, request, pk, format=None): snippet = self.get_object(pk) snippet.delete() return Response(status=status.HTTP_204_NO_CONTENT) That's looking good. Again, it's still pretty similar to the function based view right now. We'll also need to refactor our `urls.py` slightly now we're using class based views. from django.conf.urls import url from rest_framework.urlpatterns import format_suffix_patterns from snippets import views urlpatterns = [ url(r'^snippets/$', views.SnippetList.as_view()), url(r'^snippets/(?P[0-9]+)/$', views.SnippetDetail.as_view()), ] urlpatterns = format_suffix_patterns(urlpatterns) Okay, we're done. If you run the development server everything should be working just as before. ## Using mixins One of the big wins of using class based views is that it allows us to easily compose reusable bits of behaviour. The create/retrieve/update/delete operations that we've been using so far are going to be pretty similar for any model-backed API views we create. Those bits of common behaviour are implemented in REST framework's mixin classes. Let's take a look at how we can compose the views by using the mixin classes. Here's our `views.py` module again. from snippets.models import Snippet from snippets.serializers import SnippetSerializer from rest_framework import mixins from rest_framework import generics class SnippetList(mixins.ListModelMixin, mixins.CreateModelMixin, generics.GenericAPIView): queryset = Snippet.objects.all() serializer_class = SnippetSerializer def get(self, request, *args, **kwargs): return self.list(request, *args, **kwargs) def post(self, request, *args, **kwargs): return self.create(request, *args, **kwargs) We'll take a moment to examine exactly what's happening here. We're building our view using `GenericAPIView`, and adding in `ListModelMixin` and `CreateModelMixin`. The base class provides the core functionality, and the mixin classes provide the `.list()` and `.create()` actions. We're then explicitly binding the `get` and `post` methods to the appropriate actions. Simple enough stuff so far. class SnippetDetail(mixins.RetrieveModelMixin, mixins.UpdateModelMixin, mixins.DestroyModelMixin, generics.GenericAPIView): queryset = Snippet.objects.all() serializer_class = SnippetSerializer def get(self, request, *args, **kwargs): return self.retrieve(request, *args, **kwargs) def put(self, request, *args, **kwargs): return self.update(request, *args, **kwargs) def delete(self, request, *args, **kwargs): return self.destroy(request, *args, **kwargs) Pretty similar. Again we're using the `GenericAPIView` class to provide the core functionality, and adding in mixins to provide the `.retrieve()`, `.update()` and `.destroy()` actions. ## Using generic class based views Using the mixin classes we've rewritten the views to use slightly less code than before, but we can go one step further. REST framework provides a set of already mixed-in generic views that we can use to trim down our `views.py` module even more. from snippets.models import Snippet from snippets.serializers import SnippetSerializer from rest_framework import generics class SnippetList(generics.ListCreateAPIView): queryset = Snippet.objects.all() serializer_class = SnippetSerializer class SnippetDetail(generics.RetrieveUpdateDestroyAPIView): queryset = Snippet.objects.all() serializer_class = SnippetSerializer Wow, that's pretty concise. We've gotten a huge amount for free, and our code looks like good, clean, idiomatic Django. Next we'll move onto [part 4 of the tutorial][tut-4], where we'll take a look at how we can deal with authentication and permissions for our API. [dry]: http://en.wikipedia.org/wiki/Don't_repeat_yourself [tut-4]: 4-authentication-and-permissions.md django-rest-framework-3.3.2/docs/tutorial/4-authentication-and-permissions.md000066400000000000000000000257741263353514300273610ustar00rootroot00000000000000# Tutorial 4: Authentication & Permissions Currently our API doesn't have any restrictions on who can edit or delete code snippets. We'd like to have some more advanced behavior in order to make sure that: * Code snippets are always associated with a creator. * Only authenticated users may create snippets. * Only the creator of a snippet may update or delete it. * Unauthenticated requests should have full read-only access. ## Adding information to our model We're going to make a couple of changes to our `Snippet` model class. First, let's add a couple of fields. One of those fields will be used to represent the user who created the code snippet. The other field will be used to store the highlighted HTML representation of the code. Add the following two fields to the `Snippet` model in `models.py`. owner = models.ForeignKey('auth.User', related_name='snippets') highlighted = models.TextField() We'd also need to make sure that when the model is saved, that we populate the highlighted field, using the `pygments` code highlighting library. We'll need some extra imports: from pygments.lexers import get_lexer_by_name from pygments.formatters.html import HtmlFormatter from pygments import highlight And now we can add a `.save()` method to our model class: def save(self, *args, **kwargs): """ Use the `pygments` library to create a highlighted HTML representation of the code snippet. """ lexer = get_lexer_by_name(self.language) linenos = self.linenos and 'table' or False options = self.title and {'title': self.title} or {} formatter = HtmlFormatter(style=self.style, linenos=linenos, full=True, **options) self.highlighted = highlight(self.code, lexer, formatter) super(Snippet, self).save(*args, **kwargs) When that's all done we'll need to update our database tables. Normally we'd create a database migration in order to do that, but for the purposes of this tutorial, let's just delete the database and start again. rm -f tmp.db db.sqlite3 rm -r snippets/migrations python manage.py makemigrations snippets python manage.py migrate You might also want to create a few different users, to use for testing the API. The quickest way to do this will be with the `createsuperuser` command. python manage.py createsuperuser ## Adding endpoints for our User models Now that we've got some users to work with, we'd better add representations of those users to our API. Creating a new serializer is easy. In `serializers.py` add: from django.contrib.auth.models import User class UserSerializer(serializers.ModelSerializer): snippets = serializers.PrimaryKeyRelatedField(many=True, queryset=Snippet.objects.all()) class Meta: model = User fields = ('id', 'username', 'snippets') Because `'snippets'` is a *reverse* relationship on the User model, it will not be included by default when using the `ModelSerializer` class, so we needed to add an explicit field for it. We'll also add a couple of views to `views.py`. We'd like to just use read-only views for the user representations, so we'll use the `ListAPIView` and `RetrieveAPIView` generic class based views. from django.contrib.auth.models import User class UserList(generics.ListAPIView): queryset = User.objects.all() serializer_class = UserSerializer class UserDetail(generics.RetrieveAPIView): queryset = User.objects.all() serializer_class = UserSerializer Make sure to also import the `UserSerializer` class from snippets.serializers import UserSerializer Finally we need to add those views into the API, by referencing them from the URL conf. Add the following to the patterns in `urls.py`. url(r'^users/$', views.UserList.as_view()), url(r'^users/(?P[0-9]+)/$', views.UserDetail.as_view()), ## Associating Snippets with Users Right now, if we created a code snippet, there'd be no way of associating the user that created the snippet, with the snippet instance. The user isn't sent as part of the serialized representation, but is instead a property of the incoming request. The way we deal with that is by overriding a `.perform_create()` method on our snippet views, that allows us to modify how the instance save is managed, and handle any information that is implicit in the incoming request or requested URL. On the `SnippetList` view class, add the following method: def perform_create(self, serializer): serializer.save(owner=self.request.user) The `create()` method of our serializer will now be passed an additional `'owner'` field, along with the validated data from the request. ## Updating our serializer Now that snippets are associated with the user that created them, let's update our `SnippetSerializer` to reflect that. Add the following field to the serializer definition in `serializers.py`: owner = serializers.ReadOnlyField(source='owner.username') **Note**: Make sure you also add `'owner',` to the list of fields in the inner `Meta` class. This field is doing something quite interesting. The `source` argument controls which attribute is used to populate a field, and can point at any attribute on the serialized instance. It can also take the dotted notation shown above, in which case it will traverse the given attributes, in a similar way as it is used with Django's template language. The field we've added is the untyped `ReadOnlyField` class, in contrast to the other typed fields, such as `CharField`, `BooleanField` etc... The untyped `ReadOnlyField` is always read-only, and will be used for serialized representations, but will not be used for updating model instances when they are deserialized. We could have also used `CharField(read_only=True)` here. ## Adding required permissions to views Now that code snippets are associated with users, we want to make sure that only authenticated users are able to create, update and delete code snippets. REST framework includes a number of permission classes that we can use to restrict who can access a given view. In this case the one we're looking for is `IsAuthenticatedOrReadOnly`, which will ensure that authenticated requests get read-write access, and unauthenticated requests get read-only access. First add the following import in the views module from rest_framework import permissions Then, add the following property to **both** the `SnippetList` and `SnippetDetail` view classes. permission_classes = (permissions.IsAuthenticatedOrReadOnly,) ## Adding login to the Browsable API If you open a browser and navigate to the browsable API at the moment, you'll find that you're no longer able to create new code snippets. In order to do so we'd need to be able to login as a user. We can add a login view for use with the browsable API, by editing the URLconf in our project-level `urls.py` file. Add the following import at the top of the file: from django.conf.urls import include And, at the end of the file, add a pattern to include the login and logout views for the browsable API. urlpatterns += [ url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), ] The `r'^api-auth/'` part of pattern can actually be whatever URL you want to use. The only restriction is that the included urls must use the `'rest_framework'` namespace. In Django 1.9+, REST framework will set the namespace, so you may leave it out. Now if you open up the browser again and refresh the page you'll see a 'Login' link in the top right of the page. If you log in as one of the users you created earlier, you'll be able to create code snippets again. Once you've created a few code snippets, navigate to the '/users/' endpoint, and notice that the representation includes a list of the snippet pks that are associated with each user, in each user's 'snippets' field. ## Object level permissions Really we'd like all code snippets to be visible to anyone, but also make sure that only the user that created a code snippet is able to update or delete it. To do that we're going to need to create a custom permission. In the snippets app, create a new file, `permissions.py` from rest_framework import permissions class IsOwnerOrReadOnly(permissions.BasePermission): """ Custom permission to only allow owners of an object to edit it. """ def has_object_permission(self, request, view, obj): # Read permissions are allowed to any request, # so we'll always allow GET, HEAD or OPTIONS requests. if request.method in permissions.SAFE_METHODS: return True # Write permissions are only allowed to the owner of the snippet. return obj.owner == request.user Now we can add that custom permission to our snippet instance endpoint, by editing the `permission_classes` property on the `SnippetDetail` view class: permission_classes = (permissions.IsAuthenticatedOrReadOnly, IsOwnerOrReadOnly,) Make sure to also import the `IsOwnerOrReadOnly` class. from snippets.permissions import IsOwnerOrReadOnly Now, if you open a browser again, you find that the 'DELETE' and 'PUT' actions only appear on a snippet instance endpoint if you're logged in as the same user that created the code snippet. ## Authenticating with the API Because we now have a set of permissions on the API, we need to authenticate our requests to it if we want to edit any snippets. We haven't set up any [authentication classes][authentication], so the defaults are currently applied, which are `SessionAuthentication` and `BasicAuthentication`. When we interact with the API through the web browser, we can login, and the browser session will then provide the required authentication for the requests. If we're interacting with the API programmatically we need to explicitly provide the authentication credentials on each request. If we try to create a snippet without authenticating, we'll get an error: http POST http://127.0.0.1:8000/snippets/ code="print 123" { "detail": "Authentication credentials were not provided." } We can make a successful request by including the username and password of one of the users we created earlier. http -a tom:password POST http://127.0.0.1:8000/snippets/ code="print 789" { "id": 5, "owner": "tom", "title": "foo", "code": "print 789", "linenos": false, "language": "python", "style": "friendly" } ## Summary We've now got a fairly fine-grained set of permissions on our Web API, and end points for users of the system and for the code snippets that they have created. In [part 5][tut-5] of the tutorial we'll look at how we can tie everything together by creating an HTML endpoint for our highlighted snippets, and improve the cohesion of our API by using hyperlinking for the relationships within the system. [authentication]: ../api-guide/authentication.md [tut-5]: 5-relationships-and-hyperlinked-apis.md django-rest-framework-3.3.2/docs/tutorial/5-relationships-and-hyperlinked-apis.md000066400000000000000000000177141263353514300301170ustar00rootroot00000000000000# Tutorial 5: Relationships & Hyperlinked APIs At the moment relationships within our API are represented by using primary keys. In this part of the tutorial we'll improve the cohesion and discoverability of our API, by instead using hyperlinking for relationships. ## Creating an endpoint for the root of our API Right now we have endpoints for 'snippets' and 'users', but we don't have a single entry point to our API. To create one, we'll use a regular function-based view and the `@api_view` decorator we introduced earlier. In your `snippets/views.py` add: from rest_framework.decorators import api_view from rest_framework.response import Response from rest_framework.reverse import reverse @api_view(('GET',)) def api_root(request, format=None): return Response({ 'users': reverse('user-list', request=request, format=format), 'snippets': reverse('snippet-list', request=request, format=format) }) Two things should be noticed here. First, we're using REST framework's `reverse` function in order to return fully-qualified URLs; second, URL patterns are identified by convenience names that we will declare later on in our `snippets/urls.py`. ## Creating an endpoint for the highlighted snippets The other obvious thing that's still missing from our pastebin API is the code highlighting endpoints. Unlike all our other API endpoints, we don't want to use JSON, but instead just present an HTML representation. There are two styles of HTML renderer provided by REST framework, one for dealing with HTML rendered using templates, the other for dealing with pre-rendered HTML. The second renderer is the one we'd like to use for this endpoint. The other thing we need to consider when creating the code highlight view is that there's no existing concrete generic view that we can use. We're not returning an object instance, but instead a property of an object instance. Instead of using a concrete generic view, we'll use the base class for representing instances, and create our own `.get()` method. In your `snippets/views.py` add: from rest_framework import renderers from rest_framework.response import Response class SnippetHighlight(generics.GenericAPIView): queryset = Snippet.objects.all() renderer_classes = (renderers.StaticHTMLRenderer,) def get(self, request, *args, **kwargs): snippet = self.get_object() return Response(snippet.highlighted) As usual we need to add the new views that we've created in to our URLconf. We'll add a url pattern for our new API root in `snippets/urls.py`: url(r'^$', views.api_root), And then add a url pattern for the snippet highlights: url(r'^snippets/(?P[0-9]+)/highlight/$', views.SnippetHighlight.as_view()), ## Hyperlinking our API Dealing with relationships between entities is one of the more challenging aspects of Web API design. There are a number of different ways that we might choose to represent a relationship: * Using primary keys. * Using hyperlinking between entities. * Using a unique identifying slug field on the related entity. * Using the default string representation of the related entity. * Nesting the related entity inside the parent representation. * Some other custom representation. REST framework supports all of these styles, and can apply them across forward or reverse relationships, or apply them across custom managers such as generic foreign keys. In this case we'd like to use a hyperlinked style between entities. In order to do so, we'll modify our serializers to extend `HyperlinkedModelSerializer` instead of the existing `ModelSerializer`. The `HyperlinkedModelSerializer` has the following differences from `ModelSerializer`: * It does not include the `pk` field by default. * It includes a `url` field, using `HyperlinkedIdentityField`. * Relationships use `HyperlinkedRelatedField`, instead of `PrimaryKeyRelatedField`. We can easily re-write our existing serializers to use hyperlinking. In your `snippets/serializers.py` add: class SnippetSerializer(serializers.HyperlinkedModelSerializer): owner = serializers.ReadOnlyField(source='owner.username') highlight = serializers.HyperlinkedIdentityField(view_name='snippet-highlight', format='html') class Meta: model = Snippet fields = ('url', 'highlight', 'owner', 'title', 'code', 'linenos', 'language', 'style') class UserSerializer(serializers.HyperlinkedModelSerializer): snippets = serializers.HyperlinkedRelatedField(many=True, view_name='snippet-detail', read_only=True) class Meta: model = User fields = ('url', 'username', 'snippets') Notice that we've also added a new `'highlight'` field. This field is of the same type as the `url` field, except that it points to the `'snippet-highlight'` url pattern, instead of the `'snippet-detail'` url pattern. Because we've included format suffixed URLs such as `'.json'`, we also need to indicate on the `highlight` field that any format suffixed hyperlinks it returns should use the `'.html'` suffix. ## Making sure our URL patterns are named If we're going to have a hyperlinked API, we need to make sure we name our URL patterns. Let's take a look at which URL patterns we need to name. * The root of our API refers to `'user-list'` and `'snippet-list'`. * Our snippet serializer includes a field that refers to `'snippet-highlight'`. * Our user serializer includes a field that refers to `'snippet-detail'`. * Our snippet and user serializers include `'url'` fields that by default will refer to `'{model_name}-detail'`, which in this case will be `'snippet-detail'` and `'user-detail'`. After adding all those names into our URLconf, our final `snippets/urls.py` file should look like this: from django.conf.urls import url, include from rest_framework.urlpatterns import format_suffix_patterns from snippets import views # API endpoints urlpatterns = format_suffix_patterns([ url(r'^$', views.api_root), url(r'^snippets/$', views.SnippetList.as_view(), name='snippet-list'), url(r'^snippets/(?P[0-9]+)/$', views.SnippetDetail.as_view(), name='snippet-detail'), url(r'^snippets/(?P[0-9]+)/highlight/$', views.SnippetHighlight.as_view(), name='snippet-highlight'), url(r'^users/$', views.UserList.as_view(), name='user-list'), url(r'^users/(?P[0-9]+)/$', views.UserDetail.as_view(), name='user-detail') ]) # Login and logout views for the browsable API urlpatterns += [ url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), ] ## Adding pagination The list views for users and code snippets could end up returning quite a lot of instances, so really we'd like to make sure we paginate the results, and allow the API client to step through each of the individual pages. We can change the default list style to use pagination, by modifying our `tutorial/settings.py` file slightly. Add the following setting: REST_FRAMEWORK = { 'PAGE_SIZE': 10 } Note that settings in REST framework are all namespaced into a single dictionary setting, named 'REST_FRAMEWORK', which helps keep them well separated from your other project settings. We could also customize the pagination style if we needed too, but in this case we'll just stick with the default. ## Browsing the API If we open a browser and navigate to the browsable API, you'll find that you can now work your way around the API simply by following links. You'll also be able to see the 'highlight' links on the snippet instances, that will take you to the highlighted code HTML representations. In [part 6][tut-6] of the tutorial we'll look at how we can use ViewSets and Routers to reduce the amount of code we need to build our API. [tut-6]: 6-viewsets-and-routers.md django-rest-framework-3.3.2/docs/tutorial/6-viewsets-and-routers.md000066400000000000000000000176321263353514300253370ustar00rootroot00000000000000# Tutorial 6: ViewSets & Routers REST framework includes an abstraction for dealing with `ViewSets`, that allows the developer to concentrate on modeling the state and interactions of the API, and leave the URL construction to be handled automatically, based on common conventions. `ViewSet` classes are almost the same thing as `View` classes, except that they provide operations such as `read`, or `update`, and not method handlers such as `get` or `put`. A `ViewSet` class is only bound to a set of method handlers at the last moment, when it is instantiated into a set of views, typically by using a `Router` class which handles the complexities of defining the URL conf for you. ## Refactoring to use ViewSets Let's take our current set of views, and refactor them into view sets. First of all let's refactor our `UserList` and `UserDetail` views into a single `UserViewSet`. We can remove the two views, and replace them with a single class: from rest_framework import viewsets class UserViewSet(viewsets.ReadOnlyModelViewSet): """ This viewset automatically provides `list` and `detail` actions. """ queryset = User.objects.all() serializer_class = UserSerializer Here we've used the `ReadOnlyModelViewSet` class to automatically provide the default 'read-only' operations. We're still setting the `queryset` and `serializer_class` attributes exactly as we did when we were using regular views, but we no longer need to provide the same information to two separate classes. Next we're going to replace the `SnippetList`, `SnippetDetail` and `SnippetHighlight` view classes. We can remove the three views, and again replace them with a single class. from rest_framework.decorators import detail_route class SnippetViewSet(viewsets.ModelViewSet): """ This viewset automatically provides `list`, `create`, `retrieve`, `update` and `destroy` actions. Additionally we also provide an extra `highlight` action. """ queryset = Snippet.objects.all() serializer_class = SnippetSerializer permission_classes = (permissions.IsAuthenticatedOrReadOnly, IsOwnerOrReadOnly,) @detail_route(renderer_classes=[renderers.StaticHTMLRenderer]) def highlight(self, request, *args, **kwargs): snippet = self.get_object() return Response(snippet.highlighted) def perform_create(self, serializer): serializer.save(owner=self.request.user) This time we've used the `ModelViewSet` class in order to get the complete set of default read and write operations. Notice that we've also used the `@detail_route` decorator to create a custom action, named `highlight`. This decorator can be used to add any custom endpoints that don't fit into the standard `create`/`update`/`delete` style. Custom actions which use the `@detail_route` decorator will respond to `GET` requests. We can use the `methods` argument if we wanted an action that responded to `POST` requests. The URLs for custom actions by default depend on the method name itself. If you want to change the way url should be constructed, you can include url_path as a decorator keyword argument. ## Binding ViewSets to URLs explicitly The handler methods only get bound to the actions when we define the URLConf. To see what's going on under the hood let's first explicitly create a set of views from our ViewSets. In the `urls.py` file we bind our `ViewSet` classes into a set of concrete views. from snippets.views import SnippetViewSet, UserViewSet, api_root from rest_framework import renderers snippet_list = SnippetViewSet.as_view({ 'get': 'list', 'post': 'create' }) snippet_detail = SnippetViewSet.as_view({ 'get': 'retrieve', 'put': 'update', 'patch': 'partial_update', 'delete': 'destroy' }) snippet_highlight = SnippetViewSet.as_view({ 'get': 'highlight' }, renderer_classes=[renderers.StaticHTMLRenderer]) user_list = UserViewSet.as_view({ 'get': 'list' }) user_detail = UserViewSet.as_view({ 'get': 'retrieve' }) Notice how we're creating multiple views from each `ViewSet` class, by binding the http methods to the required action for each view. Now that we've bound our resources into concrete views, we can register the views with the URL conf as usual. urlpatterns = format_suffix_patterns([ url(r'^$', api_root), url(r'^snippets/$', snippet_list, name='snippet-list'), url(r'^snippets/(?P[0-9]+)/$', snippet_detail, name='snippet-detail'), url(r'^snippets/(?P[0-9]+)/highlight/$', snippet_highlight, name='snippet-highlight'), url(r'^users/$', user_list, name='user-list'), url(r'^users/(?P[0-9]+)/$', user_detail, name='user-detail') ]) ## Using Routers Because we're using `ViewSet` classes rather than `View` classes, we actually don't need to design the URL conf ourselves. The conventions for wiring up resources into views and urls can be handled automatically, using a `Router` class. All we need to do is register the appropriate view sets with a router, and let it do the rest. Here's our re-wired `urls.py` file. from django.conf.urls import url, include from snippets import views from rest_framework.routers import DefaultRouter # Create a router and register our viewsets with it. router = DefaultRouter() router.register(r'snippets', views.SnippetViewSet) router.register(r'users', views.UserViewSet) # The API URLs are now determined automatically by the router. # Additionally, we include the login URLs for the browsable API. urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] Registering the viewsets with the router is similar to providing a urlpattern. We include two arguments - the URL prefix for the views, and the viewset itself. The `DefaultRouter` class we're using also automatically creates the API root view for us, so we can now delete the `api_root` method from our `views` module. ## Trade-offs between views vs viewsets Using viewsets can be a really useful abstraction. It helps ensure that URL conventions will be consistent across your API, minimizes the amount of code you need to write, and allows you to concentrate on the interactions and representations your API provides rather than the specifics of the URL conf. That doesn't mean it's always the right approach to take. There's a similar set of trade-offs to consider as when using class-based views instead of function based views. Using viewsets is less explicit than building your views individually. ## Reviewing our work With an incredibly small amount of code, we've now got a complete pastebin Web API, which is fully web browsable, and comes complete with authentication, per-object permissions, and multiple renderer formats. We've walked through each step of the design process, and seen how if we need to customize anything we can gradually work our way down to simply using regular Django views. You can review the final [tutorial code][repo] on GitHub, or try out a live example in [the sandbox][sandbox]. ## Onwards and upwards We've reached the end of our tutorial. If you want to get more involved in the REST framework project, here are a few places you can start: * Contribute on [GitHub][github] by reviewing and submitting issues, and making pull requests. * Join the [REST framework discussion group][group], and help build the community. * Follow [the author][twitter] on Twitter and say hi. **Now go build awesome things.** [repo]: https://github.com/tomchristie/rest-framework-tutorial [sandbox]: http://restframework.herokuapp.com/ [github]: https://github.com/tomchristie/django-rest-framework [group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework [twitter]: https://twitter.com/_tomchristie django-rest-framework-3.3.2/docs/tutorial/quickstart.md000066400000000000000000000146701263353514300232530ustar00rootroot00000000000000# Quickstart We're going to create a simple API to allow admin users to view and edit the users and groups in the system. ## Project setup Create a new Django project named `tutorial`, then start a new app called `quickstart`. # Create the project directory mkdir tutorial cd tutorial # Create a virtualenv to isolate our package dependencies locally virtualenv env source env/bin/activate # On Windows use `env\Scripts\activate` # Install Django and Django REST framework into the virtualenv pip install django pip install djangorestframework # Set up a new project with a single application django-admin.py startproject tutorial . # Note the trailing '.' character cd tutorial django-admin.py startapp quickstart cd .. Now sync your database for the first time: python manage.py migrate We'll also create an initial user named `admin` with a password of `password`. We'll authenticate as that user later in our example. python manage.py createsuperuser Once you've set up a database and initial user created and ready to go, open up the app's directory and we'll get coding... ## Serializers First up we're going to define some serializers. Let's create a new module named `tutorial/quickstart/serializers.py` that we'll use for our data representations. from django.contrib.auth.models import User, Group from rest_framework import serializers class UserSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = User fields = ('url', 'username', 'email', 'groups') class GroupSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = Group fields = ('url', 'name') Notice that we're using hyperlinked relations in this case, with `HyperlinkedModelSerializer`. You can also use primary key and various other relationships, but hyperlinking is good RESTful design. ## Views Right, we'd better write some views then. Open `tutorial/quickstart/views.py` and get typing. from django.contrib.auth.models import User, Group from rest_framework import viewsets from tutorial.quickstart.serializers import UserSerializer, GroupSerializer class UserViewSet(viewsets.ModelViewSet): """ API endpoint that allows users to be viewed or edited. """ queryset = User.objects.all().order_by('-date_joined') serializer_class = UserSerializer class GroupViewSet(viewsets.ModelViewSet): """ API endpoint that allows groups to be viewed or edited. """ queryset = Group.objects.all() serializer_class = GroupSerializer Rather than write multiple views we're grouping together all the common behavior into classes called `ViewSets`. We can easily break these down into individual views if we need to, but using viewsets keeps the view logic nicely organized as well as being very concise. ## URLs Okay, now let's wire up the API URLs. On to `tutorial/urls.py`... from django.conf.urls import url, include from rest_framework import routers from tutorial.quickstart import views router = routers.DefaultRouter() router.register(r'users', views.UserViewSet) router.register(r'groups', views.GroupViewSet) # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) ] Because we're using viewsets instead of views, we can automatically generate the URL conf for our API, by simply registering the viewsets with a router class. Again, if we need more control over the API URLs we can simply drop down to using regular class based views, and writing the URL conf explicitly. Finally, we're including default login and logout views for use with the browsable API. That's optional, but useful if your API requires authentication and you want to use the browsable API. ## Settings We'd also like to set a few global settings. We'd like to turn on pagination, and we want our API to only be accessible to admin users. The settings module will be in `tutorial/settings.py` INSTALLED_APPS = ( ... 'rest_framework', ) REST_FRAMEWORK = { 'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAdminUser',), 'PAGE_SIZE': 10 } Okay, we're done. --- ## Testing our API We're now ready to test the API we've built. Let's fire up the server from the command line. python ./manage.py runserver We can now access our API, both from the command-line, using tools like `curl`... bash: curl -H 'Accept: application/json; indent=4' -u admin:password http://127.0.0.1:8000/users/ { "count": 2, "next": null, "previous": null, "results": [ { "email": "admin@example.com", "groups": [], "url": "http://127.0.0.1:8000/users/1/", "username": "admin" }, { "email": "tom@example.com", "groups": [ ], "url": "http://127.0.0.1:8000/users/2/", "username": "tom" } ] } Or using the [httpie][httpie], command line tool... bash: http -a username:password http://127.0.0.1:8000/users/ HTTP/1.1 200 OK ... { "count": 2, "next": null, "previous": null, "results": [ { "email": "admin@example.com", "groups": [], "url": "http://localhost:8000/users/1/", "username": "paul" }, { "email": "tom@example.com", "groups": [ ], "url": "http://127.0.0.1:8000/users/2/", "username": "tom" } ] } Or directly through the browser... ![Quick start image][image] If you're working through the browser, make sure to login using the control in the top right corner. Great, that was easy! If you want to get a more in depth understanding of how REST framework fits together head on over to [the tutorial][tutorial], or start browsing the [API guide][guide]. [readme-example-api]: ../#example [image]: ../img/quickstart.png [tutorial]: 1-serialization.md [guide]: ../#api-guide [httpie]: https://github.com/jakubroztocil/httpie#installation django-rest-framework-3.3.2/docs_theme/000077500000000000000000000000001263353514300200465ustar00rootroot00000000000000django-rest-framework-3.3.2/docs_theme/404.html000066400000000000000000000005741263353514300212510ustar00rootroot00000000000000{% extends "base.html" %} {% block content %}

    404

    Page not found

    Try the homepage, or search the documentation.

    {% endblock %} django-rest-framework-3.3.2/docs_theme/base.html000066400000000000000000000141161263353514300216510ustar00rootroot00000000000000 {% if page_title %}{{ page_title }} - {% endif %}{{ site_name }}
    {% include "nav.html" %}
    {% block content %} {% if meta.source %} {% for filename in meta.source %} {{ filename }} {% endfor %} {% endif %} {{ content }} {% endblock %}

    Documentation built with MkDocs.

    django-rest-framework-3.3.2/docs_theme/css/000077500000000000000000000000001263353514300206365ustar00rootroot00000000000000django-rest-framework-3.3.2/docs_theme/css/bootstrap-responsive.css000077500000000000000000000510061263353514300255650ustar00rootroot00000000000000/*! * Bootstrap Responsive v2.1.1 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; line-height: 0; content: ""; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .hidden { display: none; visibility: hidden; } .visible-phone { display: none !important; } .visible-tablet { display: none !important; } .hidden-desktop { display: none !important; } .visible-desktop { display: inherit !important; } @media (min-width: 768px) and (max-width: 979px) { .hidden-desktop { display: inherit !important; } .visible-desktop { display: none !important ; } .visible-tablet { display: inherit !important; } .hidden-tablet { display: none !important; } } @media (max-width: 767px) { .hidden-desktop { display: inherit !important; } .visible-desktop { display: none !important; } .visible-phone { display: inherit !important; } .hidden-phone { display: none !important; } } @media (min-width: 1200px) { .row { margin-left: -30px; *zoom: 1; } .row:before, .row:after { display: table; line-height: 0; content: ""; } .row:after { clear: both; } [class*="span"] { float: left; min-height: 1px; margin-left: 30px; } .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 1170px; } .span12 { width: 1170px; } .span11 { width: 1070px; } .span10 { width: 970px; } .span9 { width: 870px; } .span8 { width: 770px; } .span7 { width: 670px; } .span6 { width: 570px; } .span5 { width: 470px; } .span4 { width: 370px; } .span3 { width: 270px; } .span2 { width: 170px; } .span1 { width: 70px; } .offset12 { margin-left: 1230px; } .offset11 { margin-left: 1130px; } .offset10 { margin-left: 1030px; } .offset9 { margin-left: 930px; } .offset8 { margin-left: 830px; } .offset7 { margin-left: 730px; } .offset6 { margin-left: 630px; } .offset5 { margin-left: 530px; } .offset4 { margin-left: 430px; } .offset3 { margin-left: 330px; } .offset2 { margin-left: 230px; } .offset1 { margin-left: 130px; } .row-fluid { width: 100%; *zoom: 1; } .row-fluid:before, .row-fluid:after { display: table; line-height: 0; content: ""; } .row-fluid:after { clear: both; } .row-fluid [class*="span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.564102564102564%; *margin-left: 2.5109110747408616%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .row-fluid [class*="span"]:first-child { margin-left: 0; } .row-fluid .span12 { width: 100%; *width: 99.94680851063829%; } .row-fluid .span11 { width: 91.45299145299145%; *width: 91.39979996362975%; } .row-fluid .span10 { width: 82.90598290598291%; *width: 82.8527914166212%; } .row-fluid .span9 { width: 74.35897435897436%; *width: 74.30578286961266%; } .row-fluid .span8 { width: 65.81196581196582%; *width: 65.75877432260411%; } .row-fluid .span7 { width: 57.26495726495726%; *width: 57.21176577559556%; } .row-fluid .span6 { width: 48.717948717948715%; *width: 48.664757228587014%; } .row-fluid .span5 { width: 40.17094017094017%; *width: 40.11774868157847%; } .row-fluid .span4 { width: 31.623931623931625%; *width: 31.570740134569924%; } .row-fluid .span3 { width: 23.076923076923077%; *width: 23.023731587561375%; } .row-fluid .span2 { width: 14.52991452991453%; *width: 14.476723040552828%; } .row-fluid .span1 { width: 5.982905982905983%; *width: 5.929714493544281%; } .row-fluid .offset12 { margin-left: 105.12820512820512%; *margin-left: 105.02182214948171%; } .row-fluid .offset12:first-child { margin-left: 102.56410256410257%; *margin-left: 102.45771958537915%; } .row-fluid .offset11 { margin-left: 96.58119658119658%; *margin-left: 96.47481360247316%; } .row-fluid .offset11:first-child { margin-left: 94.01709401709402%; *margin-left: 93.91071103837061%; } .row-fluid .offset10 { margin-left: 88.03418803418803%; *margin-left: 87.92780505546462%; } .row-fluid .offset10:first-child { margin-left: 85.47008547008548%; *margin-left: 85.36370249136206%; } .row-fluid .offset9 { margin-left: 79.48717948717949%; *margin-left: 79.38079650845607%; } .row-fluid .offset9:first-child { margin-left: 76.92307692307693%; *margin-left: 76.81669394435352%; } .row-fluid .offset8 { margin-left: 70.94017094017094%; *margin-left: 70.83378796144753%; } .row-fluid .offset8:first-child { margin-left: 68.37606837606839%; *margin-left: 68.26968539734497%; } .row-fluid .offset7 { margin-left: 62.393162393162385%; *margin-left: 62.28677941443899%; } .row-fluid .offset7:first-child { margin-left: 59.82905982905982%; *margin-left: 59.72267685033642%; } .row-fluid .offset6 { margin-left: 53.84615384615384%; *margin-left: 53.739770867430444%; } .row-fluid .offset6:first-child { margin-left: 51.28205128205128%; *margin-left: 51.175668303327875%; } .row-fluid .offset5 { margin-left: 45.299145299145295%; *margin-left: 45.1927623204219%; } .row-fluid .offset5:first-child { margin-left: 42.73504273504273%; *margin-left: 42.62865975631933%; } .row-fluid .offset4 { margin-left: 36.75213675213675%; *margin-left: 36.645753773413354%; } .row-fluid .offset4:first-child { margin-left: 34.18803418803419%; *margin-left: 34.081651209310785%; } .row-fluid .offset3 { margin-left: 28.205128205128204%; *margin-left: 28.0987452264048%; } .row-fluid .offset3:first-child { margin-left: 25.641025641025642%; *margin-left: 25.53464266230224%; } .row-fluid .offset2 { margin-left: 19.65811965811966%; *margin-left: 19.551736679396257%; } .row-fluid .offset2:first-child { margin-left: 17.094017094017094%; *margin-left: 16.98763411529369%; } .row-fluid .offset1 { margin-left: 11.11111111111111%; *margin-left: 11.004728132387708%; } .row-fluid .offset1:first-child { margin-left: 8.547008547008547%; *margin-left: 8.440625568285142%; } input, textarea, .uneditable-input { margin-left: 0; } .controls-row [class*="span"] + [class*="span"] { margin-left: 30px; } input.span12, textarea.span12, .uneditable-input.span12 { width: 1156px; } input.span11, textarea.span11, .uneditable-input.span11 { width: 1056px; } input.span10, textarea.span10, .uneditable-input.span10 { width: 956px; } input.span9, textarea.span9, .uneditable-input.span9 { width: 856px; } input.span8, textarea.span8, .uneditable-input.span8 { width: 756px; } input.span7, textarea.span7, .uneditable-input.span7 { width: 656px; } input.span6, textarea.span6, .uneditable-input.span6 { width: 556px; } input.span5, textarea.span5, .uneditable-input.span5 { width: 456px; } input.span4, textarea.span4, .uneditable-input.span4 { width: 356px; } input.span3, textarea.span3, .uneditable-input.span3 { width: 256px; } input.span2, textarea.span2, .uneditable-input.span2 { width: 156px; } input.span1, textarea.span1, .uneditable-input.span1 { width: 56px; } .thumbnails { margin-left: -30px; } .thumbnails > li { margin-left: 30px; } .row-fluid .thumbnails { margin-left: 0; } } @media (min-width: 768px) and (max-width: 979px) { .row { margin-left: -20px; *zoom: 1; } .row:before, .row:after { display: table; line-height: 0; content: ""; } .row:after { clear: both; } [class*="span"] { float: left; min-height: 1px; margin-left: 20px; } .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 724px; } .span12 { width: 724px; } .span11 { width: 662px; } .span10 { width: 600px; } .span9 { width: 538px; } .span8 { width: 476px; } .span7 { width: 414px; } .span6 { width: 352px; } .span5 { width: 290px; } .span4 { width: 228px; } .span3 { width: 166px; } .span2 { width: 104px; } .span1 { width: 42px; } .offset12 { margin-left: 764px; } .offset11 { margin-left: 702px; } .offset10 { margin-left: 640px; } .offset9 { margin-left: 578px; } .offset8 { margin-left: 516px; } .offset7 { margin-left: 454px; } .offset6 { margin-left: 392px; } .offset5 { margin-left: 330px; } .offset4 { margin-left: 268px; } .offset3 { margin-left: 206px; } .offset2 { margin-left: 144px; } .offset1 { margin-left: 82px; } .row-fluid { width: 100%; *zoom: 1; } .row-fluid:before, .row-fluid:after { display: table; line-height: 0; content: ""; } .row-fluid:after { clear: both; } .row-fluid [class*="span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.7624309392265194%; *margin-left: 2.709239449864817%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .row-fluid [class*="span"]:first-child { margin-left: 0; } .row-fluid .span12 { width: 100%; *width: 99.94680851063829%; } .row-fluid .span11 { width: 91.43646408839778%; *width: 91.38327259903608%; } .row-fluid .span10 { width: 82.87292817679558%; *width: 82.81973668743387%; } .row-fluid .span9 { width: 74.30939226519337%; *width: 74.25620077583166%; } .row-fluid .span8 { width: 65.74585635359117%; *width: 65.69266486422946%; } .row-fluid .span7 { width: 57.18232044198895%; *width: 57.12912895262725%; } .row-fluid .span6 { width: 48.61878453038674%; *width: 48.56559304102504%; } .row-fluid .span5 { width: 40.05524861878453%; *width: 40.00205712942283%; } .row-fluid .span4 { width: 31.491712707182323%; *width: 31.43852121782062%; } .row-fluid .span3 { width: 22.92817679558011%; *width: 22.87498530621841%; } .row-fluid .span2 { width: 14.3646408839779%; *width: 14.311449394616199%; } .row-fluid .span1 { width: 5.801104972375691%; *width: 5.747913483013988%; } .row-fluid .offset12 { margin-left: 105.52486187845304%; *margin-left: 105.41847889972962%; } .row-fluid .offset12:first-child { margin-left: 102.76243093922652%; *margin-left: 102.6560479605031%; } .row-fluid .offset11 { margin-left: 96.96132596685082%; *margin-left: 96.8549429881274%; } .row-fluid .offset11:first-child { margin-left: 94.1988950276243%; *margin-left: 94.09251204890089%; } .row-fluid .offset10 { margin-left: 88.39779005524862%; *margin-left: 88.2914070765252%; } .row-fluid .offset10:first-child { margin-left: 85.6353591160221%; *margin-left: 85.52897613729868%; } .row-fluid .offset9 { margin-left: 79.8342541436464%; *margin-left: 79.72787116492299%; } .row-fluid .offset9:first-child { margin-left: 77.07182320441989%; *margin-left: 76.96544022569647%; } .row-fluid .offset8 { margin-left: 71.2707182320442%; *margin-left: 71.16433525332079%; } .row-fluid .offset8:first-child { margin-left: 68.50828729281768%; *margin-left: 68.40190431409427%; } .row-fluid .offset7 { margin-left: 62.70718232044199%; *margin-left: 62.600799341718584%; } .row-fluid .offset7:first-child { margin-left: 59.94475138121547%; *margin-left: 59.838368402492065%; } .row-fluid .offset6 { margin-left: 54.14364640883978%; *margin-left: 54.037263430116376%; } .row-fluid .offset6:first-child { margin-left: 51.38121546961326%; *margin-left: 51.27483249088986%; } .row-fluid .offset5 { margin-left: 45.58011049723757%; *margin-left: 45.47372751851417%; } .row-fluid .offset5:first-child { margin-left: 42.81767955801105%; *margin-left: 42.71129657928765%; } .row-fluid .offset4 { margin-left: 37.01657458563536%; *margin-left: 36.91019160691196%; } .row-fluid .offset4:first-child { margin-left: 34.25414364640884%; *margin-left: 34.14776066768544%; } .row-fluid .offset3 { margin-left: 28.45303867403315%; *margin-left: 28.346655695309746%; } .row-fluid .offset3:first-child { margin-left: 25.69060773480663%; *margin-left: 25.584224756083227%; } .row-fluid .offset2 { margin-left: 19.88950276243094%; *margin-left: 19.783119783707537%; } .row-fluid .offset2:first-child { margin-left: 17.12707182320442%; *margin-left: 17.02068884448102%; } .row-fluid .offset1 { margin-left: 11.32596685082873%; *margin-left: 11.219583872105325%; } .row-fluid .offset1:first-child { margin-left: 8.56353591160221%; *margin-left: 8.457152932878806%; } input, textarea, .uneditable-input { margin-left: 0; } .controls-row [class*="span"] + [class*="span"] { margin-left: 20px; } input.span12, textarea.span12, .uneditable-input.span12 { width: 710px; } input.span11, textarea.span11, .uneditable-input.span11 { width: 648px; } input.span10, textarea.span10, .uneditable-input.span10 { width: 586px; } input.span9, textarea.span9, .uneditable-input.span9 { width: 524px; } input.span8, textarea.span8, .uneditable-input.span8 { width: 462px; } input.span7, textarea.span7, .uneditable-input.span7 { width: 400px; } input.span6, textarea.span6, .uneditable-input.span6 { width: 338px; } input.span5, textarea.span5, .uneditable-input.span5 { width: 276px; } input.span4, textarea.span4, .uneditable-input.span4 { width: 214px; } input.span3, textarea.span3, .uneditable-input.span3 { width: 152px; } input.span2, textarea.span2, .uneditable-input.span2 { width: 90px; } input.span1, textarea.span1, .uneditable-input.span1 { width: 28px; } } @media (max-width: 767px) { body { padding-right: 20px; padding-left: 20px; } .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top { margin-right: -20px; margin-left: -20px; } .container-fluid { padding: 0; } .dl-horizontal dt { float: none; width: auto; clear: none; text-align: left; } .dl-horizontal dd { margin-left: 0; } .container { width: auto; } .row-fluid { width: 100%; } .row, .thumbnails { margin-left: 0; } .thumbnails > li { float: none; margin-left: 0; } [class*="span"], .row-fluid [class*="span"] { display: block; float: none; width: 100%; margin-left: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .span12, .row-fluid .span12 { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] { display: inline-block; width: auto; } .controls-row [class*="span"] + [class*="span"] { margin-left: 0; } .modal { position: fixed; top: 20px; right: 20px; left: 20px; width: auto; margin: 0; } .modal.fade.in { top: auto; } } @media (max-width: 480px) { .nav-collapse { -webkit-transform: translate3d(0, 0, 0); } .page-header h1 small { display: block; line-height: 20px; } input[type="checkbox"], input[type="radio"] { border: 1px solid #ccc; } .form-horizontal .control-label { float: none; width: auto; padding-top: 0; text-align: left; } .form-horizontal .controls { margin-left: 0; } .form-horizontal .control-list { padding-top: 0; } .form-horizontal .form-actions { padding-right: 10px; padding-left: 10px; } .modal { top: 10px; right: 10px; left: 10px; } .modal-header .close { padding: 10px; margin: -10px; } .carousel-caption { position: static; } } @media (max-width: 979px) { body { padding-top: 0; } .navbar-fixed-top, .navbar-fixed-bottom { position: static; } .navbar-fixed-top { margin-bottom: 20px; } .navbar-fixed-bottom { margin-top: 20px; } .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner { padding: 5px; } .navbar .container { width: auto; padding: 0; } .navbar .brand { padding-right: 10px; padding-left: 10px; margin: 0 0 0 -5px; } .nav-collapse { clear: both; } .nav-collapse .nav { float: none; margin: 0 0 10px; } .nav-collapse .nav > li { float: none; } .nav-collapse .nav > li > a { margin-bottom: 2px; } .nav-collapse .nav > .divider-vertical { display: none; } .nav-collapse .nav .nav-header { color: #777777; text-shadow: none; } .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a { padding: 9px 15px; font-weight: bold; color: #777777; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .nav-collapse .btn { padding: 4px 10px 4px; font-weight: normal; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .nav-collapse .dropdown-menu li + li a { margin-bottom: 2px; } .nav-collapse .nav > li > a:hover, .nav-collapse .dropdown-menu a:hover { background-color: #f2f2f2; } .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:hover { background-color: #111111; } .nav-collapse.in .btn-group { padding: 0; margin-top: 5px; } .nav-collapse .dropdown-menu { position: static; top: auto; left: auto; display: block; float: none; max-width: none; padding: 0; margin: 0 15px; background-color: transparent; border: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after { display: none; } .nav-collapse .dropdown-menu .divider { display: none; } .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after { display: none; } .nav-collapse .navbar-form, .nav-collapse .navbar-search { float: none; padding: 10px 15px; margin: 10px 0; border-top: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); } .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search { border-top-color: #111111; border-bottom-color: #111111; } .navbar .nav-collapse .nav.pull-right { float: none; margin-left: 0; } .nav-collapse, .nav-collapse.collapse { height: 0; overflow: hidden; } .navbar .btn-navbar { display: block; } .navbar-static .navbar-inner { padding-right: 10px; padding-left: 10px; } } @media (min-width: 980px) { .nav-collapse.collapse { height: auto !important; overflow: visible !important; } }django-rest-framework-3.3.2/docs_theme/css/bootstrap.css000077500000000000000000003465571263353514300234140ustar00rootroot00000000000000/*! * Bootstrap v2.1.1 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } audio:not([controls]) { display: none; } html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } a:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } a:hover, a:active { outline: 0; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { width: auto\9; height: auto; max-width: 100%; vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } #map_canvas img { max-width: none; } button, input, select, textarea { margin: 0; font-size: 100%; vertical-align: middle; } button, input { *overflow: visible; line-height: normal; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; } textarea { overflow: auto; vertical-align: top; } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; line-height: 0; content: ""; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #333333; background-color: #ffffff; } a { color: #0088cc; text-decoration: none; } a:hover { color: #005580; text-decoration: underline; } .img-rounded { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .img-polaroid { padding: 4px; background-color: #fff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .img-circle { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } .row { margin-left: -20px; *zoom: 1; } .row:before, .row:after { display: table; line-height: 0; content: ""; } .row:after { clear: both; } [class*="span"] { float: left; min-height: 1px; margin-left: 20px; } .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 940px; } .span12 { width: 940px; } .span11 { width: 860px; } .span10 { width: 780px; } .span9 { width: 700px; } .span8 { width: 620px; } .span7 { width: 540px; } .span6 { width: 460px; } .span5 { width: 380px; } .span4 { width: 300px; } .span3 { width: 220px; } .span2 { width: 140px; } .span1 { width: 60px; } .offset12 { margin-left: 980px; } .offset11 { margin-left: 900px; } .offset10 { margin-left: 820px; } .offset9 { margin-left: 740px; } .offset8 { margin-left: 660px; } .offset7 { margin-left: 580px; } .offset6 { margin-left: 500px; } .offset5 { margin-left: 420px; } .offset4 { margin-left: 340px; } .offset3 { margin-left: 260px; } .offset2 { margin-left: 180px; } .offset1 { margin-left: 100px; } .row-fluid { width: 100%; *zoom: 1; } .row-fluid:before, .row-fluid:after { display: table; line-height: 0; content: ""; } .row-fluid:after { clear: both; } .row-fluid [class*="span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.127659574468085%; *margin-left: 2.074468085106383%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .row-fluid [class*="span"]:first-child { margin-left: 0; } .row-fluid .span12 { width: 100%; *width: 99.94680851063829%; } .row-fluid .span11 { width: 91.48936170212765%; *width: 91.43617021276594%; } .row-fluid .span10 { width: 82.97872340425532%; *width: 82.92553191489361%; } .row-fluid .span9 { width: 74.46808510638297%; *width: 74.41489361702126%; } .row-fluid .span8 { width: 65.95744680851064%; *width: 65.90425531914893%; } .row-fluid .span7 { width: 57.44680851063829%; *width: 57.39361702127659%; } .row-fluid .span6 { width: 48.93617021276595%; *width: 48.88297872340425%; } .row-fluid .span5 { width: 40.42553191489362%; *width: 40.37234042553192%; } .row-fluid .span4 { width: 31.914893617021278%; *width: 31.861702127659576%; } .row-fluid .span3 { width: 23.404255319148934%; *width: 23.351063829787233%; } .row-fluid .span2 { width: 14.893617021276595%; *width: 14.840425531914894%; } .row-fluid .span1 { width: 6.382978723404255%; *width: 6.329787234042553%; } .row-fluid .offset12 { margin-left: 104.25531914893617%; *margin-left: 104.14893617021275%; } .row-fluid .offset12:first-child { margin-left: 102.12765957446808%; *margin-left: 102.02127659574467%; } .row-fluid .offset11 { margin-left: 95.74468085106382%; *margin-left: 95.6382978723404%; } .row-fluid .offset11:first-child { margin-left: 93.61702127659574%; *margin-left: 93.51063829787232%; } .row-fluid .offset10 { margin-left: 87.23404255319149%; *margin-left: 87.12765957446807%; } .row-fluid .offset10:first-child { margin-left: 85.1063829787234%; *margin-left: 84.99999999999999%; } .row-fluid .offset9 { margin-left: 78.72340425531914%; *margin-left: 78.61702127659572%; } .row-fluid .offset9:first-child { margin-left: 76.59574468085106%; *margin-left: 76.48936170212764%; } .row-fluid .offset8 { margin-left: 70.2127659574468%; *margin-left: 70.10638297872339%; } .row-fluid .offset8:first-child { margin-left: 68.08510638297872%; *margin-left: 67.9787234042553%; } .row-fluid .offset7 { margin-left: 61.70212765957446%; *margin-left: 61.59574468085106%; } .row-fluid .offset7:first-child { margin-left: 59.574468085106375%; *margin-left: 59.46808510638297%; } .row-fluid .offset6 { margin-left: 53.191489361702125%; *margin-left: 53.085106382978715%; } .row-fluid .offset6:first-child { margin-left: 51.063829787234035%; *margin-left: 50.95744680851063%; } .row-fluid .offset5 { margin-left: 44.68085106382979%; *margin-left: 44.57446808510638%; } .row-fluid .offset5:first-child { margin-left: 42.5531914893617%; *margin-left: 42.4468085106383%; } .row-fluid .offset4 { margin-left: 36.170212765957444%; *margin-left: 36.06382978723405%; } .row-fluid .offset4:first-child { margin-left: 34.04255319148936%; *margin-left: 33.93617021276596%; } .row-fluid .offset3 { margin-left: 27.659574468085104%; *margin-left: 27.5531914893617%; } .row-fluid .offset3:first-child { margin-left: 25.53191489361702%; *margin-left: 25.425531914893618%; } .row-fluid .offset2 { margin-left: 19.148936170212764%; *margin-left: 19.04255319148936%; } .row-fluid .offset2:first-child { margin-left: 17.02127659574468%; *margin-left: 16.914893617021278%; } .row-fluid .offset1 { margin-left: 10.638297872340425%; *margin-left: 10.53191489361702%; } .row-fluid .offset1:first-child { margin-left: 8.51063829787234%; *margin-left: 8.404255319148938%; } [class*="span"].hide, .row-fluid [class*="span"].hide { display: none; } [class*="span"].pull-right, .row-fluid [class*="span"].pull-right { float: right; } .container { margin-right: auto; margin-left: auto; *zoom: 1; } .container:before, .container:after { display: table; line-height: 0; content: ""; } .container:after { clear: both; } .container-fluid { padding-right: 20px; padding-left: 20px; *zoom: 1; } .container-fluid:before, .container-fluid:after { display: table; line-height: 0; content: ""; } .container-fluid:after { clear: both; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 21px; font-weight: 200; line-height: 30px; } small { font-size: 85%; } strong { font-weight: bold; } em { font-style: italic; } cite { font-style: normal; } .muted { color: #999999; } .text-warning { color: #c09853; } .text-error { color: #b94a48; } .text-info { color: #3a87ad; } .text-success { color: #468847; } h1, h2, h3, h4, h5, h6 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 1; color: inherit; text-rendering: optimizelegibility; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-weight: normal; line-height: 1; color: #999999; } h1 { font-size: 36px; line-height: 40px; } h2 { font-size: 30px; line-height: 40px; } h3 { font-size: 24px; line-height: 40px; } h4 { font-size: 18px; line-height: 20px; } h5 { font-size: 14px; line-height: 20px; } h6 { font-size: 12px; line-height: 20px; } h1 small { font-size: 24px; } h2 small { font-size: 18px; } h3 small { font-size: 14px; } h4 small { font-size: 14px; } .page-header { padding-bottom: 9px; margin: 20px 0 30px; border-bottom: 1px solid #eeeeee; } ul, ol { padding: 0; margin: 0 0 10px 25px; } ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } li { line-height: 20px; } ul.unstyled, ol.unstyled { margin-left: 0; list-style: none; } dl { margin-bottom: 20px; } dt, dd { line-height: 20px; } dt { font-weight: bold; } dd { margin-left: 10px; } .dl-horizontal { *zoom: 1; } .dl-horizontal:before, .dl-horizontal:after { display: table; line-height: 0; content: ""; } .dl-horizontal:after { clear: both; } .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } hr { margin: 20px 0; border: 0; border-top: 1px solid #eeeeee; border-bottom: 1px solid #ffffff; } abbr[title] { cursor: help; border-bottom: 1px dotted #999999; } abbr.initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 0 0 0 15px; margin: 0 0 20px; border-left: 5px solid #eeeeee; } blockquote p { margin-bottom: 0; font-size: 16px; font-weight: 300; line-height: 25px; } blockquote small { display: block; line-height: 20px; color: #999999; } blockquote small:before { content: '\2014 \00A0'; } blockquote.pull-right { float: right; padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; } blockquote.pull-right p, blockquote.pull-right small { text-align: right; } blockquote.pull-right small:before { content: ''; } blockquote.pull-right small:after { content: '\00A0 \2014'; } q:before, q:after, blockquote:before, blockquote:after { content: ""; } address { display: block; margin-bottom: 20px; font-style: normal; line-height: 20px; } code, pre { padding: 0 3px 2px; font-family: Monaco, Menlo, Consolas, "Courier New", monospace; font-size: 12px; color: #333333; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } code { padding: 2px 4px; color: #d14; background-color: #f7f7f9; border: 1px solid #e1e1e8; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 20px; word-break: break-all; word-wrap: break-word; white-space: pre; white-space: pre-wrap; background-color: #f5f5f5; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } pre.prettyprint { margin-bottom: 20px; } pre code { padding: 0; color: inherit; background-color: transparent; border: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } form { margin: 0 0 20px; } fieldset { padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: 40px; color: #333333; border: 0; border-bottom: 1px solid #e5e5e5; } legend small { font-size: 15px; color: #999999; } label, input, button, select, textarea { font-size: 14px; font-weight: normal; line-height: 20px; } input, button, select, textarea { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } label { display: block; margin-bottom: 5px; } select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { display: inline-block; height: 20px; padding: 4px 6px; margin-bottom: 9px; font-size: 14px; line-height: 20px; color: #555555; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } input, textarea, .uneditable-input { width: 206px; } textarea { height: auto; } textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { background-color: #ffffff; border: 1px solid #cccccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; } textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus { border-color: rgba(82, 168, 236, 0.8); outline: 0; outline: thin dotted \9; /* IE6-9 */ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; *margin-top: 0; line-height: normal; cursor: pointer; } input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] { width: auto; } select, input[type="file"] { height: 30px; /* In IE7, the height of the select element cannot be changed by height, only font-size */ *margin-top: 4px; /* For IE7, add top margin to align select with labels */ line-height: 30px; } select { width: 220px; background-color: #ffffff; border: 1px solid #cccccc; } select[multiple], select[size] { height: auto; } select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .uneditable-input, .uneditable-textarea { color: #999999; cursor: not-allowed; background-color: #fcfcfc; border-color: #cccccc; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); } .uneditable-input { overflow: hidden; white-space: nowrap; } .uneditable-textarea { width: auto; height: auto; } input:-moz-placeholder, textarea:-moz-placeholder { color: #999999; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #999999; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #999999; } .radio, .checkbox { min-height: 18px; padding-left: 18px; } .radio input[type="radio"], .checkbox input[type="checkbox"] { float: left; margin-left: -18px; } .controls > .radio:first-child, .controls > .checkbox:first-child { padding-top: 5px; } .radio.inline, .checkbox.inline { display: inline-block; padding-top: 5px; margin-bottom: 0; vertical-align: middle; } .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline { margin-left: 10px; } .input-mini { width: 60px; } .input-small { width: 90px; } .input-medium { width: 150px; } .input-large { width: 210px; } .input-xlarge { width: 270px; } .input-xxlarge { width: 530px; } input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"], .row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"] { float: none; margin-left: 0; } .input-append input[class*="span"], .input-append .uneditable-input[class*="span"], .input-prepend input[class*="span"], .input-prepend .uneditable-input[class*="span"], .row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"], .row-fluid .input-prepend [class*="span"], .row-fluid .input-append [class*="span"] { display: inline-block; } input, textarea, .uneditable-input { margin-left: 0; } .controls-row [class*="span"] + [class*="span"] { margin-left: 20px; } input.span12, textarea.span12, .uneditable-input.span12 { width: 926px; } input.span11, textarea.span11, .uneditable-input.span11 { width: 846px; } input.span10, textarea.span10, .uneditable-input.span10 { width: 766px; } input.span9, textarea.span9, .uneditable-input.span9 { width: 686px; } input.span8, textarea.span8, .uneditable-input.span8 { width: 606px; } input.span7, textarea.span7, .uneditable-input.span7 { width: 526px; } input.span6, textarea.span6, .uneditable-input.span6 { width: 446px; } input.span5, textarea.span5, .uneditable-input.span5 { width: 366px; } input.span4, textarea.span4, .uneditable-input.span4 { width: 286px; } input.span3, textarea.span3, .uneditable-input.span3 { width: 206px; } input.span2, textarea.span2, .uneditable-input.span2 { width: 126px; } input.span1, textarea.span1, .uneditable-input.span1 { width: 46px; } .controls-row { *zoom: 1; } .controls-row:before, .controls-row:after { display: table; line-height: 0; content: ""; } .controls-row:after { clear: both; } .controls-row [class*="span"] { float: left; } input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] { cursor: not-allowed; background-color: #eeeeee; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] { background-color: transparent; } .control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline { color: #c09853; } .control-group.warning .checkbox, .control-group.warning .radio, .control-group.warning input, .control-group.warning select, .control-group.warning textarea { color: #c09853; } .control-group.warning input, .control-group.warning select, .control-group.warning textarea { border-color: #c09853; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus { border-color: #a47e3c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; } .control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on { color: #c09853; background-color: #fcf8e3; border-color: #c09853; } .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline { color: #b94a48; } .control-group.error .checkbox, .control-group.error .radio, .control-group.error input, .control-group.error select, .control-group.error textarea { color: #b94a48; } .control-group.error input, .control-group.error select, .control-group.error textarea { border-color: #b94a48; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus { border-color: #953b39; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; } .control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on { color: #b94a48; background-color: #f2dede; border-color: #b94a48; } .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline { color: #468847; } .control-group.success .checkbox, .control-group.success .radio, .control-group.success input, .control-group.success select, .control-group.success textarea { color: #468847; } .control-group.success input, .control-group.success select, .control-group.success textarea { border-color: #468847; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus { border-color: #356635; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; } .control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on { color: #468847; background-color: #dff0d8; border-color: #468847; } .control-group.info > label, .control-group.info .help-block, .control-group.info .help-inline { color: #3a87ad; } .control-group.info .checkbox, .control-group.info .radio, .control-group.info input, .control-group.info select, .control-group.info textarea { color: #3a87ad; } .control-group.info input, .control-group.info select, .control-group.info textarea { border-color: #3a87ad; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .control-group.info input:focus, .control-group.info select:focus, .control-group.info textarea:focus { border-color: #2d6987; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; } .control-group.info .input-prepend .add-on, .control-group.info .input-append .add-on { color: #3a87ad; background-color: #d9edf7; border-color: #3a87ad; } input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid { color: #b94a48; border-color: #ee5f5b; } input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus { border-color: #e9322d; -webkit-box-shadow: 0 0 6px #f8b9b7; -moz-box-shadow: 0 0 6px #f8b9b7; box-shadow: 0 0 6px #f8b9b7; } .form-actions { padding: 19px 20px 20px; margin-top: 20px; margin-bottom: 20px; background-color: #f5f5f5; border-top: 1px solid #e5e5e5; *zoom: 1; } .form-actions:before, .form-actions:after { display: table; line-height: 0; content: ""; } .form-actions:after { clear: both; } .help-block, .help-inline { color: #595959; } .help-block { display: block; margin-bottom: 10px; } .help-inline { display: inline-block; *display: inline; padding-left: 5px; vertical-align: middle; *zoom: 1; } .input-append, .input-prepend { margin-bottom: 5px; font-size: 0; white-space: nowrap; } .input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input { position: relative; margin-bottom: 0; *margin-left: 0; font-size: 14px; vertical-align: top; -webkit-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .input-append input:focus, .input-prepend input:focus, .input-append select:focus, .input-prepend select:focus, .input-append .uneditable-input:focus, .input-prepend .uneditable-input:focus { z-index: 2; } .input-append .add-on, .input-prepend .add-on { display: inline-block; width: auto; height: 20px; min-width: 16px; padding: 4px 5px; font-size: 14px; font-weight: normal; line-height: 20px; text-align: center; text-shadow: 0 1px 0 #ffffff; background-color: #eeeeee; border: 1px solid #ccc; } .input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn { vertical-align: top; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .input-append .active, .input-prepend .active { background-color: #a9dba9; border-color: #46a546; } .input-prepend .add-on, .input-prepend .btn { margin-right: -1px; } .input-prepend .add-on:first-child, .input-prepend .btn:first-child { -webkit-border-radius: 3px 0 0 3px; -moz-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .input-append input, .input-append select, .input-append .uneditable-input { -webkit-border-radius: 3px 0 0 3px; -moz-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .input-append .add-on, .input-append .btn { margin-left: -1px; } .input-append .add-on:last-child, .input-append .btn:last-child { -webkit-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .input-prepend.input-append input, .input-prepend.input-append select, .input-prepend.input-append .uneditable-input { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child { margin-right: -1px; -webkit-border-radius: 3px 0 0 3px; -moz-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child { margin-left: -1px; -webkit-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } input.search-query { padding-right: 14px; padding-right: 4px \9; padding-left: 14px; padding-left: 4px \9; /* IE7-8 doesn't have border-radius, so don't indent the padding */ margin-bottom: 0; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } /* Allow for input prepend/append in search forms */ .form-search .input-append .search-query, .form-search .input-prepend .search-query { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .form-search .input-append .search-query { -webkit-border-radius: 14px 0 0 14px; -moz-border-radius: 14px 0 0 14px; border-radius: 14px 0 0 14px; } .form-search .input-append .btn { -webkit-border-radius: 0 14px 14px 0; -moz-border-radius: 0 14px 14px 0; border-radius: 0 14px 14px 0; } .form-search .input-prepend .search-query { -webkit-border-radius: 0 14px 14px 0; -moz-border-radius: 0 14px 14px 0; border-radius: 0 14px 14px 0; } .form-search .input-prepend .btn { -webkit-border-radius: 14px 0 0 14px; -moz-border-radius: 14px 0 0 14px; border-radius: 14px 0 0 14px; } .form-search input, .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append { display: inline-block; *display: inline; margin-bottom: 0; vertical-align: middle; *zoom: 1; } .form-search .hide, .form-inline .hide, .form-horizontal .hide { display: none; } .form-search label, .form-inline label, .form-search .btn-group, .form-inline .btn-group { display: inline-block; } .form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend { margin-bottom: 0; } .form-search .radio, .form-search .checkbox, .form-inline .radio, .form-inline .checkbox { padding-left: 0; margin-bottom: 0; vertical-align: middle; } .form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"], .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { float: left; margin-right: 3px; margin-left: 0; } .control-group { margin-bottom: 10px; } legend + .control-group { margin-top: 20px; -webkit-margin-top-collapse: separate; } .form-horizontal .control-group { margin-bottom: 20px; *zoom: 1; } .form-horizontal .control-group:before, .form-horizontal .control-group:after { display: table; line-height: 0; content: ""; } .form-horizontal .control-group:after { clear: both; } .form-horizontal .control-label { float: left; width: 160px; padding-top: 5px; text-align: right; } .form-horizontal .controls { *display: inline-block; *padding-left: 20px; margin-left: 180px; *margin-left: 0; } .form-horizontal .controls:first-child { *padding-left: 180px; } .form-horizontal .help-block { margin-bottom: 0; } .form-horizontal input + .help-block, .form-horizontal select + .help-block, .form-horizontal textarea + .help-block { margin-top: 10px; } .form-horizontal .form-actions { padding-left: 180px; } table { max-width: 100%; background-color: transparent; border-collapse: collapse; border-spacing: 0; } .table { width: 100%; margin-bottom: 20px; } .table th, .table td { padding: 8px; line-height: 20px; text-align: left; vertical-align: top; border-top: 1px solid #dddddd; } .table th { font-weight: bold; } .table thead th { vertical-align: bottom; } .table caption + thead tr:first-child th, .table caption + thead tr:first-child td, .table colgroup + thead tr:first-child th, .table colgroup + thead tr:first-child td, .table thead:first-child tr:first-child th, .table thead:first-child tr:first-child td { border-top: 0; } .table tbody + tbody { border-top: 2px solid #dddddd; } .table-condensed th, .table-condensed td { padding: 4px 5px; } .table-bordered { border: 1px solid #dddddd; border-collapse: separate; *border-collapse: collapse; border-left: 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .table-bordered th, .table-bordered td { border-left: 1px solid #dddddd; } .table-bordered caption + thead tr:first-child th, .table-bordered caption + tbody tr:first-child th, .table-bordered caption + tbody tr:first-child td, .table-bordered colgroup + thead tr:first-child th, .table-bordered colgroup + tbody tr:first-child th, .table-bordered colgroup + tbody tr:first-child td, .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td { border-top: 0; } .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child { -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; } .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-topright: 4px; } .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child, .table-bordered tfoot:last-child tr:last-child td:first-child { -webkit-border-radius: 0 0 0 4px; -moz-border-radius: 0 0 0 4px; border-radius: 0 0 0 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; } .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child, .table-bordered tfoot:last-child tr:last-child td:last-child { -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; } .table-bordered caption + thead tr:first-child th:first-child, .table-bordered caption + tbody tr:first-child td:first-child, .table-bordered colgroup + thead tr:first-child th:first-child, .table-bordered colgroup + tbody tr:first-child td:first-child { -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; } .table-bordered caption + thead tr:first-child th:last-child, .table-bordered caption + tbody tr:first-child td:last-child, .table-bordered colgroup + thead tr:first-child th:last-child, .table-bordered colgroup + tbody tr:first-child td:last-child { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-topleft: 4px; } .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th { background-color: #f9f9f9; } .table-hover tbody tr:hover td, .table-hover tbody tr:hover th { background-color: #f5f5f5; } table [class*=span], .row-fluid table [class*=span] { display: table-cell; float: none; margin-left: 0; } .table .span1 { float: none; width: 44px; margin-left: 0; } .table .span2 { float: none; width: 124px; margin-left: 0; } .table .span3 { float: none; width: 204px; margin-left: 0; } .table .span4 { float: none; width: 284px; margin-left: 0; } .table .span5 { float: none; width: 364px; margin-left: 0; } .table .span6 { float: none; width: 444px; margin-left: 0; } .table .span7 { float: none; width: 524px; margin-left: 0; } .table .span8 { float: none; width: 604px; margin-left: 0; } .table .span9 { float: none; width: 684px; margin-left: 0; } .table .span10 { float: none; width: 764px; margin-left: 0; } .table .span11 { float: none; width: 844px; margin-left: 0; } .table .span12 { float: none; width: 924px; margin-left: 0; } .table .span13 { float: none; width: 1004px; margin-left: 0; } .table .span14 { float: none; width: 1084px; margin-left: 0; } .table .span15 { float: none; width: 1164px; margin-left: 0; } .table .span16 { float: none; width: 1244px; margin-left: 0; } .table .span17 { float: none; width: 1324px; margin-left: 0; } .table .span18 { float: none; width: 1404px; margin-left: 0; } .table .span19 { float: none; width: 1484px; margin-left: 0; } .table .span20 { float: none; width: 1564px; margin-left: 0; } .table .span21 { float: none; width: 1644px; margin-left: 0; } .table .span22 { float: none; width: 1724px; margin-left: 0; } .table .span23 { float: none; width: 1804px; margin-left: 0; } .table .span24 { float: none; width: 1884px; margin-left: 0; } .table tbody tr.success td { background-color: #dff0d8; } .table tbody tr.error td { background-color: #f2dede; } .table tbody tr.warning td { background-color: #fcf8e3; } .table tbody tr.info td { background-color: #d9edf7; } .table-hover tbody tr.success:hover td { background-color: #d0e9c6; } .table-hover tbody tr.error:hover td { background-color: #ebcccc; } .table-hover tbody tr.warning:hover td { background-color: #faf2cc; } .table-hover tbody tr.info:hover td { background-color: #c4e3f3; } [class^="icon-"], [class*=" icon-"] { display: inline-block; width: 14px; height: 14px; margin-top: 1px; *margin-right: .3em; line-height: 14px; vertical-align: text-top; background-image: url("../img/glyphicons-halflings.png"); background-position: 14px 14px; background-repeat: no-repeat; } /* White icons with optional class, or on hover/active states of certain elements */ .icon-white, .nav-tabs > .active > a > [class^="icon-"], .nav-tabs > .active > a > [class*=" icon-"], .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"] { background-image: url("../img/glyphicons-halflings-white.png"); } .icon-glass { background-position: 0 0; } .icon-music { background-position: -24px 0; } .icon-search { background-position: -48px 0; } .icon-envelope { background-position: -72px 0; } .icon-heart { background-position: -96px 0; } .icon-star { background-position: -120px 0; } .icon-star-empty { background-position: -144px 0; } .icon-user { background-position: -168px 0; } .icon-film { background-position: -192px 0; } .icon-th-large { background-position: -216px 0; } .icon-th { background-position: -240px 0; } .icon-th-list { background-position: -264px 0; } .icon-ok { background-position: -288px 0; } .icon-remove { background-position: -312px 0; } .icon-zoom-in { background-position: -336px 0; } .icon-zoom-out { background-position: -360px 0; } .icon-off { background-position: -384px 0; } .icon-signal { background-position: -408px 0; } .icon-cog { background-position: -432px 0; } .icon-trash { background-position: -456px 0; } .icon-home { background-position: 0 -24px; } .icon-file { background-position: -24px -24px; } .icon-time { background-position: -48px -24px; } .icon-road { background-position: -72px -24px; } .icon-download-alt { background-position: -96px -24px; } .icon-download { background-position: -120px -24px; } .icon-upload { background-position: -144px -24px; } .icon-inbox { background-position: -168px -24px; } .icon-play-circle { background-position: -192px -24px; } .icon-repeat { background-position: -216px -24px; } .icon-refresh { background-position: -240px -24px; } .icon-list-alt { background-position: -264px -24px; } .icon-lock { background-position: -287px -24px; } .icon-flag { background-position: -312px -24px; } .icon-headphones { background-position: -336px -24px; } .icon-volume-off { background-position: -360px -24px; } .icon-volume-down { background-position: -384px -24px; } .icon-volume-up { background-position: -408px -24px; } .icon-qrcode { background-position: -432px -24px; } .icon-barcode { background-position: -456px -24px; } .icon-tag { background-position: 0 -48px; } .icon-tags { background-position: -25px -48px; } .icon-book { background-position: -48px -48px; } .icon-bookmark { background-position: -72px -48px; } .icon-print { background-position: -96px -48px; } .icon-camera { background-position: -120px -48px; } .icon-font { background-position: -144px -48px; } .icon-bold { background-position: -167px -48px; } .icon-italic { background-position: -192px -48px; } .icon-text-height { background-position: -216px -48px; } .icon-text-width { background-position: -240px -48px; } .icon-align-left { background-position: -264px -48px; } .icon-align-center { background-position: -288px -48px; } .icon-align-right { background-position: -312px -48px; } .icon-align-justify { background-position: -336px -48px; } .icon-list { background-position: -360px -48px; } .icon-indent-left { background-position: -384px -48px; } .icon-indent-right { background-position: -408px -48px; } .icon-facetime-video { background-position: -432px -48px; } .icon-picture { background-position: -456px -48px; } .icon-pencil { background-position: 0 -72px; } .icon-map-marker { background-position: -24px -72px; } .icon-adjust { background-position: -48px -72px; } .icon-tint { background-position: -72px -72px; } .icon-edit { background-position: -96px -72px; } .icon-share { background-position: -120px -72px; } .icon-check { background-position: -144px -72px; } .icon-move { background-position: -168px -72px; } .icon-step-backward { background-position: -192px -72px; } .icon-fast-backward { background-position: -216px -72px; } .icon-backward { background-position: -240px -72px; } .icon-play { background-position: -264px -72px; } .icon-pause { background-position: -288px -72px; } .icon-stop { background-position: -312px -72px; } .icon-forward { background-position: -336px -72px; } .icon-fast-forward { background-position: -360px -72px; } .icon-step-forward { background-position: -384px -72px; } .icon-eject { background-position: -408px -72px; } .icon-chevron-left { background-position: -432px -72px; } .icon-chevron-right { background-position: -456px -72px; } .icon-plus-sign { background-position: 0 -96px; } .icon-minus-sign { background-position: -24px -96px; } .icon-remove-sign { background-position: -48px -96px; } .icon-ok-sign { background-position: -72px -96px; } .icon-question-sign { background-position: -96px -96px; } .icon-info-sign { background-position: -120px -96px; } .icon-screenshot { background-position: -144px -96px; } .icon-remove-circle { background-position: -168px -96px; } .icon-ok-circle { background-position: -192px -96px; } .icon-ban-circle { background-position: -216px -96px; } .icon-arrow-left { background-position: -240px -96px; } .icon-arrow-right { background-position: -264px -96px; } .icon-arrow-up { background-position: -289px -96px; } .icon-arrow-down { background-position: -312px -96px; } .icon-share-alt { background-position: -336px -96px; } .icon-resize-full { background-position: -360px -96px; } .icon-resize-small { background-position: -384px -96px; } .icon-plus { background-position: -408px -96px; } .icon-minus { background-position: -433px -96px; } .icon-asterisk { background-position: -456px -96px; } .icon-exclamation-sign { background-position: 0 -120px; } .icon-gift { background-position: -24px -120px; } .icon-leaf { background-position: -48px -120px; } .icon-fire { background-position: -72px -120px; } .icon-eye-open { background-position: -96px -120px; } .icon-eye-close { background-position: -120px -120px; } .icon-warning-sign { background-position: -144px -120px; } .icon-plane { background-position: -168px -120px; } .icon-calendar { background-position: -192px -120px; } .icon-random { width: 16px; background-position: -216px -120px; } .icon-comment { background-position: -240px -120px; } .icon-magnet { background-position: -264px -120px; } .icon-chevron-up { background-position: -288px -120px; } .icon-chevron-down { background-position: -313px -119px; } .icon-retweet { background-position: -336px -120px; } .icon-shopping-cart { background-position: -360px -120px; } .icon-folder-close { background-position: -384px -120px; } .icon-folder-open { width: 16px; background-position: -408px -120px; } .icon-resize-vertical { background-position: -432px -119px; } .icon-resize-horizontal { background-position: -456px -118px; } .icon-hdd { background-position: 0 -144px; } .icon-bullhorn { background-position: -24px -144px; } .icon-bell { background-position: -48px -144px; } .icon-certificate { background-position: -72px -144px; } .icon-thumbs-up { background-position: -96px -144px; } .icon-thumbs-down { background-position: -120px -144px; } .icon-hand-right { background-position: -144px -144px; } .icon-hand-left { background-position: -168px -144px; } .icon-hand-up { background-position: -192px -144px; } .icon-hand-down { background-position: -216px -144px; } .icon-circle-arrow-right { background-position: -240px -144px; } .icon-circle-arrow-left { background-position: -264px -144px; } .icon-circle-arrow-up { background-position: -288px -144px; } .icon-circle-arrow-down { background-position: -312px -144px; } .icon-globe { background-position: -336px -144px; } .icon-wrench { background-position: -360px -144px; } .icon-tasks { background-position: -384px -144px; } .icon-filter { background-position: -408px -144px; } .icon-briefcase { background-position: -432px -144px; } .icon-fullscreen { background-position: -456px -144px; } .dropup, .dropdown { position: relative; } .dropdown-toggle { *margin-bottom: -3px; } .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; } .caret { display: inline-block; width: 0; height: 0; vertical-align: top; border-top: 4px solid #000000; border-right: 4px solid transparent; border-left: 4px solid transparent; content: ""; } .dropdown .caret { margin-top: 8px; margin-left: 2px; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); *border-right-width: 2px; *border-bottom-width: 2px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { *width: 100%; height: 1px; margin: 9px 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #e5e5e5; border-bottom: 1px solid #ffffff; } .dropdown-menu a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 20px; color: #333333; white-space: nowrap; } .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a { color: #ffffff; text-decoration: none; background-color: #0088cc; background-color: #0081c2; background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu .active > a, .dropdown-menu .active > a:hover { color: #ffffff; text-decoration: none; background-color: #0088cc; background-color: #0081c2; background-image: linear-gradient(to bottom, #0088cc, #0077b3); background-image: -moz-linear-gradient(top, #0088cc, #0077b3); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); background-image: -o-linear-gradient(top, #0088cc, #0077b3); background-repeat: repeat-x; outline: 0; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); } .dropdown-menu .disabled > a, .dropdown-menu .disabled > a:hover { color: #999999; } .dropdown-menu .disabled > a:hover { text-decoration: none; cursor: default; background-color: transparent; } .open { *z-index: 1000; } .open > .dropdown-menu { display: block; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid #000000; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 1px; } .dropdown-submenu { position: relative; } .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -6px; margin-left: -1px; -webkit-border-radius: 0 6px 6px 6px; -moz-border-radius: 0 6px 6px 6px; border-radius: 0 6px 6px 6px; } .dropdown-submenu:hover > .dropdown-menu { display: block; } .dropdown-submenu > a:after { display: block; float: right; width: 0; height: 0; margin-top: 5px; margin-right: -10px; border-color: transparent; border-left-color: #cccccc; border-style: solid; border-width: 5px 0 5px 5px; content: " "; } .dropdown-submenu:hover > a:after { border-left-color: #ffffff; } .dropdown .dropdown-menu .nav-header { padding-right: 20px; padding-left: 20px; } .typeahead { margin-top: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } .well-large { padding: 24px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .well-small { padding: 9px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -moz-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } .collapse.in { height: auto; } .close { float: right; font-size: 20px; font-weight: bold; line-height: 20px; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .btn { display: inline-block; *display: inline; padding: 4px 14px; margin-bottom: 0; *margin-left: .3em; font-size: 14px; line-height: 20px; *line-height: 20px; color: #333333; text-align: center; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); vertical-align: middle; cursor: pointer; background-color: #f5f5f5; *background-color: #e6e6e6; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); background-repeat: repeat-x; border: 1px solid #bbbbbb; *border: 0; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); border-color: #e6e6e6 #e6e6e6 #bfbfbf; border-bottom-color: #a2a2a2; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); *zoom: 1; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { color: #333333; background-color: #e6e6e6; *background-color: #d9d9d9; } .btn:active, .btn.active { background-color: #cccccc \9; } .btn:first-child { *margin-left: 0; } .btn:hover { color: #333333; text-decoration: none; background-color: #e6e6e6; *background-color: #d9d9d9; /* Buttons in IE7 don't get borders, so darken on hover */ background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .btn:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.active, .btn:active { background-color: #e6e6e6; background-color: #d9d9d9 \9; background-image: none; outline: 0; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn.disabled, .btn[disabled] { cursor: default; background-color: #e6e6e6; background-image: none; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn-large { padding: 9px 14px; font-size: 16px; line-height: normal; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .btn-large [class^="icon-"] { margin-top: 2px; } .btn-small { padding: 3px 9px; font-size: 12px; line-height: 18px; } .btn-small [class^="icon-"] { margin-top: 0; } .btn-mini { padding: 2px 6px; font-size: 11px; line-height: 17px; } .btn-block { display: block; width: 100%; padding-right: 0; padding-left: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active { color: rgba(255, 255, 255, 0.75); } .btn { border-color: #c5c5c5; border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25); } .btn-primary { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #006dcc; *background-color: #0044cc; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); background-image: -o-linear-gradient(top, #0088cc, #0044cc); background-image: linear-gradient(to bottom, #0088cc, #0044cc); background-image: -moz-linear-gradient(top, #0088cc, #0044cc); background-repeat: repeat-x; border-color: #0044cc #0044cc #002a80; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { color: #ffffff; background-color: #0044cc; *background-color: #003bb3; } .btn-primary:active, .btn-primary.active { background-color: #003399 \9; } .btn-warning { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #faa732; *background-color: #f89406; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-repeat: repeat-x; border-color: #f89406 #f89406 #ad6704; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { color: #ffffff; background-color: #f89406; *background-color: #df8505; } .btn-warning:active, .btn-warning.active { background-color: #c67605 \9; } .btn-danger { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #da4f49; *background-color: #bd362f; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); background-repeat: repeat-x; border-color: #bd362f #bd362f #802420; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] { color: #ffffff; background-color: #bd362f; *background-color: #a9302a; } .btn-danger:active, .btn-danger.active { background-color: #942a25 \9; } .btn-success { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #5bb75b; *background-color: #51a351; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); background-image: -webkit-linear-gradient(top, #62c462, #51a351); background-image: -o-linear-gradient(top, #62c462, #51a351); background-image: linear-gradient(to bottom, #62c462, #51a351); background-image: -moz-linear-gradient(top, #62c462, #51a351); background-repeat: repeat-x; border-color: #51a351 #51a351 #387038; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { color: #ffffff; background-color: #51a351; *background-color: #499249; } .btn-success:active, .btn-success.active { background-color: #408140 \9; } .btn-info { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #49afcd; *background-color: #2f96b4; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-repeat: repeat-x; border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { color: #ffffff; background-color: #2f96b4; *background-color: #2a85a0; } .btn-info:active, .btn-info.active { background-color: #24748c \9; } .btn-inverse { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #363636; *background-color: #222222; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); background-image: -webkit-linear-gradient(top, #444444, #222222); background-image: -o-linear-gradient(top, #444444, #222222); background-image: linear-gradient(to bottom, #444444, #222222); background-image: -moz-linear-gradient(top, #444444, #222222); background-repeat: repeat-x; border-color: #222222 #222222 #000000; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] { color: #ffffff; background-color: #222222; *background-color: #151515; } .btn-inverse:active, .btn-inverse.active { background-color: #080808 \9; } button.btn, input[type="submit"].btn { *padding-top: 3px; *padding-bottom: 3px; } button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { padding: 0; border: 0; } button.btn.btn-large, input[type="submit"].btn.btn-large { *padding-top: 7px; *padding-bottom: 7px; } button.btn.btn-small, input[type="submit"].btn.btn-small { *padding-top: 3px; *padding-bottom: 3px; } button.btn.btn-mini, input[type="submit"].btn.btn-mini { *padding-top: 1px; *padding-bottom: 1px; } .btn-link, .btn-link:active, .btn-link[disabled] { background-color: transparent; background-image: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn-link { color: #0088cc; cursor: pointer; border-color: transparent; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn-link:hover { color: #005580; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover { color: #333333; text-decoration: none; } .btn-group { position: relative; *margin-left: .3em; font-size: 0; white-space: nowrap; vertical-align: middle; } .btn-group:first-child { *margin-left: 0; } .btn-group + .btn-group { margin-left: 5px; } .btn-toolbar { margin-top: 10px; margin-bottom: 10px; font-size: 0; } .btn-toolbar .btn-group { display: inline-block; *display: inline; /* IE7 inline-block hack */ *zoom: 1; } .btn-toolbar .btn + .btn, .btn-toolbar .btn-group + .btn, .btn-toolbar .btn + .btn-group { margin-left: 5px; } .btn-group > .btn { position: relative; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn-group > .btn + .btn { margin-left: -1px; } .btn-group > .btn, .btn-group > .dropdown-menu { font-size: 14px; } .btn-group > .btn-mini { font-size: 11px; } .btn-group > .btn-small { font-size: 12px; } .btn-group > .btn-large { font-size: 16px; } .btn-group > .btn:first-child { margin-left: 0; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; } .btn-group > .btn:last-child, .btn-group > .dropdown-toggle { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; } .btn-group > .btn.large:first-child { margin-left: 0; -webkit-border-bottom-left-radius: 6px; border-bottom-left-radius: 6px; -webkit-border-top-left-radius: 6px; border-top-left-radius: 6px; -moz-border-radius-bottomleft: 6px; -moz-border-radius-topleft: 6px; } .btn-group > .btn.large:last-child, .btn-group > .large.dropdown-toggle { -webkit-border-top-right-radius: 6px; border-top-right-radius: 6px; -webkit-border-bottom-right-radius: 6px; border-bottom-right-radius: 6px; -moz-border-radius-topright: 6px; -moz-border-radius-bottomright: 6px; } .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active { z-index: 2; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { *padding-top: 5px; padding-right: 8px; *padding-bottom: 5px; padding-left: 8px; -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-group > .btn-mini + .dropdown-toggle { *padding-top: 2px; padding-right: 5px; *padding-bottom: 2px; padding-left: 5px; } .btn-group > .btn-small + .dropdown-toggle { *padding-top: 5px; *padding-bottom: 4px; } .btn-group > .btn-large + .dropdown-toggle { *padding-top: 7px; padding-right: 12px; *padding-bottom: 7px; padding-left: 12px; } .btn-group.open .dropdown-toggle { background-image: none; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-group.open .btn.dropdown-toggle { background-color: #e6e6e6; } .btn-group.open .btn-primary.dropdown-toggle { background-color: #0044cc; } .btn-group.open .btn-warning.dropdown-toggle { background-color: #f89406; } .btn-group.open .btn-danger.dropdown-toggle { background-color: #bd362f; } .btn-group.open .btn-success.dropdown-toggle { background-color: #51a351; } .btn-group.open .btn-info.dropdown-toggle { background-color: #2f96b4; } .btn-group.open .btn-inverse.dropdown-toggle { background-color: #222222; } .btn .caret { margin-top: 8px; margin-left: 0; } .btn-mini .caret, .btn-small .caret, .btn-large .caret { margin-top: 6px; } .btn-large .caret { border-top-width: 5px; border-right-width: 5px; border-left-width: 5px; } .dropup .btn-large .caret { border-top: 0; border-bottom: 5px solid #000000; } .btn-primary .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret, .btn-success .caret, .btn-inverse .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; } .btn-group-vertical { display: inline-block; *display: inline; /* IE7 inline-block hack */ *zoom: 1; } .btn-group-vertical .btn { display: block; float: none; width: 100%; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn-group-vertical .btn + .btn { margin-top: -1px; margin-left: 0; } .btn-group-vertical .btn:first-child { -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; } .btn-group-vertical .btn:last-child { -webkit-border-radius: 0 0 4px 4px; -moz-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; } .btn-group-vertical .btn-large:first-child { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .btn-group-vertical .btn-large:last-child { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .alert { padding: 8px 35px 8px 14px; margin-bottom: 20px; color: #c09853; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); background-color: #fcf8e3; border: 1px solid #fbeed5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .alert h4 { margin: 0; } .alert .close { position: relative; top: -2px; right: -21px; line-height: 20px; } .alert-success { color: #468847; background-color: #dff0d8; border-color: #d6e9c6; } .alert-danger, .alert-error { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; } .alert-info { color: #3a87ad; background-color: #d9edf7; border-color: #bce8f1; } .alert-block { padding-top: 14px; padding-bottom: 14px; } .alert-block > p, .alert-block > ul { margin-bottom: 0; } .alert-block p + p { margin-top: 5px; } .nav { margin-bottom: 20px; margin-left: 0; list-style: none; } .nav > li > a { display: block; } .nav > li > a:hover { text-decoration: none; background-color: #eeeeee; } .nav > .pull-right { float: right; } .nav-header { display: block; padding: 3px 15px; font-size: 11px; font-weight: bold; line-height: 20px; color: #999999; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); text-transform: uppercase; } .nav li + .nav-header { margin-top: 9px; } .nav-list { padding-right: 15px; padding-left: 15px; margin-bottom: 0; } .nav-list > li > a, .nav-list .nav-header { margin-right: -15px; margin-left: -15px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); } .nav-list > li > a { padding: 3px 15px; } .nav-list > .active > a, .nav-list > .active > a:hover { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); background-color: #0088cc; } .nav-list [class^="icon-"] { margin-right: 2px; } .nav-list .divider { *width: 100%; height: 1px; margin: 9px 1px; *margin: -5px 0 5px; overflow: hidden; background-color: #e5e5e5; border-bottom: 1px solid #ffffff; } .nav-tabs, .nav-pills { *zoom: 1; } .nav-tabs:before, .nav-pills:before, .nav-tabs:after, .nav-pills:after { display: table; line-height: 0; content: ""; } .nav-tabs:after, .nav-pills:after { clear: both; } .nav-tabs > li, .nav-pills > li { float: left; } .nav-tabs > li > a, .nav-pills > li > a { padding-right: 12px; padding-left: 12px; margin-right: 2px; line-height: 14px; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { margin-bottom: -1px; } .nav-tabs > li > a { padding-top: 8px; padding-bottom: 8px; line-height: 20px; border: 1px solid transparent; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee #dddddd; } .nav-tabs > .active > a, .nav-tabs > .active > a:hover { color: #555555; cursor: default; background-color: #ffffff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-pills > li > a { padding-top: 8px; padding-bottom: 8px; margin-top: 2px; margin-bottom: 2px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .nav-pills > .active > a, .nav-pills > .active > a:hover { color: #ffffff; background-color: #0088cc; } .nav-stacked > li { float: none; } .nav-stacked > li > a { margin-right: 0; } .nav-tabs.nav-stacked { border-bottom: 0; } .nav-tabs.nav-stacked > li > a { border: 1px solid #ddd; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .nav-tabs.nav-stacked > li:first-child > a { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-topleft: 4px; } .nav-tabs.nav-stacked > li:last-child > a { -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; } .nav-tabs.nav-stacked > li > a:hover { z-index: 2; border-color: #ddd; } .nav-pills.nav-stacked > li > a { margin-bottom: 3px; } .nav-pills.nav-stacked > li:last-child > a { margin-bottom: 1px; } .nav-tabs .dropdown-menu { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .nav-pills .dropdown-menu { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .nav .dropdown-toggle .caret { margin-top: 6px; border-top-color: #0088cc; border-bottom-color: #0088cc; } .nav .dropdown-toggle:hover .caret { border-top-color: #005580; border-bottom-color: #005580; } /* move down carets for tabs */ .nav-tabs .dropdown-toggle .caret { margin-top: 8px; } .nav .active .dropdown-toggle .caret { border-top-color: #fff; border-bottom-color: #fff; } .nav-tabs .active .dropdown-toggle .caret { border-top-color: #555555; border-bottom-color: #555555; } .nav > .dropdown.active > a:hover { cursor: pointer; } .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > li.dropdown.open.active > a:hover { color: #ffffff; background-color: #999999; border-color: #999999; } .nav li.dropdown.open .caret, .nav li.dropdown.open.active .caret, .nav li.dropdown.open a:hover .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; opacity: 1; filter: alpha(opacity=100); } .tabs-stacked .open > a:hover { border-color: #999999; } .tabbable { *zoom: 1; } .tabbable:before, .tabbable:after { display: table; line-height: 0; content: ""; } .tabbable:after { clear: both; } .tab-content { overflow: auto; } .tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left > .nav-tabs { border-bottom: 0; } .tab-content > .tab-pane, .pill-content > .pill-pane { display: none; } .tab-content > .active, .pill-content > .active { display: block; } .tabs-below > .nav-tabs { border-top: 1px solid #ddd; } .tabs-below > .nav-tabs > li { margin-top: -1px; margin-bottom: 0; } .tabs-below > .nav-tabs > li > a { -webkit-border-radius: 0 0 4px 4px; -moz-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; } .tabs-below > .nav-tabs > li > a:hover { border-top-color: #ddd; border-bottom-color: transparent; } .tabs-below > .nav-tabs > .active > a, .tabs-below > .nav-tabs > .active > a:hover { border-color: transparent #ddd #ddd #ddd; } .tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li { float: none; } .tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a { min-width: 74px; margin-right: 0; margin-bottom: 3px; } .tabs-left > .nav-tabs { float: left; margin-right: 19px; border-right: 1px solid #ddd; } .tabs-left > .nav-tabs > li > a { margin-right: -1px; -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; } .tabs-left > .nav-tabs > li > a:hover { border-color: #eeeeee #dddddd #eeeeee #eeeeee; } .tabs-left > .nav-tabs .active > a, .tabs-left > .nav-tabs .active > a:hover { border-color: #ddd transparent #ddd #ddd; *border-right-color: #ffffff; } .tabs-right > .nav-tabs { float: right; margin-left: 19px; border-left: 1px solid #ddd; } .tabs-right > .nav-tabs > li > a { margin-left: -1px; -webkit-border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0; } .tabs-right > .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee #eeeeee #dddddd; } .tabs-right > .nav-tabs .active > a, .tabs-right > .nav-tabs .active > a:hover { border-color: #ddd #ddd #ddd transparent; *border-left-color: #ffffff; } .nav > .disabled > a { color: #999999; } .nav > .disabled > a:hover { text-decoration: none; cursor: default; background-color: transparent; } .navbar { *position: relative; *z-index: 2; margin-bottom: 20px; overflow: visible; color: #777777; } .navbar-inner { min-height: 40px; padding-right: 20px; padding-left: 20px; background-color: #fafafa; background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); background-repeat: repeat-x; border: 1px solid #d4d4d4; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); *zoom: 1; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); } .navbar-inner:before, .navbar-inner:after { display: table; line-height: 0; content: ""; } .navbar-inner:after { clear: both; } .navbar .container { width: auto; } .nav-collapse.collapse { height: auto; } .navbar .brand { display: block; float: left; padding: 10px 20px 10px; margin-left: -20px; font-size: 20px; font-weight: 200; color: #777777; text-shadow: 0 1px 0 #ffffff; } .navbar .brand:hover { text-decoration: none; } .navbar-text { margin-bottom: 0; line-height: 40px; } .navbar-link { color: #777777; } .navbar-link:hover { color: #333333; } .navbar .divider-vertical { height: 40px; margin: 0 9px; border-right: 1px solid #ffffff; border-left: 1px solid #f2f2f2; } .navbar .btn, .navbar .btn-group { margin-top: 5px; } .navbar .btn-group .btn, .navbar .input-prepend .btn, .navbar .input-append .btn { margin-top: 0; } .navbar-form { margin-bottom: 0; *zoom: 1; } .navbar-form:before, .navbar-form:after { display: table; line-height: 0; content: ""; } .navbar-form:after { clear: both; } .navbar-form input, .navbar-form select, .navbar-form .radio, .navbar-form .checkbox { margin-top: 5px; } .navbar-form input, .navbar-form select, .navbar-form .btn { display: inline-block; margin-bottom: 0; } .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { margin-top: 3px; } .navbar-form .input-append, .navbar-form .input-prepend { margin-top: 6px; white-space: nowrap; } .navbar-form .input-append input, .navbar-form .input-prepend input { margin-top: 0; } .navbar-search { position: relative; float: left; margin-top: 5px; margin-bottom: 0; } .navbar-search .search-query { padding: 4px 14px; margin-bottom: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 1; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } .navbar-static-top { position: static; width: 100%; margin-bottom: 0; } .navbar-static-top .navbar-inner { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; margin-bottom: 0; } .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner { border-width: 0 0 1px; } .navbar-fixed-bottom .navbar-inner { border-width: 1px 0 0; } .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner { padding-right: 0; padding-left: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 940px; } .navbar-fixed-top { top: 0; } .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner { -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); } .navbar-fixed-bottom { bottom: 0; } .navbar-fixed-bottom .navbar-inner { -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); } .navbar .nav { position: relative; left: 0; display: block; float: left; margin: 0 10px 0 0; } .navbar .nav.pull-right { float: right; margin-right: 0; } .navbar .nav > li { float: left; } .navbar .nav > li > a { float: none; padding: 10px 15px 10px; color: #777777; text-decoration: none; text-shadow: 0 1px 0 #ffffff; } .navbar .nav .dropdown-toggle .caret { margin-top: 8px; } .navbar .nav > li > a:focus, .navbar .nav > li > a:hover { color: #333333; text-decoration: none; background-color: transparent; } .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus { color: #555555; text-decoration: none; background-color: #e5e5e5; -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); } .navbar .btn-navbar { display: none; float: right; padding: 7px 10px; margin-right: 5px; margin-left: 5px; color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #ededed; *background-color: #e5e5e5; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5)); background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5); background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5); background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5); background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5); background-repeat: repeat-x; border-color: #e5e5e5 #e5e5e5 #bfbfbf; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); } .navbar .btn-navbar:hover, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] { color: #ffffff; background-color: #e5e5e5; *background-color: #d9d9d9; } .navbar .btn-navbar:active, .navbar .btn-navbar.active { background-color: #cccccc \9; } .navbar .btn-navbar .icon-bar { display: block; width: 18px; height: 2px; background-color: #f5f5f5; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); } .btn-navbar .icon-bar + .icon-bar { margin-top: 3px; } .navbar .nav > li > .dropdown-menu:before { position: absolute; top: -7px; left: 9px; display: inline-block; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-left: 7px solid transparent; border-bottom-color: rgba(0, 0, 0, 0.2); content: ''; } .navbar .nav > li > .dropdown-menu:after { position: absolute; top: -6px; left: 10px; display: inline-block; border-right: 6px solid transparent; border-bottom: 6px solid #ffffff; border-left: 6px solid transparent; content: ''; } .navbar-fixed-bottom .nav > li > .dropdown-menu:before { top: auto; bottom: -7px; border-top: 7px solid #ccc; border-bottom: 0; border-top-color: rgba(0, 0, 0, 0.2); } .navbar-fixed-bottom .nav > li > .dropdown-menu:after { top: auto; bottom: -6px; border-top: 6px solid #ffffff; border-bottom: 0; } .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle { color: #555555; background-color: #e5e5e5; } .navbar .nav li.dropdown > .dropdown-toggle .caret { border-top-color: #777777; border-bottom-color: #777777; } .navbar .nav li.dropdown.open > .dropdown-toggle .caret, .navbar .nav li.dropdown.active > .dropdown-toggle .caret, .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { border-top-color: #555555; border-bottom-color: #555555; } .navbar .pull-right > li > .dropdown-menu, .navbar .nav > li > .dropdown-menu.pull-right { right: 0; left: auto; } .navbar .pull-right > li > .dropdown-menu:before, .navbar .nav > li > .dropdown-menu.pull-right:before { right: 12px; left: auto; } .navbar .pull-right > li > .dropdown-menu:after, .navbar .nav > li > .dropdown-menu.pull-right:after { right: 13px; left: auto; } .navbar .pull-right > li > .dropdown-menu .dropdown-menu, .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { right: 100%; left: auto; margin-right: -1px; margin-left: 0; -webkit-border-radius: 6px 0 6px 6px; -moz-border-radius: 6px 0 6px 6px; border-radius: 6px 0 6px 6px; } .navbar-inverse { color: #999999; } .navbar-inverse .navbar-inner { background-color: #1b1b1b; background-image: -moz-linear-gradient(top, #222222, #111111); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111)); background-image: -webkit-linear-gradient(top, #222222, #111111); background-image: -o-linear-gradient(top, #222222, #111111); background-image: linear-gradient(to bottom, #222222, #111111); background-repeat: repeat-x; border-color: #252525; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); } .navbar-inverse .brand, .navbar-inverse .nav > li > a { color: #999999; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } .navbar-inverse .brand:hover, .navbar-inverse .nav > li > a:hover { color: #ffffff; } .navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover { color: #ffffff; background-color: transparent; } .navbar-inverse .nav .active > a, .navbar-inverse .nav .active > a:hover, .navbar-inverse .nav .active > a:focus { color: #ffffff; background-color: #111111; } .navbar-inverse .navbar-link { color: #999999; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .navbar-inverse .divider-vertical { border-right-color: #222222; border-left-color: #111111; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { color: #ffffff; background-color: #111111; } .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { border-top-color: #999999; border-bottom-color: #999999; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; } .navbar-inverse .navbar-search .search-query { color: #ffffff; background-color: #515151; border-color: #111111; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; } .navbar-inverse .navbar-search .search-query:-moz-placeholder { color: #cccccc; } .navbar-inverse .navbar-search .search-query:-ms-input-placeholder { color: #cccccc; } .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { color: #cccccc; } .navbar-inverse .navbar-search .search-query:focus, .navbar-inverse .navbar-search .search-query.focused { padding: 5px 15px; color: #333333; text-shadow: 0 1px 0 #ffffff; background-color: #ffffff; border: 0; outline: 0; -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); } .navbar-inverse .btn-navbar { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #0e0e0e; *background-color: #040404; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404)); background-image: -webkit-linear-gradient(top, #151515, #040404); background-image: -o-linear-gradient(top, #151515, #040404); background-image: linear-gradient(to bottom, #151515, #040404); background-image: -moz-linear-gradient(top, #151515, #040404); background-repeat: repeat-x; border-color: #040404 #040404 #000000; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar.disabled, .navbar-inverse .btn-navbar[disabled] { color: #ffffff; background-color: #040404; *background-color: #000000; } .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active { background-color: #000000 \9; } .breadcrumb { padding: 8px 15px; margin: 0 0 20px; list-style: none; background-color: #f5f5f5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .breadcrumb li { display: inline-block; *display: inline; text-shadow: 0 1px 0 #ffffff; *zoom: 1; } .breadcrumb .divider { padding: 0 5px; color: #ccc; } .breadcrumb .active { color: #999999; } .pagination { height: 40px; margin: 20px 0; } .pagination ul { display: inline-block; *display: inline; margin-bottom: 0; margin-left: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; *zoom: 1; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .pagination ul > li { display: inline; } .pagination ul > li > a, .pagination ul > li > span { float: left; padding: 0 14px; line-height: 38px; text-decoration: none; background-color: #ffffff; border: 1px solid #dddddd; border-left-width: 0; } .pagination ul > li > a:hover, .pagination ul > .active > a, .pagination ul > .active > span { background-color: #f5f5f5; } .pagination ul > .active > a, .pagination ul > .active > span { color: #999999; cursor: default; } .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover { color: #999999; cursor: default; background-color: transparent; } .pagination ul > li:first-child > a, .pagination ul > li:first-child > span { border-left-width: 1px; -webkit-border-radius: 3px 0 0 3px; -moz-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .pagination ul > li:last-child > a, .pagination ul > li:last-child > span { -webkit-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .pagination-centered { text-align: center; } .pagination-right { text-align: right; } .pager { margin: 20px 0; text-align: center; list-style: none; *zoom: 1; } .pager:before, .pager:after { display: table; line-height: 0; content: ""; } .pager:after { clear: both; } .pager li { display: inline; } .pager a, .pager span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } .pager a:hover { text-decoration: none; background-color: #f5f5f5; } .pager .next a, .pager .next span { float: right; } .pager .previous a { float: left; } .pager .disabled a, .pager .disabled a:hover, .pager .disabled span { color: #999999; cursor: default; background-color: #fff; } .modal-open .modal .dropdown-menu { z-index: 2050; } .modal-open .modal .dropdown.open { *z-index: 2050; } .modal-open .modal .popover { z-index: 2060; } .modal-open .modal .tooltip { z-index: 2080; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal { position: fixed; top: 50%; left: 50%; z-index: 1050; width: 560px; margin: -250px 0 0 -280px; overflow: auto; background-color: #ffffff; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, 0.3); *border: 1px solid #999; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; } .modal.fade { top: -25%; -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; -moz-transition: opacity 0.3s linear, top 0.3s ease-out; -o-transition: opacity 0.3s linear, top 0.3s ease-out; transition: opacity 0.3s linear, top 0.3s ease-out; } .modal.fade.in { top: 50%; } .modal-header { padding: 9px 15px; border-bottom: 1px solid #eee; } .modal-header .close { margin-top: 2px; } .modal-header h3 { margin: 0; line-height: 30px; } .modal-body { max-height: 400px; padding: 15px; overflow-y: auto; } .modal-form { margin-bottom: 0; } .modal-footer { padding: 14px 15px 15px; margin-bottom: 0; text-align: right; background-color: #f5f5f5; border-top: 1px solid #ddd; -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; *zoom: 1; -webkit-box-shadow: inset 0 1px 0 #ffffff; -moz-box-shadow: inset 0 1px 0 #ffffff; box-shadow: inset 0 1px 0 #ffffff; } .modal-footer:before, .modal-footer:after { display: table; line-height: 0; content: ""; } .modal-footer:after { clear: both; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .tooltip { position: absolute; z-index: 1030; display: block; padding: 5px; font-size: 11px; opacity: 0; filter: alpha(opacity=0); visibility: visible; } .tooltip.in { opacity: 0.8; filter: alpha(opacity=80); } .tooltip.top { margin-top: -3px; } .tooltip.right { margin-left: 3px; } .tooltip.bottom { margin-top: 3px; } .tooltip.left { margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-color: #000000; border-width: 5px 5px 0; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-right-color: #000000; border-width: 5px 5px 5px 0; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-left-color: #000000; border-width: 5px 0 5px 5px; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-bottom-color: #000000; border-width: 0 5px 5px; } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; width: 236px; padding: 1px; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .popover.top { margin-bottom: 10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-right: 10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; font-weight: normal; line-height: 18px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover-content p, .popover-content ul, .popover-content ol { margin-bottom: 0; } .popover .arrow, .popover .arrow:after { position: absolute; display: inline-block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover .arrow:after { z-index: -1; content: ""; } .popover.top .arrow { bottom: -10px; left: 50%; margin-left: -10px; border-top-color: #ffffff; border-width: 10px 10px 0; } .popover.top .arrow:after { bottom: -1px; left: -11px; border-top-color: rgba(0, 0, 0, 0.25); border-width: 11px 11px 0; } .popover.right .arrow { top: 50%; left: -10px; margin-top: -10px; border-right-color: #ffffff; border-width: 10px 10px 10px 0; } .popover.right .arrow:after { bottom: -11px; left: -1px; border-right-color: rgba(0, 0, 0, 0.25); border-width: 11px 11px 11px 0; } .popover.bottom .arrow { top: -10px; left: 50%; margin-left: -10px; border-bottom-color: #ffffff; border-width: 0 10px 10px; } .popover.bottom .arrow:after { top: -1px; left: -11px; border-bottom-color: rgba(0, 0, 0, 0.25); border-width: 0 11px 11px; } .popover.left .arrow { top: 50%; right: -10px; margin-top: -10px; border-left-color: #ffffff; border-width: 10px 0 10px 10px; } .popover.left .arrow:after { right: -1px; bottom: -11px; border-left-color: rgba(0, 0, 0, 0.25); border-width: 11px 0 11px 11px; } .thumbnails { margin-left: -20px; list-style: none; *zoom: 1; } .thumbnails:before, .thumbnails:after { display: table; line-height: 0; content: ""; } .thumbnails:after { clear: both; } .row-fluid .thumbnails { margin-left: 0; } .thumbnails > li { float: left; margin-bottom: 20px; margin-left: 20px; } .thumbnail { display: block; padding: 4px; line-height: 20px; border: 1px solid #ddd; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } a.thumbnail:hover { border-color: #0088cc; -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); } .thumbnail > img { display: block; max-width: 100%; margin-right: auto; margin-left: auto; } .thumbnail .caption { padding: 9px; color: #555555; } .label, .badge { font-size: 11.844px; font-weight: bold; line-height: 14px; color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); white-space: nowrap; vertical-align: baseline; background-color: #999999; } .label { padding: 1px 4px 2px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .badge { padding: 1px 9px 2px; -webkit-border-radius: 9px; -moz-border-radius: 9px; border-radius: 9px; } a.label:hover, a.badge:hover { color: #ffffff; text-decoration: none; cursor: pointer; } .label-important, .badge-important { background-color: #b94a48; } .label-important[href], .badge-important[href] { background-color: #953b39; } .label-warning, .badge-warning { background-color: #f89406; } .label-warning[href], .badge-warning[href] { background-color: #c67605; } .label-success, .badge-success { background-color: #468847; } .label-success[href], .badge-success[href] { background-color: #356635; } .label-info, .badge-info { background-color: #3a87ad; } .label-info[href], .badge-info[href] { background-color: #2d6987; } .label-inverse, .badge-inverse { background-color: #333333; } .label-inverse[href], .badge-inverse[href] { background-color: #1a1a1a; } .btn .label, .btn .badge { position: relative; top: -1px; } .btn-mini .label, .btn-mini .badge { top: 0; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-moz-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-ms-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 0 0; } to { background-position: 40px 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f7f7f7; background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); background-repeat: repeat-x; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress .bar { float: left; width: 0; height: 100%; font-size: 12px; color: #ffffff; text-align: center; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #0e90d2; background-image: -moz-linear-gradient(top, #149bdf, #0480be); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); background-image: -webkit-linear-gradient(top, #149bdf, #0480be); background-image: -o-linear-gradient(top, #149bdf, #0480be); background-image: linear-gradient(to bottom, #149bdf, #0480be); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: width 0.6s ease; -moz-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; } .progress .bar + .bar { -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); } .progress-striped .bar { background-color: #149bdf; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; -moz-background-size: 40px 40px; -o-background-size: 40px 40px; background-size: 40px 40px; } .progress.active .bar { -webkit-animation: progress-bar-stripes 2s linear infinite; -moz-animation: progress-bar-stripes 2s linear infinite; -ms-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-danger .bar, .progress .bar-danger { background-color: #dd514c; background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); } .progress-danger.progress-striped .bar, .progress-striped .bar-danger { background-color: #ee5f5b; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-success .bar, .progress .bar-success { background-color: #5eb95e; background-image: -moz-linear-gradient(top, #62c462, #57a957); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); background-image: -webkit-linear-gradient(top, #62c462, #57a957); background-image: -o-linear-gradient(top, #62c462, #57a957); background-image: linear-gradient(to bottom, #62c462, #57a957); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); } .progress-success.progress-striped .bar, .progress-striped .bar-success { background-color: #62c462; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-info .bar, .progress .bar-info { background-color: #4bb1cf; background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); background-image: -o-linear-gradient(top, #5bc0de, #339bb9); background-image: linear-gradient(to bottom, #5bc0de, #339bb9); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); } .progress-info.progress-striped .bar, .progress-striped .bar-info { background-color: #5bc0de; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-warning .bar, .progress .bar-warning { background-color: #faa732; background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); } .progress-warning.progress-striped .bar, .progress-striped .bar-warning { background-color: #fbb450; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .accordion { margin-bottom: 20px; } .accordion-group { margin-bottom: 2px; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .accordion-heading { border-bottom: 0; } .accordion-heading .accordion-toggle { display: block; padding: 8px 15px; } .accordion-toggle { cursor: pointer; } .accordion-inner { padding: 9px 15px; border-top: 1px solid #e5e5e5; } .carousel { position: relative; margin-bottom: 20px; line-height: 1; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel .item { position: relative; display: none; -webkit-transition: 0.6s ease-in-out left; -moz-transition: 0.6s ease-in-out left; -o-transition: 0.6s ease-in-out left; transition: 0.6s ease-in-out left; } .carousel .item > img { display: block; line-height: 1; } .carousel .active, .carousel .next, .carousel .prev { display: block; } .carousel .active { left: 0; } .carousel .next, .carousel .prev { position: absolute; top: 0; width: 100%; } .carousel .next { left: 100%; } .carousel .prev { left: -100%; } .carousel .next.left, .carousel .prev.right { left: 0; } .carousel .active.left { left: -100%; } .carousel .active.right { left: 100%; } .carousel-control { position: absolute; top: 40%; left: 15px; width: 40px; height: 40px; margin-top: -20px; font-size: 60px; font-weight: 100; line-height: 30px; color: #ffffff; text-align: center; background: #222222; border: 3px solid #ffffff; -webkit-border-radius: 23px; -moz-border-radius: 23px; border-radius: 23px; opacity: 0.5; filter: alpha(opacity=50); } .carousel-control.right { right: 15px; left: auto; } .carousel-control:hover { color: #ffffff; text-decoration: none; opacity: 0.9; filter: alpha(opacity=90); } .carousel-caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 15px; background: #333333; background: rgba(0, 0, 0, 0.75); } .carousel-caption h4, .carousel-caption p { line-height: 20px; color: #ffffff; } .carousel-caption h4 { margin: 0 0 5px; } .carousel-caption p { margin-bottom: 0; } .hero-unit { padding: 60px; margin-bottom: 30px; background-color: #eeeeee; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .hero-unit h1 { margin-bottom: 0; font-size: 60px; line-height: 1; letter-spacing: -1px; color: inherit; } .hero-unit p { font-size: 18px; font-weight: 200; line-height: 30px; color: inherit; } .pull-right { float: right; } .pull-left { float: left; } .hide { display: none; } .show { display: block; } .invisible { visibility: hidden; } .affix { position: fixed; }django-rest-framework-3.3.2/docs_theme/css/default.css000066400000000000000000000161321263353514300227770ustar00rootroot00000000000000/* Set the body padding-top when above 980px to push the content down from below the navbar, which is fixed at >980px screen widths. */ pre { font-size: 12px; } .dropdown .dropdown-menu { display: none; overflow-y: scroll; } .dropdown.open .dropdown-menu { display: block; } @media (max-width: 480px) { .repo-link { display: none; } } /* Header link to GitHub */ .repo-link { float: right; margin-right: 10px; margin-top: 9px; } body.index-page #main-content p.badges { padding-bottom: 1px; } /* GitHub 'Star' badge */ body.index-page #main-content iframe.github-star-button { float: right; margin-top: -12px; margin-right: -15px; } /* Travis CI and PyPI badge */ body.index-page #main-content img.status-badge { float: right; margin-right: 8px; margin-top: -11px; margin-bottom: 0px; } /* Github source file badges */ a.github { float: right; margin-top: -12px; margin-right: 12px; } a.github:hover { text-decoration: none; } /* */ body hr { border-top: 1px dotted #A30000; } /* Force TOC text to not overrun */ #table-of-contents { overflow: hidden; margin: 0 0 20px 0; } /* Code blocks should scroll horizontally */ pre { overflow: auto; word-wrap: normal; white-space: pre; } /* Preserve the spacing of the navbar across different screen sizes. */ .navbar-inner { /*padding: 5px 0;*/ } @media (max-width: 979px) { .navbar .brand { margin-left: 0; padding-left: 0; } .navbar-inner .container-fluid { padding-left: 15px; } } .nav-list li.main { font-weight: bold; } .nav-list a { overflow: hidden; } .nav-list > li > a { padding: 2px 15px 3px; } /* Set the table of contents to static so it flows back into the content when viewed on tablets and smaller. */ @media (max-width: 767px) { #table-of-contents { position: static; } } /* When the page is in two-column layout, give the main content some room to breath on the left. */ @media (min-width: 768px) { #main-content { padding-left: 1em; } } /* Cutesy quote styling */ blockquote { font-family: Georgia, serif; font-size: 18px; font-style: italic; margin: 0.25em 0; padding: 0.25em 40px; line-height: 1.45; position: relative; color: #383838; border-left: none; } blockquote:before { display: block; content: "\201C"; font-size: 80px; position: absolute; left: -10px; top: -20px; color: #7a7a7a; } blockquote p:last-child { color: #999999; font-size: 14px; display: block; margin-top: 5px; } /*=== dabapps bootstrap styles ====*/ html{ width:100%; background: none; } body, .navbar .navbar-inner .container-fluid{ max-width: 1150px; margin: 0 auto; } body{ background: url("../img/grid.png") repeat-x; background-attachment: fixed; } #main-content h1:first-of-type { margin-top: 0 } #main-content h1, #main-content h2 { font-weight: 300; margin-top: 20px } #main-content h3, #main-content h4, #main-content h5 { font-weight: 300; margin-top: 15px } #main-content img { display: block; margin: 40px auto; } /* custom navigation styles */ .navbar .navbar-inner{ background: #2C2C2C; color: white; border: none; border-top: 5px solid #A30000; } .navbar .navbar-inner .nav li, .navbar .navbar-inner .nav li a, .navbar .navbar-inner .brand{ color: white; } .nav-list > .active > a, .navbar .navbar-inner .nav li a:hover { background:#212121; color:white; } .navbar .navbar-inner .dropdown-menu li a, .navbar .navbar-inner .dropdown-menu li{ color: #A30000; } .dropdown-menu .active > a, .dropdown-menu .active > a:hover { background-image: none; } .navbar-inverse .nav .dropdown .active > a, .navbar-inverse .nav .dropdown .active > a:hover, .navbar-inverse .nav .dropdown .active > a:focus { background-color: #eeeeee; } .navbar .navbar-inner .dropdown-menu li a:hover{ background: #eeeeee; color: #c20000; } /* custom general page styles */ .hero-unit h2, .hero-unit h1{ color: #A30000; } body a{ color: #A30000; } body a:hover{ color: #c20000; } /* subnavigation styles */ @media (min-width: 767px) { .sidebar-nav-fixed { position:fixed; width:19%; max-width: 240px; } .navbar { position: fixed; } .navbar .navbar-inner .container-fluid{ max-width: 1110px; } } h1 code, h2 code, h3 code, h4 code, h5 code { color: #333; } /* sticky footer and footer */ html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -60px; } .body-content{ padding-top: 70px; padding-bottom: 70px; } @media (max-width: 979px) { .navbar-fixed-top .navbar-inner { padding: 0px; } } @media (max-width: 767px) { .body-content{ padding-top: 0px; } } @media (min-width: 768px) { footer.span12 { width: 95%; } } footer, .push { height: 60px; /* .push must be the same height as .footer */ } footer p { text-align: center; color: gray; border-top: 1px solid #DDD; padding-top: 10px; } footer a { color: gray; font-weight: bold; } footer a:hover { color: gray; } .btn-inverse { background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#606060), to(#404040)) !important; background-image: -webkit-linear-gradient(top, #606060, #404040) !important; } .modal-open .modal,.btn:focus{outline:none;} @media (max-width: 650px) { .repo-link.btn-inverse {display: none;} } td, th { padding: 0.25em; background-color: #f7f7f9; border-color: #e1e1e8; } table { border-color: white; margin-bottom: 0.6em; } .side-nav { overflow-y: scroll; } ul.sponsor.diamond li a { float: left; width: 600px; height: 20px; text-align: center; margin: 10px 70px; padding: 300px 0 0 0; background-position: 0 50%; background-size: 600px auto; background-repeat: no-repeat; font-size: 200%; } @media (max-width: 1000px) { ul.sponsor.diamond li a { float: left; width: 300px; height: 20px; text-align: center; margin: 10px 40px; padding: 300px 0 0 0; background-position: 0 50%; background-size: 280px auto; background-repeat: no-repeat; font-size: 150%; } } ul.sponsor.platinum li a { float: left; width: 300px; height: 20px; text-align: center; margin: 10px 40px; padding: 300px 0 0 0; background-position: 0 50%; background-size: 280px auto; background-repeat: no-repeat; font-size: 150%; } ul.sponsor.gold li a { float: left; width: 130px; height: 20px; text-align: center; margin: 10px 30px; padding: 150px 0 0 0; background-position: 0 50%; background-size: 130px auto; background-repeat: no-repeat; font-size: 120%; } ul.sponsor.silver li a { float: left; width: 130px; height: 20px; text-align: center; margin: 10px 30px; padding: 150px 0 0 0; background-position: 0 50%; background-size: 130px auto; background-repeat: no-repeat; font-size: 120%; } ul.sponsor { list-style: none; display: block; } #mkdocs_search_modal article p{ word-wrap: break-word; } .toclink { color: #333; } django-rest-framework-3.3.2/docs_theme/css/prettify.css000066400000000000000000000014611263353514300232200ustar00rootroot00000000000000.com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #f7f7f9; border: 1px solid #e1e1e8; } .prettyprint.linenums { -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; } /* Specify class=linenums on a pre to get line numbering */ ol.linenums { margin: 0 0 0 33px; /* IE indents via margin-left */ } ol.linenums li { padding-left: 12px; color: #bebec5; line-height: 20px; text-shadow: 0 1px 0 #fff; }django-rest-framework-3.3.2/docs_theme/img/000077500000000000000000000000001263353514300206225ustar00rootroot00000000000000django-rest-framework-3.3.2/docs_theme/img/favicon.ico000066400000000000000000000042761263353514300227540ustar00rootroot00000000000000 ( @??django-rest-framework-3.3.2/docs_theme/img/glyphicons-halflings-white.png000066400000000000000000000211111263353514300265660ustar00rootroot00000000000000PNG  IHDRӳ{PLTEmmmⰰᒒttt󻻻bbbeeeggg𶶶xxx󛛛Ƽ몪֢UUU鿿rOtRNS#_ /oS?C kDOS_6>4!~a @1_'onҋM3BQjp&%!l"Xqr; A[<`am}43/0IPCM!6(*gK&YQGDP,`{VP-x)h7e1]W$1bzSܕcO]U;Zi'y"؆K 64Y*.v@c.};tN%DI !ZЏ5LH26 ɯ" -bE,,)ʏ B>mn6pmRO wm@V#?'CȑZ#qb|$:)/E%nRqChn%i̓}lm ?idd",`H"r.z~(bQU&)5X#EMR<*p[[%.Ọk7lIoJF lV!̡ăuH`&,zRk$|$lXbjߪdU?Σ$HW$U'HE3*խU\}( zhVk}guRk$%|T|ck獳"D_W+.Q)@ƽHbslTDR2Xm#a 3lYzj㒚#! 4J8(cvt]aT D ΅Q?^-_^$:\V $N|=(vZ'q6Z׆B5V!y3K㱿bv4xR]al!IoP@tVyL٪mlڿIUb|[*lke'*WddDӝ}\W_WߝrN?vޫ۲X%0uoui*JVƦb%}i5IYlNE-wςf_W3mI-mQ)S kTC7m<"܌bT|'$ҘR&>O p6tSN\ׯLm\r@3uT b7t.5.q3r0=8TiJ\6uF R32^'ŪxI F8O{%8kJMSȴdBEdWCYO:/ON/I_=xFE! =i:o~ y?''[͓[͓[͓[͓[ͭ.U>$PƦc%]\c:| ,eSZ,oXrX!R@Zv 0>?* <|N60;{ad2v+D^t[q!۞V}fۨϏYeॗ)Vyl|" fUq@Ǽ4Y-Y-!6aB:o%JIUQ|UKO`=\ :0x Pau@!KPdxhw1>$j΍vZdxSUA&[URd7øzk/rU^w:I.VǮc>q.!zSr&2)Wg R -iQ 8Pa\ОU%iݡU_=p Lu(N?0?Æ:]άtB%U|NsorNf ,P !v" Y6hL_@@bscqgv4||0lϟ$S9bʱj#~?o}}7sAPm:IV=n !{{hEࢪ8suoLT$;VscqD3 ༂3.DBB4&V' T `D6Ϸqyj8V*X%@s\jrN$|=5Ά 'mUiKi%CI:ssaƅ`*`=l)>u՘MeuSI_OL_}o&jzp{lu:O)s%Q@$<]f xO%PCbhr2PKpf5Në3^o]eJiB464^tuٲU֌:G4'22YpuG'/Py4?.SBP_>I 1t3ΓBɭɭɭɭVVVVVs]!67(g y@ 4>Q VF}^Xׇڼje26 L%YGh lC})< !EEPZWZV+@†R 5{@ouɐ4&H6ey V݀VťcqZޒrJyByFzFN$Hb*+jՏqэ ګkݿUXle1d0d^-B%} {Y%r*j5Ak5u",:~ҸY~ hSA~6 fulՇf{ȵQtATHZkƭ/_Sn u']b]|m`BāJ,O$du]Zs FL:aǙT4o~by?wpj滥A(x]†f~an֧/^dڲcՇ,!1i&xi_VK@ip̓9Vi%a; L?0J*Ū5U'x^6V[^ {eU|:0=0d۫o*Jq%[YN.sQLud[29I:WnmXlڃ6!lNlVէKUjV\J%UߊBLcKfb>a=b~R]aG%[js@/9MطݘU>yɲX@} Ftg^vO\Ӹwvpz3K5i!$P>ā'VƛL2r@UMKZ6tw맟¦bm1h||]}~0MjA(JJP68C&yr׉e}j_cJ?I0k>šW |Bޝ."TEXd 8!cw*E(J)![W"j_ТeX_XB;oO0~?:PC (.[!Wq%*leY)E<^KZT60.#A\5;Rmtkd/8)5~^0 #Ckgey)ͶԺ6ĥ<(?&uAVm0^h.txR*a':,H|ō l5z;8+e#b'#|}2w(|KcJ l6 w^Տoi3H R ̔9,YgPְ:N [5SR![)]i}`mN4Хv`|;f(FltL8÷Z#AO%Y)NU5YedJE3dZذݣHT1 ;8MjnʏӤqp 1h^<<>yt{?|'j)}YUU{@V/J1F+7䀉[OWO[ yUY!?BD%DWj>-Ai6xz)U R7 d@g\so)a4zf[W+> P> |qLG8vȣlj2Zt+VA6gT *ʆUz(m)CD `He/.:zN9pgo &NC׃އ>Wհ_Hj)Xe6F7pm-`'c.AZ=^e8F;{Rtn(z!S7o Iew3]bܗ85|iϠRJkʱZRO+8U&:]ZieR(JMޗ7Z@5a^\GzsρU*rMezT^:ɬͦX=>$ bi>U&XQoybbGk8 Ҙn).Սo ^MmdZi$soo*{4eLbLٳ""mx:`:mk[geTެ)'0*TB{!I ''''[͓[͓[͓[͓[]Zj Q.e '/yvQ71(Z&X?(_Z){tڀmZWϏ)-C jqn,̋"IvUL!h꛿skAcrN佚фVE40yX~4zʸV㳰%,)fqtpu~  *^0:ܲ33JO(ZB?K^ v]unlWi0p6[착C_5X#[wX3b廫R{NKAe Se|wxso>P\儔ԕ6;nVmfI$V͓J-J%֌0UwYЎSnum藮xz˗VƫIvnW_qLZ"_Xz 8]Ap?C543zw({7e*Ȳ`۰!AQ:KUnz]1yVGaCm0PY ٚUx6TT&hV9V ӬzÑ 1[XzZ9erqJND/gX*9oN6D` {I%Mz9—TQ7f\"j_3~xB'ܷY]*KЌ%"5"qxq~ƕ=jS>jV&~]2xzF1X_yD<#NRB}K/iy !V^˿eJ}/FkA7 S+.(ecJ:zWZ몖wQ~ä́p6,e5,+,tv%O^OO}ן -O7>ekC6wa_C |9*WA)UJg8=:mjUvqysܒLglC6+[FSWg9wV31A ND<$5e(s[ ۨbaF.]KIENDB`django-rest-framework-3.3.2/docs_theme/img/glyphicons-halflings.png000066400000000000000000000307771263353514300254720ustar00rootroot00000000000000PNG  IHDRtEXtSoftwareAdobe ImageReadyqe<1IDATx}ml\EW^ɺD$|nw';vю8m0kQSnSV;1KGsԩ>UoTU1cƖYuּca&#C,pؚ>kں ULW -sn3Vq~NocI~L{- H8%_M£wB6EW,ĢpY2+(Y@&A/3kXhߍ-aA<>P'\J;(}#Qz:4%m?nfntK*l9J+DIYu1YZ^(]YYEf@ОlXz]Ut u &5-PW}@t|#LY=s܂,w#+R+?Ƌax X0"ea)tG*ԡwVwV^rf%xB(qּ4>WG#lWU<ЁXJVѶlR$kDVrI7:X%X1NEzw;y9z9O%~~uɗ*=Ixcy}Y(ou ±N$^j e\iX񝜬];Y-rѲ&>!zlYaVHVN԰9=]=mRMdOUC JUiT}rWW'ڹu)ʢF"YU#P׾&ܑЅROwyzm$Os? +^FTIEq%&~ >M}]ԖwA? [Nteexn(措BdMTpʥnqqS?bWXmW6x*{V_!VjΧsVL^j XkQjU6sk̩n~[qǸ-` O:G7l"ksRe2vQ=QƼJUX`gQy~ ďKȰE]#P:td\T/u;س:Jc-%'e q ?j"/yh48Zi1|JUu>_N;hxwNU JQU7\j̮bT:B?6oJ1Ί%I UY-Ii4{=rǤ7@)HKJ+f4X8Cd?'j1 N< 39EWo VTGzg# %D0#ܠ3[tiآ( U,]125|Ṋfw7w u+Š]Db]K xbW ՛7|ВX㕛{UcGXk¬|(h)IUa)lp 3luPU]D)/7~4Wt5J}V X0z VM;>Gԙ^|gF:jaZ^)74C#jwr,еSlGu;1vm><)}ZQՖ&mZ:1UMB~ a:/᜗:KWWOҠ&Y2f7cƌ3f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘g*3fF5LbN2#Tf=C`!ZGUe꣇e2V<1mkS4iϗ*.{N8Xaj~ڀnAx,%fE:|YDVj ¢lg6(:k~MM5?4 ]WO>诋WZiG|QGJeK[YcյpmjE\f/ǎ8&OQ3 .3tt2'-V8pXSrY#J!Q ",ub@FK:u^iy[]<.Cw+W\)b kr-.MtڀMqʄ۰#$^X$"V`T4m~w%Pp1|+&UxY8*r8:k7QЃҀT$Ўƙ S>~Sjs:5q.w&_Z.X=:ވbw` _kd{'0:ds#qi!224nq\9-KUTsSUuVo@;Uz>^=Np>oPO @I@'Gj5o*U>^*ew>ͫʧ᫠Q5 ̈́<$#5Jٻj6e)_ d]2B:^(*:8JYS鬆Kݗ ]U4_rj{5ׇaǑ/yV?GtGb@xPU7O3|鍪 IQ5QGw *(;wf0*PUU<YƔvbt5{2!,}Ҧ:)j2OkΪ' ֊0I.q\(%ojQĖՇa<ԍexAgt'[d;׸`rcdjPFU$UeJI6T&Z}z(z vfuz {}ۿߝݞlxUZ謊.Y岟b%nw@ǩS9|źs%>_o#9\EU~/ځt(r[QZuOo;!MrU]0TcpDő?.cPuF;L_Sb}R/J_+h2$ai UǩS9>Є}76rzu~国4oĨ 1J ^̘~iC޸55G׹]gwsn zTuO=?/zƲc>Οb#7ֻcgkޛTUj*-T=]uu}>ݨNЭ [ ]:%/_ Sz]6D.mD7Uƌ3f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘1c>J4hPP+A;'G_XKmL5I.},wFFum$S-E-;Õ C3I-`BRx1ғTJݕ;hΊ8 DYJo;Yš5MKɰM;%Pd9KhnD[zgVh,'C p!^M(WK2X>UQ%^p8 ˽^#Ζ؄+.@gCz%ɔ-Pr KX n>=ՔѨeSvRLz5%9UQS \WիK'hp)ô Jrh M0F (f_R5///G+x 1"eS 5 :Tf=+7Qɧ\TEs༬rYs8&k#pSՊ5MTbD܊[Ng5Q\s5PB@[8ɨV1&4Wsy[Ǿ wU2V77jމd^~YfC_h;a.&M i UWpzs`>/"'OI۲y:BzdTq£=йb:"m/-/PWDQǴ͐57m`H%AV!Hԛ׿@"Qzދ|ߒT-*OU^Ҧ6!Cwk|h&Hd5LEYy'ƣ7%*{=)Z%ٝP *G]/8Lw$?8M)\į/#7Ufd7'6\h1 vIfEIr=1w\WKVZHKgZ͡$mx % `j}TuTQJZ*H>*QxkLFTyU-)ôbiA|q`F'+ 4^Qy xH)#t^?@]^`ARSqjgB:rK۷l<2-4YKhgQLxVwP~M Φ0l 3ƅaŊITȀhwJmxIMչ|U7xˆS~2ߕ?kW1kC3];YnSґAeXYz8,'x< k7Kx]$x$vgT#w;o@ z_Vmn|HֵhZg-^TAn- )@4[*9xKƋj>!,Vt:eqn8%ohS(2\Q^aigF3vTUDVlQꅧWc%Ueq4ҝº/U $_Q!>t| ,țG<tC[xTXmf|Q%d#jUՆ|; H[bά#,Ws7NT1~m&ǻ{' \㟾 bBKJo8%!$Qj:/RX)$Sy޳ 䍧RDUg_D軦J\jN֖SU;~?Ohssdƣ}6(T <_4b5 ^N N%8QejF7toMyө`)g[/|?өJuGL坕/=CTܠhdifHcǞG4,`D՞{'xG_p/5@m +$jVH3a"*ũ,,HJҵȸT^Qyo&IÉJUVwWLeM~3tA6rwɤ6տ \0HL%LX5c@HHÃZ|NV+7WM{cig*ȸU7iÉбzd * ?gtX8̝OX:]2ɍ]p^++>AVڛE{ DB.&/56ArxY#ܕy)cKQtȪ~! ;C}ʃtf{6$NVsj wupZ)zŁ|-wg+nMVj/d+U~ͯi:_ix whqr>駃-x뼬)ݷyR=! ì:J/lIkV@n74758Z KJ(Uxz1w)^\ԣzȪ󲦨c2f؍v+6f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘2N oC\F1ִ UZJV̚\4Mgq1z{&YT ,HX~D u\g}x>+YdN̮ol ZX+F[/j+S~2/jV8Jr^ԉ]J}J*ۏ<2԰&JݣjOM@ѯ#0O[SXB^ uze\]dd./xXE f'vO_H${%;kt7ށmő|d{aފ^ǛڎE5ʋBr]W=_SAf(0 oU5q ,_\luz˪uz㻲o=Yi~| 0+=VJت /ލzM\zCL[U:|k*^8"\Wٚ\ .XTjX5 SkFu\1 q'mģ/QUؕ*AɽDNZ׮?_[# ˍ4:^j|5LG ||øBW{6[uQF.1$qF9IHg)\5>C#uXZ$#*<ߐsRv1Tj>Jm>*#( [Fhsש5*jQʼ&&&P犛L[Q1* ;X}Iΰ[Q?qQZ Hݙ֞VEsBCZ9JTK tup˷ /O,.kUdsOHMg4=-)+ؿh2Nw/r|WQn=GIU;'j,vfdzpe$V GTYsBZO1pj:r"nTUSCgr veAۘ˜FC+Ֆ#[JTe'v9-3 Dmӻuuz?0 o hxuY &_54=f07kלU0]D:jdw/+PGUVS<\2uatc^zYRąmC+7#,|:iNw*|^sm|X>Ъ^1\#͹ &%{,2U>ݎ.c05z# ogNO+Q쓭 ,˗-%K\[S_`y+b_94"U+Ύap}I[M,B.NtwHj漬E L߀ 0DX(kڵ NoU{gquz RwkէRx'uZ[3'zyyד%sƕ3jYF\s=m1&VAɼ?k\+]6yモ1gtOIW7al|1 >$]e 7؝WIe?ަL#>| ҭ] pM5MUdI61ԠeǼYGhOn3խR:^k_'Yuuq#p# J2xl>OjcY馃!ڡ+sZ/ D}2AY mpc#<'xSKx`*W[,e|6BH)㶤kjpDU(2qzx9*tqa/, Z[ 0>Ө֜xN)fă@qըFU՝w(a;ˋ>|Tc|w2eiT]*!_\WG{ ]^݅Z5t|6oYHaO@= my^akE.uz]#٥hWv(:,6A߉JFa\ wWex>vetuMYA>).,;ɦCbwjE)W Fӫ@s4e6^Q9oI}4x<.B?B߫#$Hx.x9,a!RTpgd5xBe.L7@* AsduttSVUaRU|I xG߃$T񭟬#_IFMŒ_X@foQIDII?|%$r {ENĸwޕqq?Dؽ}}o/`ӣCTi /ywO rD 9YUD] Ή@s]+'UaL} hrU'7:sU|k)H@hNq#ϵ8y˭Xű#w 1!흉R'7fuד0p!WÖW+Nmp\-ioD$g٠˅%%ÐmV]̱rw*Z}y+L Nouj}xt)lStuqxmNyKUOnDbhf}k>6ufT%{ <񐮸mjFcmUïc;w8@dGFUA& =nq5]iP}z:k⼶-ʓ Κl*'UzaxWFdZzTNRs+# wzgi:MBqtM l#^'Gߣ*^t{=rERnQ$adJl02%Tڊ^<~g?Of*U^?:N+o[PUs|QR']V-L)H K䐞 mYn\4}YVD hR;g-'3aסM Dh}1cƌ3f̘1cƌ3f̘1cƌ3f̘1cƌ3f̘1cƌk*Ț4`L$b U4\dt'>HȄ|.+Y+/Gy2OCWv3v,'kia W O6߯E=Hv $LlxI躍/}^]x\3 ɮ5 QT&G9Ay^i}O[5ޱwq4,s JJI.myE^%'VB~dׯ}*j* ~uTk\fKЬ*Y]_v'I˨鑩6Xo'j&uɧngT]oڌ9\*wVHӖ| >:5EF'J ɝ`!A e~_;5ױϊ镋m_&OVi<}"靍hW9X6KPƣ G"ƭ?/O^hCHLciPj)}QQզ#tMg9 xGw~d;_J+RỲ<;e 5/Qs/5N[!a+NPb+ѺI}-t_qU=MKʞY5no*vvbʊ{]| ~ Z{-끇^FVviϵ3Ya=6ndS;-ʹ^;uꪪ^ |=_w+"i&4l#wir|W3U$"J~O@]~tRJVMHw:̦@?>O?vdrtS*$&~1>Z}^nL(]f*&*QaIꝄ|3*O?r?*4Gyz[k/tkQϖWCCKk/x5|S*`ϹγQEwy o KYqTb$-/PtsZNKQ*>ݢU@Џ"JQ;¹& Lx;+T /+O赟> (T?ķD^N*'p$IW֐W~ =J|_UTe7ְP`;CYjk=sU[mߙ-;};2|wo1p0~>0m @Jrǟcٷ4͜?q\UUIV?2L/+Шꄾ< ܇^T ?tj\JrҀB*=km X,n}aՒIadp׷ll{\6v8RꅟҲf1F|Տ;e=\D ,D:ψrxQT◎*|{nS 9~=}ӕG~%j:Dj<ឫ:jO% $T8!jvm|'OЗ¹➱z\vsIv`Ȕʨj-^$-^G Q{m`T#c֞㸝|n.ߪN$O JUVʼt,jg-mסּNV z:(Ι*|1Ux=Yk*t MNNDUhK ؞X(刄Rv!#B_cxRŹoE5Dg>?fXQQ˔|@"աMveC>mO$H#]Y I=)_`k* :a>!X!W^wҒl'<;vwgIt_?Jh`#E:fdx=6Wu<Ӌd2di˂c#h¬c4?<HFYoVpN;ݷJ\ >` (t3{>⦊;;qFx4YcS$w.da*k|Q,+xs^K߫P^nO֮L5mIwl?-.ʲJ8 F B.-:2Ȕ!/A#b_m%I($|PZ[1G{^#o>3mw?'cx[^:Wk/`'=~֥W(gQbfv7UzM3+؍K:4|GCtA+Kʨ{@Ɩ [05E|yn4MIENDB`django-rest-framework-3.3.2/docs_theme/img/grid.png000066400000000000000000000026621263353514300222630ustar00rootroot00000000000000PNG  IHDRZ2zxǁ pHYs  niTXtXML:com.adobe.xmp ? AIDATxrU@?6@cR‰5<]f,M[13?Ûvffۣޜ/{zt/#tD#BG:"tD#BG9Ɔ%aqtD:"tD#BG:"tD# oaAm4v:"tD#BG:"tD#BG%=,GGD#BG:"tD#BG:ba8:"BG:"tD#BG:"tD K4:"tD#BG:"tD#BGذDlX9#BG:"tD#BG:"t'G|}4:"tD#BG:"tD#BGxK{X9#BG:"tD#BG:"tĆ%bqtD:"tD#BG:"tD#6,h#"tD#BG:"tD#BGaذDs|tls4ȕCo[]A':劎:"tD#BG:rO/x ޞmX~}xq|Xk=GGd %#BG1Y?!cK: #BG{9fǙ8ۆMwk?yގg{#B߷M~0⊎1W#B{rymX^?8Yk}2y#E\ё+;u[:ˎ/I#G6{:ṙym}ur۰xZki|tlݷ)|EoE#BGݻdї:"tDБc>wcS簜8Z\`γ_KgW [l:"tD#BG Θ#'IENDB`django-rest-framework-3.3.2/docs_theme/js/000077500000000000000000000000001263353514300204625ustar00rootroot00000000000000django-rest-framework-3.3.2/docs_theme/js/bootstrap-2.1.1-min.js000077500000000000000000000621301263353514300242600ustar00rootroot00000000000000/** * Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;a("body").addClass("modal-open"),this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1).focus(),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.trigger("shown")}):b.$element.trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,a("body").removeClass("modal-open"),this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('